diff --git a/.gitea/workflows/snapshot_admin_deploy.yml b/.gitea/workflows/snapshot_admin_deploy.yml index 9c8af23..0c99139 100644 --- a/.gitea/workflows/snapshot_admin_deploy.yml +++ b/.gitea/workflows/snapshot_admin_deploy.yml @@ -1,6 +1,9 @@ name: Snapshot Admin Deployment on: + push: + branches: + - main workflow_dispatch: concurrency: @@ -8,85 +11,47 @@ concurrency: cancel-in-progress: true jobs: - deploy-snapshot-admin: - runs-on: [self-hosted, snapshot-admin-host] - timeout-minutes: 20 + build-and-deploy: + runs-on: ubuntu-latest + timeout-minutes: 15 steps: - name: Checkout Code run: | echo "[deploy] checkout main for snapshot admin runtime" if [ -d .git ]; then - git remote set-url origin http://x-access-token:${{ secrets.GITHUB_TOKEN }}@192.168.123.100:8418/KimJaeHyun/myfinance.git + git remote set-url origin http://x-access-token:${{ secrets.GITHUB_TOKEN }}@178.104.200.7/kjh2064/QuantEngineByItz.git else git init - git remote add origin http://x-access-token:${{ secrets.GITHUB_TOKEN }}@192.168.123.100:8418/KimJaeHyun/myfinance.git + git remote add origin http://x-access-token:${{ secrets.GITHUB_TOKEN }}@178.104.200.7/kjh2064/QuantEngineByItz.git fi git fetch origin main --depth=1 git reset --hard FETCH_HEAD - - name: Setup Python Environment + - name: Publish Blazor Web App run: | - echo "[deploy] prepare python venv for snapshot admin launcher" - VENV_BASE=/volume1/gitea/python_venv - REQ_HASH=$(md5sum tools/validate_snapshot_admin_workflow_v1.py 2>/dev/null | cut -d' ' -f1 || echo "snapshot-admin-default") - VENV="$VENV_BASE/$REQ_HASH" - if [ ! -f "$VENV/bin/python" ]; then - mkdir -p "$VENV_BASE" - /usr/bin/python3 -m venv "$VENV" - "$VENV/bin/pip" install --upgrade pip --quiet - fi - "$VENV/bin/pip" install pyyaml --quiet - echo "$VENV/bin" >> $GITHUB_PATH + echo "[deploy] publishing .NET 10 Blazor app" + dotnet publish src/dotnet/QuantEngine.Web/QuantEngine.Web.csproj -c Release -o ./publish - - name: Deploy Snapshot Admin Runtime - env: - SNAPSHOT_ADMIN_AUTH_USER: ${{ vars.SNAPSHOT_ADMIN_AUTH_USER }} - SNAPSHOT_ADMIN_AUTH_PASSWORD: ${{ secrets.SNAPSHOT_ADMIN_AUTH_PASSWORD }} + - name: Compress Artifact run: | - echo "[deploy] restart loopback service on 127.0.0.1:8787" - export ROOT_DIR="$PWD" - export SNAPSHOT_ADMIN_HOST=127.0.0.1 - export SNAPSHOT_ADMIN_PORT=8787 - export SNAPSHOT_ADMIN_PID_FILE="$PWD/Temp/snapshot_admin.pid" - export SNAPSHOT_ADMIN_LOG_FILE="$PWD/Temp/snapshot_admin.log" - export SNAPSHOT_ADMIN_STATE_URL="http://127.0.0.1:8787/api/state" - export SNAPSHOT_ADMIN_PUBLIC_STATE_URL="https://admin.example.com/api/state" - export SNAPSHOT_ADMIN_AUTH_USER="${SNAPSHOT_ADMIN_AUTH_USER:-}" - export SNAPSHOT_ADMIN_AUTH_PASSWORD="${SNAPSHOT_ADMIN_AUTH_PASSWORD:-}" - bash tools/run_snapshot_admin_synology.sh restart + echo "[deploy] compressing publish output" + tar -czf quantengine.tar.gz -C ./publish . - - name: Verify Snapshot Admin Runtime + - name: Deploy to Host via Local SSH env: - SNAPSHOT_ADMIN_AUTH_USER: ${{ vars.SNAPSHOT_ADMIN_AUTH_USER }} - SNAPSHOT_ADMIN_AUTH_PASSWORD: ${{ secrets.SNAPSHOT_ADMIN_AUTH_PASSWORD }} + SSH_PRIVATE_KEY: ${{ secrets.SSH_PRIVATE_KEY }} run: | - echo "[deploy] verify local health and auth gate" - export ROOT_DIR="$PWD" - export SNAPSHOT_ADMIN_HOST=127.0.0.1 - export SNAPSHOT_ADMIN_PORT=8787 - export SNAPSHOT_ADMIN_PID_FILE="$PWD/Temp/snapshot_admin.pid" - export SNAPSHOT_ADMIN_LOG_FILE="$PWD/Temp/snapshot_admin.log" - export SNAPSHOT_ADMIN_STATE_URL="http://127.0.0.1:8787/api/state" - export SNAPSHOT_ADMIN_AUTH_USER="${SNAPSHOT_ADMIN_AUTH_USER:-}" - export SNAPSHOT_ADMIN_AUTH_PASSWORD="${SNAPSHOT_ADMIN_AUTH_PASSWORD:-}" - echo "[deploy] wait for service readiness" - ready=0 - for attempt in $(seq 1 30); do - if bash tools/run_snapshot_admin_synology.sh healthcheck; then - ready=1 - break - fi - echo "[deploy] healthcheck retry $attempt/30" - sleep 2 - done - if [ "$ready" -ne 1 ]; then - echo "[deploy] snapshot admin did not become ready in time" - tail -n 60 "$SNAPSHOT_ADMIN_LOG_FILE" || true - exit 1 - fi - if [ -n "$SNAPSHOT_ADMIN_AUTH_USER" ] && [ -n "$SNAPSHOT_ADMIN_AUTH_PASSWORD" ]; then - curl -fsS -u "${SNAPSHOT_ADMIN_AUTH_USER}:${SNAPSHOT_ADMIN_AUTH_PASSWORD}" http://127.0.0.1:8787/api/state | python3 -c "import json,sys; print(json.load(sys.stdin)['version']['app'])" - else - curl -fsS http://127.0.0.1:8787/api/state | python3 -c "import json,sys; print(json.load(sys.stdin)['version']['app'])" - fi - echo "[deploy] snapshot admin deploy verification complete" + echo "[deploy] setting up SSH and deploying shadow copy" + mkdir -p ~/.ssh + echo "$SSH_PRIVATE_KEY" > ~/.ssh/id_rsa + chmod 600 ~/.ssh/id_rsa + ssh-keyscan -H 178.104.200.7 >> ~/.ssh/known_hosts + + # Upload artifact and deploy script to host + ssh kjh2064@178.104.200.7 "mkdir -p /home/kjh2064/tmp" + scp quantengine.tar.gz kjh2064@178.104.200.7:/home/kjh2064/tmp/quantengine.tar.gz + + # Execute hot deploy script + ssh kjh2064@178.104.200.7 "chmod +x /home/kjh2064/tmp/deploy.sh 2>/dev/null || true" + scp tools/deploy_quantengine.sh kjh2064@178.104.200.7:/home/kjh2064/tmp/deploy.sh + ssh kjh2064@178.104.200.7 "chmod +x /home/kjh2064/tmp/deploy.sh && /home/kjh2064/tmp/deploy.sh" diff --git a/src/dotnet/QuantEngine.Application/Class1.cs b/src/dotnet/QuantEngine.Application/Class1.cs new file mode 100644 index 0000000..bfbd238 --- /dev/null +++ b/src/dotnet/QuantEngine.Application/Class1.cs @@ -0,0 +1,6 @@ +namespace QuantEngine.Application; + +public class Class1 +{ + +} diff --git a/src/dotnet/QuantEngine.Application/QuantEngine.Application.csproj b/src/dotnet/QuantEngine.Application/QuantEngine.Application.csproj new file mode 100644 index 0000000..9e71f43 --- /dev/null +++ b/src/dotnet/QuantEngine.Application/QuantEngine.Application.csproj @@ -0,0 +1,13 @@ + + + + + + + + net10.0 + enable + enable + + + diff --git a/src/dotnet/QuantEngine.Application/bin/Debug/net10.0/QuantEngine.Application.deps.json b/src/dotnet/QuantEngine.Application/bin/Debug/net10.0/QuantEngine.Application.deps.json new file mode 100644 index 0000000..edfc02a --- /dev/null +++ b/src/dotnet/QuantEngine.Application/bin/Debug/net10.0/QuantEngine.Application.deps.json @@ -0,0 +1,39 @@ +{ + "runtimeTarget": { + "name": ".NETCoreApp,Version=v10.0", + "signature": "" + }, + "compilationOptions": {}, + "targets": { + ".NETCoreApp,Version=v10.0": { + "QuantEngine.Application/1.0.0": { + "dependencies": { + "QuantEngine.Core": "1.0.0" + }, + "runtime": { + "QuantEngine.Application.dll": {} + } + }, + "QuantEngine.Core/1.0.0": { + "runtime": { + "QuantEngine.Core.dll": { + "assemblyVersion": "1.0.0.0", + "fileVersion": "1.0.0.0" + } + } + } + } + }, + "libraries": { + "QuantEngine.Application/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + }, + "QuantEngine.Core/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + } + } +} \ No newline at end of file diff --git a/src/dotnet/QuantEngine.Application/bin/Debug/net10.0/QuantEngine.Application.dll b/src/dotnet/QuantEngine.Application/bin/Debug/net10.0/QuantEngine.Application.dll new file mode 100644 index 0000000..f2eab53 Binary files /dev/null and b/src/dotnet/QuantEngine.Application/bin/Debug/net10.0/QuantEngine.Application.dll differ diff --git a/src/dotnet/QuantEngine.Application/bin/Debug/net10.0/QuantEngine.Application.pdb b/src/dotnet/QuantEngine.Application/bin/Debug/net10.0/QuantEngine.Application.pdb new file mode 100644 index 0000000..598efce Binary files /dev/null and b/src/dotnet/QuantEngine.Application/bin/Debug/net10.0/QuantEngine.Application.pdb differ diff --git a/src/dotnet/QuantEngine.Application/bin/Debug/net10.0/QuantEngine.Core.dll b/src/dotnet/QuantEngine.Application/bin/Debug/net10.0/QuantEngine.Core.dll new file mode 100644 index 0000000..6423906 Binary files /dev/null and b/src/dotnet/QuantEngine.Application/bin/Debug/net10.0/QuantEngine.Core.dll differ diff --git a/src/dotnet/QuantEngine.Application/bin/Debug/net10.0/QuantEngine.Core.pdb b/src/dotnet/QuantEngine.Application/bin/Debug/net10.0/QuantEngine.Core.pdb new file mode 100644 index 0000000..72dafcd Binary files /dev/null and b/src/dotnet/QuantEngine.Application/bin/Debug/net10.0/QuantEngine.Core.pdb differ diff --git a/src/dotnet/QuantEngine.Application/obj/Debug/net10.0/.NETCoreApp,Version=v10.0.AssemblyAttributes.cs b/src/dotnet/QuantEngine.Application/obj/Debug/net10.0/.NETCoreApp,Version=v10.0.AssemblyAttributes.cs new file mode 100644 index 0000000..925b135 --- /dev/null +++ b/src/dotnet/QuantEngine.Application/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/src/dotnet/QuantEngine.Application/obj/Debug/net10.0/QuantEng.294596D8.Up2Date b/src/dotnet/QuantEngine.Application/obj/Debug/net10.0/QuantEng.294596D8.Up2Date new file mode 100644 index 0000000..e69de29 diff --git a/src/dotnet/QuantEngine.Application/obj/Debug/net10.0/QuantEngine.Application.AssemblyInfo.cs b/src/dotnet/QuantEngine.Application/obj/Debug/net10.0/QuantEngine.Application.AssemblyInfo.cs new file mode 100644 index 0000000..649b376 --- /dev/null +++ b/src/dotnet/QuantEngine.Application/obj/Debug/net10.0/QuantEngine.Application.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("QuantEngine.Application")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+9abb8d3bc31eb38d5c27cbd3ca734da4eeec9609")] +[assembly: System.Reflection.AssemblyProductAttribute("QuantEngine.Application")] +[assembly: System.Reflection.AssemblyTitleAttribute("QuantEngine.Application")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] + +// MSBuild WriteCodeFragment 클래스에서 생성되었습니다. + diff --git a/src/dotnet/QuantEngine.Application/obj/Debug/net10.0/QuantEngine.Application.AssemblyInfoInputs.cache b/src/dotnet/QuantEngine.Application/obj/Debug/net10.0/QuantEngine.Application.AssemblyInfoInputs.cache new file mode 100644 index 0000000..0cf0c30 --- /dev/null +++ b/src/dotnet/QuantEngine.Application/obj/Debug/net10.0/QuantEngine.Application.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +e3e68b7b4f28bedfa4c281c4ea433640f06d2b156729338bb8a006b285e962b7 diff --git a/src/dotnet/QuantEngine.Application/obj/Debug/net10.0/QuantEngine.Application.GeneratedMSBuildEditorConfig.editorconfig b/src/dotnet/QuantEngine.Application/obj/Debug/net10.0/QuantEngine.Application.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..968d67f --- /dev/null +++ b/src/dotnet/QuantEngine.Application/obj/Debug/net10.0/QuantEngine.Application.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 = QuantEngine.Application +build_property.ProjectDir = C:\Temp\data_feed\src\dotnet\QuantEngine.Application\ +build_property.EnableComHosting = +build_property.EnableGeneratedComInterfaceComImportInterop = +build_property.EffectiveAnalysisLevelStyle = 10.0 +build_property.EnableCodeStyleSeverity = diff --git a/src/dotnet/QuantEngine.Application/obj/Debug/net10.0/QuantEngine.Application.GlobalUsings.g.cs b/src/dotnet/QuantEngine.Application/obj/Debug/net10.0/QuantEngine.Application.GlobalUsings.g.cs new file mode 100644 index 0000000..d12bcbc --- /dev/null +++ b/src/dotnet/QuantEngine.Application/obj/Debug/net10.0/QuantEngine.Application.GlobalUsings.g.cs @@ -0,0 +1,8 @@ +// +global using System; +global using System.Collections.Generic; +global using System.IO; +global using System.Linq; +global using System.Net.Http; +global using System.Threading; +global using System.Threading.Tasks; diff --git a/src/dotnet/QuantEngine.Application/obj/Debug/net10.0/QuantEngine.Application.assets.cache b/src/dotnet/QuantEngine.Application/obj/Debug/net10.0/QuantEngine.Application.assets.cache new file mode 100644 index 0000000..7b056fa Binary files /dev/null and b/src/dotnet/QuantEngine.Application/obj/Debug/net10.0/QuantEngine.Application.assets.cache differ diff --git a/src/dotnet/QuantEngine.Application/obj/Debug/net10.0/QuantEngine.Application.csproj.AssemblyReference.cache b/src/dotnet/QuantEngine.Application/obj/Debug/net10.0/QuantEngine.Application.csproj.AssemblyReference.cache new file mode 100644 index 0000000..8594b30 Binary files /dev/null and b/src/dotnet/QuantEngine.Application/obj/Debug/net10.0/QuantEngine.Application.csproj.AssemblyReference.cache differ diff --git a/src/dotnet/QuantEngine.Application/obj/Debug/net10.0/QuantEngine.Application.csproj.CoreCompileInputs.cache b/src/dotnet/QuantEngine.Application/obj/Debug/net10.0/QuantEngine.Application.csproj.CoreCompileInputs.cache new file mode 100644 index 0000000..9ee0792 --- /dev/null +++ b/src/dotnet/QuantEngine.Application/obj/Debug/net10.0/QuantEngine.Application.csproj.CoreCompileInputs.cache @@ -0,0 +1 @@ +80e94a6d094629e4ad80f7142465b92081655e3b97c91dba890ae9505b6eac2c diff --git a/src/dotnet/QuantEngine.Application/obj/Debug/net10.0/QuantEngine.Application.csproj.FileListAbsolute.txt b/src/dotnet/QuantEngine.Application/obj/Debug/net10.0/QuantEngine.Application.csproj.FileListAbsolute.txt new file mode 100644 index 0000000..65f86be --- /dev/null +++ b/src/dotnet/QuantEngine.Application/obj/Debug/net10.0/QuantEngine.Application.csproj.FileListAbsolute.txt @@ -0,0 +1,15 @@ +C:\Temp\data_feed\src\dotnet\QuantEngine.Application\bin\Debug\net10.0\QuantEngine.Application.deps.json +C:\Temp\data_feed\src\dotnet\QuantEngine.Application\bin\Debug\net10.0\QuantEngine.Application.dll +C:\Temp\data_feed\src\dotnet\QuantEngine.Application\bin\Debug\net10.0\QuantEngine.Application.pdb +C:\Temp\data_feed\src\dotnet\QuantEngine.Application\bin\Debug\net10.0\QuantEngine.Core.dll +C:\Temp\data_feed\src\dotnet\QuantEngine.Application\bin\Debug\net10.0\QuantEngine.Core.pdb +C:\Temp\data_feed\src\dotnet\QuantEngine.Application\obj\Debug\net10.0\QuantEngine.Application.csproj.AssemblyReference.cache +C:\Temp\data_feed\src\dotnet\QuantEngine.Application\obj\Debug\net10.0\QuantEngine.Application.GeneratedMSBuildEditorConfig.editorconfig +C:\Temp\data_feed\src\dotnet\QuantEngine.Application\obj\Debug\net10.0\QuantEngine.Application.AssemblyInfoInputs.cache +C:\Temp\data_feed\src\dotnet\QuantEngine.Application\obj\Debug\net10.0\QuantEngine.Application.AssemblyInfo.cs +C:\Temp\data_feed\src\dotnet\QuantEngine.Application\obj\Debug\net10.0\QuantEngine.Application.csproj.CoreCompileInputs.cache +C:\Temp\data_feed\src\dotnet\QuantEngine.Application\obj\Debug\net10.0\QuantEng.294596D8.Up2Date +C:\Temp\data_feed\src\dotnet\QuantEngine.Application\obj\Debug\net10.0\QuantEngine.Application.dll +C:\Temp\data_feed\src\dotnet\QuantEngine.Application\obj\Debug\net10.0\refint\QuantEngine.Application.dll +C:\Temp\data_feed\src\dotnet\QuantEngine.Application\obj\Debug\net10.0\QuantEngine.Application.pdb +C:\Temp\data_feed\src\dotnet\QuantEngine.Application\obj\Debug\net10.0\ref\QuantEngine.Application.dll diff --git a/src/dotnet/QuantEngine.Application/obj/Debug/net10.0/QuantEngine.Application.dll b/src/dotnet/QuantEngine.Application/obj/Debug/net10.0/QuantEngine.Application.dll new file mode 100644 index 0000000..f2eab53 Binary files /dev/null and b/src/dotnet/QuantEngine.Application/obj/Debug/net10.0/QuantEngine.Application.dll differ diff --git a/src/dotnet/QuantEngine.Application/obj/Debug/net10.0/QuantEngine.Application.pdb b/src/dotnet/QuantEngine.Application/obj/Debug/net10.0/QuantEngine.Application.pdb new file mode 100644 index 0000000..598efce Binary files /dev/null and b/src/dotnet/QuantEngine.Application/obj/Debug/net10.0/QuantEngine.Application.pdb differ diff --git a/src/dotnet/QuantEngine.Application/obj/Debug/net10.0/ref/QuantEngine.Application.dll b/src/dotnet/QuantEngine.Application/obj/Debug/net10.0/ref/QuantEngine.Application.dll new file mode 100644 index 0000000..a23c86f Binary files /dev/null and b/src/dotnet/QuantEngine.Application/obj/Debug/net10.0/ref/QuantEngine.Application.dll differ diff --git a/src/dotnet/QuantEngine.Application/obj/Debug/net10.0/refint/QuantEngine.Application.dll b/src/dotnet/QuantEngine.Application/obj/Debug/net10.0/refint/QuantEngine.Application.dll new file mode 100644 index 0000000..a23c86f Binary files /dev/null and b/src/dotnet/QuantEngine.Application/obj/Debug/net10.0/refint/QuantEngine.Application.dll differ diff --git a/src/dotnet/QuantEngine.Application/obj/QuantEngine.Application.csproj.nuget.dgspec.json b/src/dotnet/QuantEngine.Application/obj/QuantEngine.Application.csproj.nuget.dgspec.json new file mode 100644 index 0000000..e12f6ba --- /dev/null +++ b/src/dotnet/QuantEngine.Application/obj/QuantEngine.Application.csproj.nuget.dgspec.json @@ -0,0 +1,696 @@ +{ + "format": 1, + "restore": { + "C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Application\\QuantEngine.Application.csproj": {} + }, + "projects": { + "C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Application\\QuantEngine.Application.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Application\\QuantEngine.Application.csproj", + "projectName": "QuantEngine.Application", + "projectPath": "C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Application\\QuantEngine.Application.csproj", + "packagesPath": "C:\\Users\\kjh20\\.nuget\\packages\\", + "outputPath": "C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Application\\obj\\", + "projectStyle": "PackageReference", + "fallbackFolders": [ + "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages", + "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder" + ], + "configFilePaths": [ + "C:\\Users\\kjh20\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "net10.0" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "C:\\Program Files\\dotnet\\library-packs": {}, + "https://api.nuget.org/v3/index.json": {}, + "https://nuget.telerik.com/v3/index.json": {} + }, + "frameworks": { + "net10.0": { + "targetAlias": "net10.0", + "projectReferences": { + "C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Core\\QuantEngine.Core.csproj": { + "projectPath": "C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Core\\QuantEngine.Core.csproj" + } + } + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + }, + "restoreAuditProperties": { + "enableAudit": "true", + "auditLevel": "low", + "auditMode": "all" + }, + "SdkAnalysisLevel": "10.0.100" + }, + "frameworks": { + "net10.0": { + "targetAlias": "net10.0", + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\10.0.100/PortableRuntimeIdentifierGraph.json", + "packagesToPrune": { + "Microsoft.CSharp": "(,4.7.32767]", + "Microsoft.VisualBasic": "(,10.4.32767]", + "Microsoft.Win32.Primitives": "(,4.3.32767]", + "Microsoft.Win32.Registry": "(,5.0.32767]", + "runtime.any.System.Collections": "(,4.3.32767]", + "runtime.any.System.Diagnostics.Tools": "(,4.3.32767]", + "runtime.any.System.Diagnostics.Tracing": "(,4.3.32767]", + "runtime.any.System.Globalization": "(,4.3.32767]", + "runtime.any.System.Globalization.Calendars": "(,4.3.32767]", + "runtime.any.System.IO": "(,4.3.32767]", + "runtime.any.System.Reflection": "(,4.3.32767]", + "runtime.any.System.Reflection.Extensions": "(,4.3.32767]", + "runtime.any.System.Reflection.Primitives": "(,4.3.32767]", + "runtime.any.System.Resources.ResourceManager": "(,4.3.32767]", + "runtime.any.System.Runtime": "(,4.3.32767]", + "runtime.any.System.Runtime.Handles": "(,4.3.32767]", + "runtime.any.System.Runtime.InteropServices": "(,4.3.32767]", + "runtime.any.System.Text.Encoding": "(,4.3.32767]", + "runtime.any.System.Text.Encoding.Extensions": "(,4.3.32767]", + "runtime.any.System.Threading.Tasks": "(,4.3.32767]", + "runtime.any.System.Threading.Timer": "(,4.3.32767]", + "runtime.aot.System.Collections": "(,4.3.32767]", + "runtime.aot.System.Diagnostics.Tools": "(,4.3.32767]", + "runtime.aot.System.Diagnostics.Tracing": "(,4.3.32767]", + "runtime.aot.System.Globalization": "(,4.3.32767]", + "runtime.aot.System.Globalization.Calendars": "(,4.3.32767]", + "runtime.aot.System.IO": "(,4.3.32767]", + "runtime.aot.System.Reflection": "(,4.3.32767]", + "runtime.aot.System.Reflection.Extensions": "(,4.3.32767]", + "runtime.aot.System.Reflection.Primitives": "(,4.3.32767]", + "runtime.aot.System.Resources.ResourceManager": "(,4.3.32767]", + "runtime.aot.System.Runtime": "(,4.3.32767]", + "runtime.aot.System.Runtime.Handles": "(,4.3.32767]", + "runtime.aot.System.Runtime.InteropServices": "(,4.3.32767]", + "runtime.aot.System.Text.Encoding": "(,4.3.32767]", + "runtime.aot.System.Text.Encoding.Extensions": "(,4.3.32767]", + "runtime.aot.System.Threading.Tasks": "(,4.3.32767]", + "runtime.aot.System.Threading.Timer": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.debian.9-x64.runtime.native.System": "(,4.3.32767]", + "runtime.debian.9-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.debian.9-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.debian.9-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.fedora.27-x64.runtime.native.System": "(,4.3.32767]", + "runtime.fedora.27-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.fedora.27-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.fedora.27-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.fedora.28-x64.runtime.native.System": "(,4.3.32767]", + "runtime.fedora.28-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.fedora.28-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.fedora.28-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.opensuse.42.3-x64.runtime.native.System": "(,4.3.32767]", + "runtime.opensuse.42.3-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.opensuse.42.3-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.opensuse.42.3-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.ubuntu.18.04-x64.runtime.native.System": "(,4.3.32767]", + "runtime.ubuntu.18.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.ubuntu.18.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.ubuntu.18.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.unix.Microsoft.Win32.Primitives": "(,4.3.32767]", + "runtime.unix.System.Console": "(,4.3.32767]", + "runtime.unix.System.Diagnostics.Debug": "(,4.3.32767]", + "runtime.unix.System.IO.FileSystem": "(,4.3.32767]", + "runtime.unix.System.Net.Primitives": "(,4.3.32767]", + "runtime.unix.System.Net.Sockets": "(,4.3.32767]", + "runtime.unix.System.Private.Uri": "(,4.3.32767]", + "runtime.unix.System.Runtime.Extensions": "(,4.3.32767]", + "runtime.win.Microsoft.Win32.Primitives": "(,4.3.32767]", + "runtime.win.System.Console": "(,4.3.32767]", + "runtime.win.System.Diagnostics.Debug": "(,4.3.32767]", + "runtime.win.System.IO.FileSystem": "(,4.3.32767]", + "runtime.win.System.Net.Primitives": "(,4.3.32767]", + "runtime.win.System.Net.Sockets": "(,4.3.32767]", + "runtime.win.System.Runtime.Extensions": "(,4.3.32767]", + "runtime.win10-arm-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", + "runtime.win10-arm64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.win10-x64-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", + "runtime.win10-x86-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", + "runtime.win7-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.win7-x86.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.win7.System.Private.Uri": "(,4.3.32767]", + "runtime.win8-arm.runtime.native.System.IO.Compression": "(,4.3.32767]", + "System.AppContext": "(,4.3.32767]", + "System.Buffers": "(,5.0.32767]", + "System.Collections": "(,4.3.32767]", + "System.Collections.Concurrent": "(,4.3.32767]", + "System.Collections.Immutable": "(,10.0.32767]", + "System.Collections.NonGeneric": "(,4.3.32767]", + "System.Collections.Specialized": "(,4.3.32767]", + "System.ComponentModel": "(,4.3.32767]", + "System.ComponentModel.Annotations": "(,4.3.32767]", + "System.ComponentModel.EventBasedAsync": "(,4.3.32767]", + "System.ComponentModel.Primitives": "(,4.3.32767]", + "System.ComponentModel.TypeConverter": "(,4.3.32767]", + "System.Console": "(,4.3.32767]", + "System.Data.Common": "(,4.3.32767]", + "System.Data.DataSetExtensions": "(,4.4.32767]", + "System.Diagnostics.Contracts": "(,4.3.32767]", + "System.Diagnostics.Debug": "(,4.3.32767]", + "System.Diagnostics.DiagnosticSource": "(,10.0.32767]", + "System.Diagnostics.FileVersionInfo": "(,4.3.32767]", + "System.Diagnostics.Process": "(,4.3.32767]", + "System.Diagnostics.StackTrace": "(,4.3.32767]", + "System.Diagnostics.TextWriterTraceListener": "(,4.3.32767]", + "System.Diagnostics.Tools": "(,4.3.32767]", + "System.Diagnostics.TraceSource": "(,4.3.32767]", + "System.Diagnostics.Tracing": "(,4.3.32767]", + "System.Drawing.Primitives": "(,4.3.32767]", + "System.Dynamic.Runtime": "(,4.3.32767]", + "System.Formats.Asn1": "(,10.0.32767]", + "System.Formats.Tar": "(,10.0.32767]", + "System.Globalization": "(,4.3.32767]", + "System.Globalization.Calendars": "(,4.3.32767]", + "System.Globalization.Extensions": "(,4.3.32767]", + "System.IO": "(,4.3.32767]", + "System.IO.Compression": "(,4.3.32767]", + "System.IO.Compression.ZipFile": "(,4.3.32767]", + "System.IO.FileSystem": "(,4.3.32767]", + "System.IO.FileSystem.AccessControl": "(,4.4.32767]", + "System.IO.FileSystem.DriveInfo": "(,4.3.32767]", + "System.IO.FileSystem.Primitives": "(,4.3.32767]", + "System.IO.FileSystem.Watcher": "(,4.3.32767]", + "System.IO.IsolatedStorage": "(,4.3.32767]", + "System.IO.MemoryMappedFiles": "(,4.3.32767]", + "System.IO.Pipelines": "(,10.0.32767]", + "System.IO.Pipes": "(,4.3.32767]", + "System.IO.Pipes.AccessControl": "(,5.0.32767]", + "System.IO.UnmanagedMemoryStream": "(,4.3.32767]", + "System.Linq": "(,4.3.32767]", + "System.Linq.AsyncEnumerable": "(,10.0.32767]", + "System.Linq.Expressions": "(,4.3.32767]", + "System.Linq.Parallel": "(,4.3.32767]", + "System.Linq.Queryable": "(,4.3.32767]", + "System.Memory": "(,5.0.32767]", + "System.Net.Http": "(,4.3.32767]", + "System.Net.Http.Json": "(,10.0.32767]", + "System.Net.NameResolution": "(,4.3.32767]", + "System.Net.NetworkInformation": "(,4.3.32767]", + "System.Net.Ping": "(,4.3.32767]", + "System.Net.Primitives": "(,4.3.32767]", + "System.Net.Requests": "(,4.3.32767]", + "System.Net.Security": "(,4.3.32767]", + "System.Net.ServerSentEvents": "(,10.0.32767]", + "System.Net.Sockets": "(,4.3.32767]", + "System.Net.WebHeaderCollection": "(,4.3.32767]", + "System.Net.WebSockets": "(,4.3.32767]", + "System.Net.WebSockets.Client": "(,4.3.32767]", + "System.Numerics.Vectors": "(,5.0.32767]", + "System.ObjectModel": "(,4.3.32767]", + "System.Private.DataContractSerialization": "(,4.3.32767]", + "System.Private.Uri": "(,4.3.32767]", + "System.Reflection": "(,4.3.32767]", + "System.Reflection.DispatchProxy": "(,6.0.32767]", + "System.Reflection.Emit": "(,4.7.32767]", + "System.Reflection.Emit.ILGeneration": "(,4.7.32767]", + "System.Reflection.Emit.Lightweight": "(,4.7.32767]", + "System.Reflection.Extensions": "(,4.3.32767]", + "System.Reflection.Metadata": "(,10.0.32767]", + "System.Reflection.Primitives": "(,4.3.32767]", + "System.Reflection.TypeExtensions": "(,4.3.32767]", + "System.Resources.Reader": "(,4.3.32767]", + "System.Resources.ResourceManager": "(,4.3.32767]", + "System.Resources.Writer": "(,4.3.32767]", + "System.Runtime": "(,4.3.32767]", + "System.Runtime.CompilerServices.Unsafe": "(,7.0.32767]", + "System.Runtime.CompilerServices.VisualC": "(,4.3.32767]", + "System.Runtime.Extensions": "(,4.3.32767]", + "System.Runtime.Handles": "(,4.3.32767]", + "System.Runtime.InteropServices": "(,4.3.32767]", + "System.Runtime.InteropServices.RuntimeInformation": "(,4.3.32767]", + "System.Runtime.Loader": "(,4.3.32767]", + "System.Runtime.Numerics": "(,4.3.32767]", + "System.Runtime.Serialization.Formatters": "(,4.3.32767]", + "System.Runtime.Serialization.Json": "(,4.3.32767]", + "System.Runtime.Serialization.Primitives": "(,4.3.32767]", + "System.Runtime.Serialization.Xml": "(,4.3.32767]", + "System.Security.AccessControl": "(,6.0.32767]", + "System.Security.Claims": "(,4.3.32767]", + "System.Security.Cryptography.Algorithms": "(,4.3.32767]", + "System.Security.Cryptography.Cng": "(,5.0.32767]", + "System.Security.Cryptography.Csp": "(,4.3.32767]", + "System.Security.Cryptography.Encoding": "(,4.3.32767]", + "System.Security.Cryptography.OpenSsl": "(,5.0.32767]", + "System.Security.Cryptography.Primitives": "(,4.3.32767]", + "System.Security.Cryptography.X509Certificates": "(,4.3.32767]", + "System.Security.Principal": "(,4.3.32767]", + "System.Security.Principal.Windows": "(,5.0.32767]", + "System.Security.SecureString": "(,4.3.32767]", + "System.Text.Encoding": "(,4.3.32767]", + "System.Text.Encoding.CodePages": "(,10.0.32767]", + "System.Text.Encoding.Extensions": "(,4.3.32767]", + "System.Text.Encodings.Web": "(,10.0.32767]", + "System.Text.Json": "(,10.0.32767]", + "System.Text.RegularExpressions": "(,4.3.32767]", + "System.Threading": "(,4.3.32767]", + "System.Threading.AccessControl": "(,10.0.32767]", + "System.Threading.Channels": "(,10.0.32767]", + "System.Threading.Overlapped": "(,4.3.32767]", + "System.Threading.Tasks": "(,4.3.32767]", + "System.Threading.Tasks.Dataflow": "(,10.0.32767]", + "System.Threading.Tasks.Extensions": "(,5.0.32767]", + "System.Threading.Tasks.Parallel": "(,4.3.32767]", + "System.Threading.Thread": "(,4.3.32767]", + "System.Threading.ThreadPool": "(,4.3.32767]", + "System.Threading.Timer": "(,4.3.32767]", + "System.ValueTuple": "(,4.5.32767]", + "System.Xml.ReaderWriter": "(,4.3.32767]", + "System.Xml.XDocument": "(,4.3.32767]", + "System.Xml.XmlDocument": "(,4.3.32767]", + "System.Xml.XmlSerializer": "(,4.3.32767]", + "System.Xml.XPath": "(,4.3.32767]", + "System.Xml.XPath.XDocument": "(,5.0.32767]" + } + } + } + }, + "C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Core\\QuantEngine.Core.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Core\\QuantEngine.Core.csproj", + "projectName": "QuantEngine.Core", + "projectPath": "C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Core\\QuantEngine.Core.csproj", + "packagesPath": "C:\\Users\\kjh20\\.nuget\\packages\\", + "outputPath": "C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Core\\obj\\", + "projectStyle": "PackageReference", + "fallbackFolders": [ + "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages", + "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder" + ], + "configFilePaths": [ + "C:\\Users\\kjh20\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "net10.0" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "C:\\Program Files\\dotnet\\library-packs": {}, + "https://api.nuget.org/v3/index.json": {}, + "https://nuget.telerik.com/v3/index.json": {} + }, + "frameworks": { + "net10.0": { + "targetAlias": "net10.0", + "projectReferences": {} + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + }, + "restoreAuditProperties": { + "enableAudit": "true", + "auditLevel": "low", + "auditMode": "all" + }, + "SdkAnalysisLevel": "10.0.100" + }, + "frameworks": { + "net10.0": { + "targetAlias": "net10.0", + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\10.0.100/PortableRuntimeIdentifierGraph.json", + "packagesToPrune": { + "Microsoft.CSharp": "(,4.7.32767]", + "Microsoft.VisualBasic": "(,10.4.32767]", + "Microsoft.Win32.Primitives": "(,4.3.32767]", + "Microsoft.Win32.Registry": "(,5.0.32767]", + "runtime.any.System.Collections": "(,4.3.32767]", + "runtime.any.System.Diagnostics.Tools": "(,4.3.32767]", + "runtime.any.System.Diagnostics.Tracing": "(,4.3.32767]", + "runtime.any.System.Globalization": "(,4.3.32767]", + "runtime.any.System.Globalization.Calendars": "(,4.3.32767]", + "runtime.any.System.IO": "(,4.3.32767]", + "runtime.any.System.Reflection": "(,4.3.32767]", + "runtime.any.System.Reflection.Extensions": "(,4.3.32767]", + "runtime.any.System.Reflection.Primitives": "(,4.3.32767]", + "runtime.any.System.Resources.ResourceManager": "(,4.3.32767]", + "runtime.any.System.Runtime": "(,4.3.32767]", + "runtime.any.System.Runtime.Handles": "(,4.3.32767]", + "runtime.any.System.Runtime.InteropServices": "(,4.3.32767]", + "runtime.any.System.Text.Encoding": "(,4.3.32767]", + "runtime.any.System.Text.Encoding.Extensions": "(,4.3.32767]", + "runtime.any.System.Threading.Tasks": "(,4.3.32767]", + "runtime.any.System.Threading.Timer": "(,4.3.32767]", + "runtime.aot.System.Collections": "(,4.3.32767]", + "runtime.aot.System.Diagnostics.Tools": "(,4.3.32767]", + "runtime.aot.System.Diagnostics.Tracing": "(,4.3.32767]", + "runtime.aot.System.Globalization": "(,4.3.32767]", + "runtime.aot.System.Globalization.Calendars": "(,4.3.32767]", + "runtime.aot.System.IO": "(,4.3.32767]", + "runtime.aot.System.Reflection": "(,4.3.32767]", + "runtime.aot.System.Reflection.Extensions": "(,4.3.32767]", + "runtime.aot.System.Reflection.Primitives": "(,4.3.32767]", + "runtime.aot.System.Resources.ResourceManager": "(,4.3.32767]", + "runtime.aot.System.Runtime": "(,4.3.32767]", + "runtime.aot.System.Runtime.Handles": "(,4.3.32767]", + "runtime.aot.System.Runtime.InteropServices": "(,4.3.32767]", + "runtime.aot.System.Text.Encoding": "(,4.3.32767]", + "runtime.aot.System.Text.Encoding.Extensions": "(,4.3.32767]", + "runtime.aot.System.Threading.Tasks": "(,4.3.32767]", + "runtime.aot.System.Threading.Timer": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.debian.9-x64.runtime.native.System": "(,4.3.32767]", + "runtime.debian.9-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.debian.9-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.debian.9-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.fedora.27-x64.runtime.native.System": "(,4.3.32767]", + "runtime.fedora.27-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.fedora.27-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.fedora.27-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.fedora.28-x64.runtime.native.System": "(,4.3.32767]", + "runtime.fedora.28-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.fedora.28-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.fedora.28-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.opensuse.42.3-x64.runtime.native.System": "(,4.3.32767]", + "runtime.opensuse.42.3-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.opensuse.42.3-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.opensuse.42.3-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.ubuntu.18.04-x64.runtime.native.System": "(,4.3.32767]", + "runtime.ubuntu.18.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.ubuntu.18.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.ubuntu.18.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.unix.Microsoft.Win32.Primitives": "(,4.3.32767]", + "runtime.unix.System.Console": "(,4.3.32767]", + "runtime.unix.System.Diagnostics.Debug": "(,4.3.32767]", + "runtime.unix.System.IO.FileSystem": "(,4.3.32767]", + "runtime.unix.System.Net.Primitives": "(,4.3.32767]", + "runtime.unix.System.Net.Sockets": "(,4.3.32767]", + "runtime.unix.System.Private.Uri": "(,4.3.32767]", + "runtime.unix.System.Runtime.Extensions": "(,4.3.32767]", + "runtime.win.Microsoft.Win32.Primitives": "(,4.3.32767]", + "runtime.win.System.Console": "(,4.3.32767]", + "runtime.win.System.Diagnostics.Debug": "(,4.3.32767]", + "runtime.win.System.IO.FileSystem": "(,4.3.32767]", + "runtime.win.System.Net.Primitives": "(,4.3.32767]", + "runtime.win.System.Net.Sockets": "(,4.3.32767]", + "runtime.win.System.Runtime.Extensions": "(,4.3.32767]", + "runtime.win10-arm-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", + "runtime.win10-arm64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.win10-x64-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", + "runtime.win10-x86-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", + "runtime.win7-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.win7-x86.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.win7.System.Private.Uri": "(,4.3.32767]", + "runtime.win8-arm.runtime.native.System.IO.Compression": "(,4.3.32767]", + "System.AppContext": "(,4.3.32767]", + "System.Buffers": "(,5.0.32767]", + "System.Collections": "(,4.3.32767]", + "System.Collections.Concurrent": "(,4.3.32767]", + "System.Collections.Immutable": "(,10.0.32767]", + "System.Collections.NonGeneric": "(,4.3.32767]", + "System.Collections.Specialized": "(,4.3.32767]", + "System.ComponentModel": "(,4.3.32767]", + "System.ComponentModel.Annotations": "(,4.3.32767]", + "System.ComponentModel.EventBasedAsync": "(,4.3.32767]", + "System.ComponentModel.Primitives": "(,4.3.32767]", + "System.ComponentModel.TypeConverter": "(,4.3.32767]", + "System.Console": "(,4.3.32767]", + "System.Data.Common": "(,4.3.32767]", + "System.Data.DataSetExtensions": "(,4.4.32767]", + "System.Diagnostics.Contracts": "(,4.3.32767]", + "System.Diagnostics.Debug": "(,4.3.32767]", + "System.Diagnostics.DiagnosticSource": "(,10.0.32767]", + "System.Diagnostics.FileVersionInfo": "(,4.3.32767]", + "System.Diagnostics.Process": "(,4.3.32767]", + "System.Diagnostics.StackTrace": "(,4.3.32767]", + "System.Diagnostics.TextWriterTraceListener": "(,4.3.32767]", + "System.Diagnostics.Tools": "(,4.3.32767]", + "System.Diagnostics.TraceSource": "(,4.3.32767]", + "System.Diagnostics.Tracing": "(,4.3.32767]", + "System.Drawing.Primitives": "(,4.3.32767]", + "System.Dynamic.Runtime": "(,4.3.32767]", + "System.Formats.Asn1": "(,10.0.32767]", + "System.Formats.Tar": "(,10.0.32767]", + "System.Globalization": "(,4.3.32767]", + "System.Globalization.Calendars": "(,4.3.32767]", + "System.Globalization.Extensions": "(,4.3.32767]", + "System.IO": "(,4.3.32767]", + "System.IO.Compression": "(,4.3.32767]", + "System.IO.Compression.ZipFile": "(,4.3.32767]", + "System.IO.FileSystem": "(,4.3.32767]", + "System.IO.FileSystem.AccessControl": "(,4.4.32767]", + "System.IO.FileSystem.DriveInfo": "(,4.3.32767]", + "System.IO.FileSystem.Primitives": "(,4.3.32767]", + "System.IO.FileSystem.Watcher": "(,4.3.32767]", + "System.IO.IsolatedStorage": "(,4.3.32767]", + "System.IO.MemoryMappedFiles": "(,4.3.32767]", + "System.IO.Pipelines": "(,10.0.32767]", + "System.IO.Pipes": "(,4.3.32767]", + "System.IO.Pipes.AccessControl": "(,5.0.32767]", + "System.IO.UnmanagedMemoryStream": "(,4.3.32767]", + "System.Linq": "(,4.3.32767]", + "System.Linq.AsyncEnumerable": "(,10.0.32767]", + "System.Linq.Expressions": "(,4.3.32767]", + "System.Linq.Parallel": "(,4.3.32767]", + "System.Linq.Queryable": "(,4.3.32767]", + "System.Memory": "(,5.0.32767]", + "System.Net.Http": "(,4.3.32767]", + "System.Net.Http.Json": "(,10.0.32767]", + "System.Net.NameResolution": "(,4.3.32767]", + "System.Net.NetworkInformation": "(,4.3.32767]", + "System.Net.Ping": "(,4.3.32767]", + "System.Net.Primitives": "(,4.3.32767]", + "System.Net.Requests": "(,4.3.32767]", + "System.Net.Security": "(,4.3.32767]", + "System.Net.ServerSentEvents": "(,10.0.32767]", + "System.Net.Sockets": "(,4.3.32767]", + "System.Net.WebHeaderCollection": "(,4.3.32767]", + "System.Net.WebSockets": "(,4.3.32767]", + "System.Net.WebSockets.Client": "(,4.3.32767]", + "System.Numerics.Vectors": "(,5.0.32767]", + "System.ObjectModel": "(,4.3.32767]", + "System.Private.DataContractSerialization": "(,4.3.32767]", + "System.Private.Uri": "(,4.3.32767]", + "System.Reflection": "(,4.3.32767]", + "System.Reflection.DispatchProxy": "(,6.0.32767]", + "System.Reflection.Emit": "(,4.7.32767]", + "System.Reflection.Emit.ILGeneration": "(,4.7.32767]", + "System.Reflection.Emit.Lightweight": "(,4.7.32767]", + "System.Reflection.Extensions": "(,4.3.32767]", + "System.Reflection.Metadata": "(,10.0.32767]", + "System.Reflection.Primitives": "(,4.3.32767]", + "System.Reflection.TypeExtensions": "(,4.3.32767]", + "System.Resources.Reader": "(,4.3.32767]", + "System.Resources.ResourceManager": "(,4.3.32767]", + "System.Resources.Writer": "(,4.3.32767]", + "System.Runtime": "(,4.3.32767]", + "System.Runtime.CompilerServices.Unsafe": "(,7.0.32767]", + "System.Runtime.CompilerServices.VisualC": "(,4.3.32767]", + "System.Runtime.Extensions": "(,4.3.32767]", + "System.Runtime.Handles": "(,4.3.32767]", + "System.Runtime.InteropServices": "(,4.3.32767]", + "System.Runtime.InteropServices.RuntimeInformation": "(,4.3.32767]", + "System.Runtime.Loader": "(,4.3.32767]", + "System.Runtime.Numerics": "(,4.3.32767]", + "System.Runtime.Serialization.Formatters": "(,4.3.32767]", + "System.Runtime.Serialization.Json": "(,4.3.32767]", + "System.Runtime.Serialization.Primitives": "(,4.3.32767]", + "System.Runtime.Serialization.Xml": "(,4.3.32767]", + "System.Security.AccessControl": "(,6.0.32767]", + "System.Security.Claims": "(,4.3.32767]", + "System.Security.Cryptography.Algorithms": "(,4.3.32767]", + "System.Security.Cryptography.Cng": "(,5.0.32767]", + "System.Security.Cryptography.Csp": "(,4.3.32767]", + "System.Security.Cryptography.Encoding": "(,4.3.32767]", + "System.Security.Cryptography.OpenSsl": "(,5.0.32767]", + "System.Security.Cryptography.Primitives": "(,4.3.32767]", + "System.Security.Cryptography.X509Certificates": "(,4.3.32767]", + "System.Security.Principal": "(,4.3.32767]", + "System.Security.Principal.Windows": "(,5.0.32767]", + "System.Security.SecureString": "(,4.3.32767]", + "System.Text.Encoding": "(,4.3.32767]", + "System.Text.Encoding.CodePages": "(,10.0.32767]", + "System.Text.Encoding.Extensions": "(,4.3.32767]", + "System.Text.Encodings.Web": "(,10.0.32767]", + "System.Text.Json": "(,10.0.32767]", + "System.Text.RegularExpressions": "(,4.3.32767]", + "System.Threading": "(,4.3.32767]", + "System.Threading.AccessControl": "(,10.0.32767]", + "System.Threading.Channels": "(,10.0.32767]", + "System.Threading.Overlapped": "(,4.3.32767]", + "System.Threading.Tasks": "(,4.3.32767]", + "System.Threading.Tasks.Dataflow": "(,10.0.32767]", + "System.Threading.Tasks.Extensions": "(,5.0.32767]", + "System.Threading.Tasks.Parallel": "(,4.3.32767]", + "System.Threading.Thread": "(,4.3.32767]", + "System.Threading.ThreadPool": "(,4.3.32767]", + "System.Threading.Timer": "(,4.3.32767]", + "System.ValueTuple": "(,4.5.32767]", + "System.Xml.ReaderWriter": "(,4.3.32767]", + "System.Xml.XDocument": "(,4.3.32767]", + "System.Xml.XmlDocument": "(,4.3.32767]", + "System.Xml.XmlSerializer": "(,4.3.32767]", + "System.Xml.XPath": "(,4.3.32767]", + "System.Xml.XPath.XDocument": "(,5.0.32767]" + } + } + } + } + } +} \ No newline at end of file diff --git a/src/dotnet/QuantEngine.Application/obj/QuantEngine.Application.csproj.nuget.g.props b/src/dotnet/QuantEngine.Application/obj/QuantEngine.Application.csproj.nuget.g.props new file mode 100644 index 0000000..e838210 --- /dev/null +++ b/src/dotnet/QuantEngine.Application/obj/QuantEngine.Application.csproj.nuget.g.props @@ -0,0 +1,17 @@ + + + + True + NuGet + $(MSBuildThisFileDirectory)project.assets.json + $(UserProfile)\.nuget\packages\ + C:\Users\kjh20\.nuget\packages\;C:\Program Files (x86)\Microsoft Visual Studio\Shared\NuGetPackages;C:\Program Files\dotnet\sdk\NuGetFallbackFolder + PackageReference + 7.0.0 + + + + + + + \ No newline at end of file diff --git a/src/dotnet/QuantEngine.Application/obj/QuantEngine.Application.csproj.nuget.g.targets b/src/dotnet/QuantEngine.Application/obj/QuantEngine.Application.csproj.nuget.g.targets new file mode 100644 index 0000000..3dc06ef --- /dev/null +++ b/src/dotnet/QuantEngine.Application/obj/QuantEngine.Application.csproj.nuget.g.targets @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/src/dotnet/QuantEngine.Application/obj/project.assets.json b/src/dotnet/QuantEngine.Application/obj/project.assets.json new file mode 100644 index 0000000..b350898 --- /dev/null +++ b/src/dotnet/QuantEngine.Application/obj/project.assets.json @@ -0,0 +1,380 @@ +{ + "version": 3, + "targets": { + "net10.0": { + "QuantEngine.Core/1.0.0": { + "type": "project", + "framework": ".NETCoreApp,Version=v10.0", + "compile": { + "bin/placeholder/QuantEngine.Core.dll": {} + }, + "runtime": { + "bin/placeholder/QuantEngine.Core.dll": {} + } + } + } + }, + "libraries": { + "QuantEngine.Core/1.0.0": { + "type": "project", + "path": "../QuantEngine.Core/QuantEngine.Core.csproj", + "msbuildProject": "../QuantEngine.Core/QuantEngine.Core.csproj" + } + }, + "projectFileDependencyGroups": { + "net10.0": [ + "QuantEngine.Core >= 1.0.0" + ] + }, + "packageFolders": { + "C:\\Users\\kjh20\\.nuget\\packages\\": {}, + "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages": {}, + "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder": {} + }, + "project": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Application\\QuantEngine.Application.csproj", + "projectName": "QuantEngine.Application", + "projectPath": "C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Application\\QuantEngine.Application.csproj", + "packagesPath": "C:\\Users\\kjh20\\.nuget\\packages\\", + "outputPath": "C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Application\\obj\\", + "projectStyle": "PackageReference", + "fallbackFolders": [ + "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages", + "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder" + ], + "configFilePaths": [ + "C:\\Users\\kjh20\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "net10.0" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "C:\\Program Files\\dotnet\\library-packs": {}, + "https://api.nuget.org/v3/index.json": {}, + "https://nuget.telerik.com/v3/index.json": {} + }, + "frameworks": { + "net10.0": { + "targetAlias": "net10.0", + "projectReferences": { + "C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Core\\QuantEngine.Core.csproj": { + "projectPath": "C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Core\\QuantEngine.Core.csproj" + } + } + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + }, + "restoreAuditProperties": { + "enableAudit": "true", + "auditLevel": "low", + "auditMode": "all" + }, + "SdkAnalysisLevel": "10.0.100" + }, + "frameworks": { + "net10.0": { + "targetAlias": "net10.0", + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\10.0.100/PortableRuntimeIdentifierGraph.json", + "packagesToPrune": { + "Microsoft.CSharp": "(,4.7.32767]", + "Microsoft.VisualBasic": "(,10.4.32767]", + "Microsoft.Win32.Primitives": "(,4.3.32767]", + "Microsoft.Win32.Registry": "(,5.0.32767]", + "runtime.any.System.Collections": "(,4.3.32767]", + "runtime.any.System.Diagnostics.Tools": "(,4.3.32767]", + "runtime.any.System.Diagnostics.Tracing": "(,4.3.32767]", + "runtime.any.System.Globalization": "(,4.3.32767]", + "runtime.any.System.Globalization.Calendars": "(,4.3.32767]", + "runtime.any.System.IO": "(,4.3.32767]", + "runtime.any.System.Reflection": "(,4.3.32767]", + "runtime.any.System.Reflection.Extensions": "(,4.3.32767]", + "runtime.any.System.Reflection.Primitives": "(,4.3.32767]", + "runtime.any.System.Resources.ResourceManager": "(,4.3.32767]", + "runtime.any.System.Runtime": "(,4.3.32767]", + "runtime.any.System.Runtime.Handles": "(,4.3.32767]", + "runtime.any.System.Runtime.InteropServices": "(,4.3.32767]", + "runtime.any.System.Text.Encoding": "(,4.3.32767]", + "runtime.any.System.Text.Encoding.Extensions": "(,4.3.32767]", + "runtime.any.System.Threading.Tasks": "(,4.3.32767]", + "runtime.any.System.Threading.Timer": "(,4.3.32767]", + "runtime.aot.System.Collections": "(,4.3.32767]", + "runtime.aot.System.Diagnostics.Tools": "(,4.3.32767]", + "runtime.aot.System.Diagnostics.Tracing": "(,4.3.32767]", + "runtime.aot.System.Globalization": "(,4.3.32767]", + "runtime.aot.System.Globalization.Calendars": "(,4.3.32767]", + "runtime.aot.System.IO": "(,4.3.32767]", + "runtime.aot.System.Reflection": "(,4.3.32767]", + "runtime.aot.System.Reflection.Extensions": "(,4.3.32767]", + "runtime.aot.System.Reflection.Primitives": "(,4.3.32767]", + "runtime.aot.System.Resources.ResourceManager": "(,4.3.32767]", + "runtime.aot.System.Runtime": "(,4.3.32767]", + "runtime.aot.System.Runtime.Handles": "(,4.3.32767]", + "runtime.aot.System.Runtime.InteropServices": "(,4.3.32767]", + "runtime.aot.System.Text.Encoding": "(,4.3.32767]", + "runtime.aot.System.Text.Encoding.Extensions": "(,4.3.32767]", + "runtime.aot.System.Threading.Tasks": "(,4.3.32767]", + "runtime.aot.System.Threading.Timer": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.debian.9-x64.runtime.native.System": "(,4.3.32767]", + "runtime.debian.9-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.debian.9-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.debian.9-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.fedora.27-x64.runtime.native.System": "(,4.3.32767]", + "runtime.fedora.27-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.fedora.27-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.fedora.27-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.fedora.28-x64.runtime.native.System": "(,4.3.32767]", + "runtime.fedora.28-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.fedora.28-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.fedora.28-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.opensuse.42.3-x64.runtime.native.System": "(,4.3.32767]", + "runtime.opensuse.42.3-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.opensuse.42.3-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.opensuse.42.3-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.ubuntu.18.04-x64.runtime.native.System": "(,4.3.32767]", + "runtime.ubuntu.18.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.ubuntu.18.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.ubuntu.18.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.unix.Microsoft.Win32.Primitives": "(,4.3.32767]", + "runtime.unix.System.Console": "(,4.3.32767]", + "runtime.unix.System.Diagnostics.Debug": "(,4.3.32767]", + "runtime.unix.System.IO.FileSystem": "(,4.3.32767]", + "runtime.unix.System.Net.Primitives": "(,4.3.32767]", + "runtime.unix.System.Net.Sockets": "(,4.3.32767]", + "runtime.unix.System.Private.Uri": "(,4.3.32767]", + "runtime.unix.System.Runtime.Extensions": "(,4.3.32767]", + "runtime.win.Microsoft.Win32.Primitives": "(,4.3.32767]", + "runtime.win.System.Console": "(,4.3.32767]", + "runtime.win.System.Diagnostics.Debug": "(,4.3.32767]", + "runtime.win.System.IO.FileSystem": "(,4.3.32767]", + "runtime.win.System.Net.Primitives": "(,4.3.32767]", + "runtime.win.System.Net.Sockets": "(,4.3.32767]", + "runtime.win.System.Runtime.Extensions": "(,4.3.32767]", + "runtime.win10-arm-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", + "runtime.win10-arm64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.win10-x64-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", + "runtime.win10-x86-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", + "runtime.win7-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.win7-x86.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.win7.System.Private.Uri": "(,4.3.32767]", + "runtime.win8-arm.runtime.native.System.IO.Compression": "(,4.3.32767]", + "System.AppContext": "(,4.3.32767]", + "System.Buffers": "(,5.0.32767]", + "System.Collections": "(,4.3.32767]", + "System.Collections.Concurrent": "(,4.3.32767]", + "System.Collections.Immutable": "(,10.0.32767]", + "System.Collections.NonGeneric": "(,4.3.32767]", + "System.Collections.Specialized": "(,4.3.32767]", + "System.ComponentModel": "(,4.3.32767]", + "System.ComponentModel.Annotations": "(,4.3.32767]", + "System.ComponentModel.EventBasedAsync": "(,4.3.32767]", + "System.ComponentModel.Primitives": "(,4.3.32767]", + "System.ComponentModel.TypeConverter": "(,4.3.32767]", + "System.Console": "(,4.3.32767]", + "System.Data.Common": "(,4.3.32767]", + "System.Data.DataSetExtensions": "(,4.4.32767]", + "System.Diagnostics.Contracts": "(,4.3.32767]", + "System.Diagnostics.Debug": "(,4.3.32767]", + "System.Diagnostics.DiagnosticSource": "(,10.0.32767]", + "System.Diagnostics.FileVersionInfo": "(,4.3.32767]", + "System.Diagnostics.Process": "(,4.3.32767]", + "System.Diagnostics.StackTrace": "(,4.3.32767]", + "System.Diagnostics.TextWriterTraceListener": "(,4.3.32767]", + "System.Diagnostics.Tools": "(,4.3.32767]", + "System.Diagnostics.TraceSource": "(,4.3.32767]", + "System.Diagnostics.Tracing": "(,4.3.32767]", + "System.Drawing.Primitives": "(,4.3.32767]", + "System.Dynamic.Runtime": "(,4.3.32767]", + "System.Formats.Asn1": "(,10.0.32767]", + "System.Formats.Tar": "(,10.0.32767]", + "System.Globalization": "(,4.3.32767]", + "System.Globalization.Calendars": "(,4.3.32767]", + "System.Globalization.Extensions": "(,4.3.32767]", + "System.IO": "(,4.3.32767]", + "System.IO.Compression": "(,4.3.32767]", + "System.IO.Compression.ZipFile": "(,4.3.32767]", + "System.IO.FileSystem": "(,4.3.32767]", + "System.IO.FileSystem.AccessControl": "(,4.4.32767]", + "System.IO.FileSystem.DriveInfo": "(,4.3.32767]", + "System.IO.FileSystem.Primitives": "(,4.3.32767]", + "System.IO.FileSystem.Watcher": "(,4.3.32767]", + "System.IO.IsolatedStorage": "(,4.3.32767]", + "System.IO.MemoryMappedFiles": "(,4.3.32767]", + "System.IO.Pipelines": "(,10.0.32767]", + "System.IO.Pipes": "(,4.3.32767]", + "System.IO.Pipes.AccessControl": "(,5.0.32767]", + "System.IO.UnmanagedMemoryStream": "(,4.3.32767]", + "System.Linq": "(,4.3.32767]", + "System.Linq.AsyncEnumerable": "(,10.0.32767]", + "System.Linq.Expressions": "(,4.3.32767]", + "System.Linq.Parallel": "(,4.3.32767]", + "System.Linq.Queryable": "(,4.3.32767]", + "System.Memory": "(,5.0.32767]", + "System.Net.Http": "(,4.3.32767]", + "System.Net.Http.Json": "(,10.0.32767]", + "System.Net.NameResolution": "(,4.3.32767]", + "System.Net.NetworkInformation": "(,4.3.32767]", + "System.Net.Ping": "(,4.3.32767]", + "System.Net.Primitives": "(,4.3.32767]", + "System.Net.Requests": "(,4.3.32767]", + "System.Net.Security": "(,4.3.32767]", + "System.Net.ServerSentEvents": "(,10.0.32767]", + "System.Net.Sockets": "(,4.3.32767]", + "System.Net.WebHeaderCollection": "(,4.3.32767]", + "System.Net.WebSockets": "(,4.3.32767]", + "System.Net.WebSockets.Client": "(,4.3.32767]", + "System.Numerics.Vectors": "(,5.0.32767]", + "System.ObjectModel": "(,4.3.32767]", + "System.Private.DataContractSerialization": "(,4.3.32767]", + "System.Private.Uri": "(,4.3.32767]", + "System.Reflection": "(,4.3.32767]", + "System.Reflection.DispatchProxy": "(,6.0.32767]", + "System.Reflection.Emit": "(,4.7.32767]", + "System.Reflection.Emit.ILGeneration": "(,4.7.32767]", + "System.Reflection.Emit.Lightweight": "(,4.7.32767]", + "System.Reflection.Extensions": "(,4.3.32767]", + "System.Reflection.Metadata": "(,10.0.32767]", + "System.Reflection.Primitives": "(,4.3.32767]", + "System.Reflection.TypeExtensions": "(,4.3.32767]", + "System.Resources.Reader": "(,4.3.32767]", + "System.Resources.ResourceManager": "(,4.3.32767]", + "System.Resources.Writer": "(,4.3.32767]", + "System.Runtime": "(,4.3.32767]", + "System.Runtime.CompilerServices.Unsafe": "(,7.0.32767]", + "System.Runtime.CompilerServices.VisualC": "(,4.3.32767]", + "System.Runtime.Extensions": "(,4.3.32767]", + "System.Runtime.Handles": "(,4.3.32767]", + "System.Runtime.InteropServices": "(,4.3.32767]", + "System.Runtime.InteropServices.RuntimeInformation": "(,4.3.32767]", + "System.Runtime.Loader": "(,4.3.32767]", + "System.Runtime.Numerics": "(,4.3.32767]", + "System.Runtime.Serialization.Formatters": "(,4.3.32767]", + "System.Runtime.Serialization.Json": "(,4.3.32767]", + "System.Runtime.Serialization.Primitives": "(,4.3.32767]", + "System.Runtime.Serialization.Xml": "(,4.3.32767]", + "System.Security.AccessControl": "(,6.0.32767]", + "System.Security.Claims": "(,4.3.32767]", + "System.Security.Cryptography.Algorithms": "(,4.3.32767]", + "System.Security.Cryptography.Cng": "(,5.0.32767]", + "System.Security.Cryptography.Csp": "(,4.3.32767]", + "System.Security.Cryptography.Encoding": "(,4.3.32767]", + "System.Security.Cryptography.OpenSsl": "(,5.0.32767]", + "System.Security.Cryptography.Primitives": "(,4.3.32767]", + "System.Security.Cryptography.X509Certificates": "(,4.3.32767]", + "System.Security.Principal": "(,4.3.32767]", + "System.Security.Principal.Windows": "(,5.0.32767]", + "System.Security.SecureString": "(,4.3.32767]", + "System.Text.Encoding": "(,4.3.32767]", + "System.Text.Encoding.CodePages": "(,10.0.32767]", + "System.Text.Encoding.Extensions": "(,4.3.32767]", + "System.Text.Encodings.Web": "(,10.0.32767]", + "System.Text.Json": "(,10.0.32767]", + "System.Text.RegularExpressions": "(,4.3.32767]", + "System.Threading": "(,4.3.32767]", + "System.Threading.AccessControl": "(,10.0.32767]", + "System.Threading.Channels": "(,10.0.32767]", + "System.Threading.Overlapped": "(,4.3.32767]", + "System.Threading.Tasks": "(,4.3.32767]", + "System.Threading.Tasks.Dataflow": "(,10.0.32767]", + "System.Threading.Tasks.Extensions": "(,5.0.32767]", + "System.Threading.Tasks.Parallel": "(,4.3.32767]", + "System.Threading.Thread": "(,4.3.32767]", + "System.Threading.ThreadPool": "(,4.3.32767]", + "System.Threading.Timer": "(,4.3.32767]", + "System.ValueTuple": "(,4.5.32767]", + "System.Xml.ReaderWriter": "(,4.3.32767]", + "System.Xml.XDocument": "(,4.3.32767]", + "System.Xml.XmlDocument": "(,4.3.32767]", + "System.Xml.XmlSerializer": "(,4.3.32767]", + "System.Xml.XPath": "(,4.3.32767]", + "System.Xml.XPath.XDocument": "(,5.0.32767]" + } + } + } + } +} \ No newline at end of file diff --git a/src/dotnet/QuantEngine.Application/obj/project.nuget.cache b/src/dotnet/QuantEngine.Application/obj/project.nuget.cache new file mode 100644 index 0000000..47c9217 --- /dev/null +++ b/src/dotnet/QuantEngine.Application/obj/project.nuget.cache @@ -0,0 +1,8 @@ +{ + "version": 2, + "dgSpecHash": "8gfOEW9DpEc=", + "success": true, + "projectFilePath": "C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Application\\QuantEngine.Application.csproj", + "expectedPackageFiles": [], + "logs": [] +} \ No newline at end of file diff --git a/src/dotnet/QuantEngine.Core/Class1.cs b/src/dotnet/QuantEngine.Core/Class1.cs new file mode 100644 index 0000000..efa8020 --- /dev/null +++ b/src/dotnet/QuantEngine.Core/Class1.cs @@ -0,0 +1,6 @@ +namespace QuantEngine.Core; + +public class Class1 +{ + +} diff --git a/src/dotnet/QuantEngine.Core/Domain/AntiChasingCalculator.cs b/src/dotnet/QuantEngine.Core/Domain/AntiChasingCalculator.cs new file mode 100644 index 0000000..b1b1c2e --- /dev/null +++ b/src/dotnet/QuantEngine.Core/Domain/AntiChasingCalculator.cs @@ -0,0 +1,43 @@ +using System; + +namespace QuantEngine.Core.Domain +{ + public class AntiChasingResult + { + public string AntiChasingVerdict { get; set; } = "CLEAR"; + public string AntiChasingVelocityStatus { get; set; } = "PASS"; + public double Velocity1dInput { get; set; } + } + + public static class AntiChasingCalculator + { + public static AntiChasingResult ComputeAntiChasing(double velocity1d) + { + string verdict; + string status; + + if (velocity1d >= 3.0) + { + verdict = "BLOCK_CHASE"; + status = "BLOCKED"; + } + else if (velocity1d >= 1.5) + { + verdict = "PULLBACK_WAIT"; + status = "WAIT"; + } + else + { + verdict = "CLEAR"; + status = "PASS"; + } + + return new AntiChasingResult + { + AntiChasingVerdict = verdict, + AntiChasingVelocityStatus = status, + Velocity1dInput = Math.Round(velocity1d, 4) + }; + } + } +} diff --git a/src/dotnet/QuantEngine.Core/Domain/ExitDecisions.cs b/src/dotnet/QuantEngine.Core/Domain/ExitDecisions.cs new file mode 100644 index 0000000..1228686 --- /dev/null +++ b/src/dotnet/QuantEngine.Core/Domain/ExitDecisions.cs @@ -0,0 +1,221 @@ +using System; +using System.Collections.Generic; + +namespace QuantEngine.Core.Domain +{ + public class StopPriceResult + { + public double? StopPrice { get; set; } + public string StopPriceStatus { get; set; } = "PASS"; + public double? Atr20Pct { get; set; } + public double? AtrMultiplier { get; set; } + public List DataMissing { get; set; } = new List(); + } + + public class StopActionLadderResult + { + public string Action { get; set; } = "REVIEW_HUMAN"; + public string Reason { get; set; } = "NO_FORCED_EXIT"; + public double QuantityPct { get; set; } + public double Priority { get; set; } = 7; + } + + public class HeatThresholdResult + { + public double HardBlock { get; set; } + public double Halve { get; set; } + } + + public static class ExitDecisions + { + public static StopPriceResult ComputeStopPriceCore( + double? entryPrice, + double? atr20, + double? currentPrice = null, + double? atrMultiplier = null) + { + var result = new StopPriceResult(); + + if (!entryPrice.HasValue) + { + result.StopPrice = null; + result.StopPriceStatus = "NO_STOP_PRICE"; + result.DataMissing.Add("entry_price"); + return result; + } + + if (!atr20.HasValue && !atrMultiplier.HasValue) + { + result.StopPrice = entryPrice.Value * 0.92; + result.StopPriceStatus = "DATA_MISSING — 하네스 업데이트 필요"; + result.DataMissing.Add("atr20"); + return result; + } + + if (!atrMultiplier.HasValue && (!currentPrice.HasValue || currentPrice.Value == 0)) + { + result.StopPrice = entryPrice.Value * 0.92; + result.StopPriceStatus = "DATA_MISSING — 하네스 업데이트 필요"; + if (!atr20.HasValue) result.DataMissing.Add("atr20"); + if (!currentPrice.HasValue || currentPrice.Value == 0) result.DataMissing.Add("current_price"); + return result; + } + + if (!atrMultiplier.HasValue) + { + double atr20Pct = (atr20!.Value / currentPrice!.Value) * 100; + atrMultiplier = atr20Pct >= 8 ? 2.0 : 1.5; + result.Atr20Pct = atr20Pct; + } + else + { + result.Atr20Pct = (currentPrice.HasValue && currentPrice.Value != 0) + ? (atr20!.Value / currentPrice.Value) * 100 + : (double?)null; + } + + result.AtrMultiplier = atrMultiplier; + result.StopPrice = Math.Max(entryPrice.Value * 0.92, entryPrice.Value - atr20!.Value * atrMultiplier.Value); + result.StopPriceStatus = "PASS"; + + return result; + } + + public static StopActionLadderResult ComputeStopActionLadder(Dictionary context) + { + string GetString(string key) => + context.TryGetValue(key, out var val) ? val?.ToString()?.ToUpper() ?? "" : ""; + + double GetDouble(string key) => + context.TryGetValue(key, out var val) && double.TryParse(val?.ToString(), out var d) ? d : 0.0; + + int GetInt(string key, int def = 0) => + context.TryGetValue(key, out var val) && int.TryParse(val?.ToString(), out var i) ? i : def; + + bool GetBool(string key) => + context.TryGetValue(key, out var val) && bool.TryParse(val?.ToString(), out var b) && b; + + string timingAction = GetString("timingAction"); + if (string.IsNullOrEmpty(timingAction)) timingAction = GetString("timing_action"); + + int rwPartial = GetInt("rw_partial"); + int rwPartialExcludingRw2b = GetInt("rw_partial_excluding_rw2b"); + + string regimePrelim = GetString("REGIME_PRELIM"); + if (string.IsNullOrEmpty(regimePrelim)) regimePrelim = GetString("regime_prelim"); + + double timingExitScore = GetDouble("timingExitScore"); + if (timingExitScore == 0) timingExitScore = GetDouble("timing_exit_score"); + + double profitPct = GetDouble("profitPct"); + if (profitPct == 0) profitPct = GetDouble("profit_pct"); + + int daysToTimeStop = GetInt("daysToTimeStop", 9999); + if (daysToTimeStop == 9999) daysToTimeStop = GetInt("days_to_time_stop", 9999); + + bool trailingStopBreach = GetBool("trailingStopBreach") || GetBool("trailing_stop_breach"); + bool rw2bFastTrack = GetBool("RW2b_5d_rapid_weakness") || GetBool("rw2b_5d_rapid_weakness"); + + if (timingAction == "STOP_OR_TIME_EXIT_READY" || rwPartial >= 4) + { + return new StopActionLadderResult + { + Action = "EXIT_100", + Reason = timingAction == "STOP_OR_TIME_EXIT_READY" ? "STOP_OR_TIME_EXIT_READY" : "RW_EXIT_STRONG", + QuantityPct = 100, + Priority = 1 + }; + } + + if (regimePrelim == "RISK_OFF" || regimePrelim == "RISK_OFF_CANDIDATE") + { + return new StopActionLadderResult + { + Action = "REGIME_TRIM_50", + Reason = regimePrelim == "RISK_OFF" ? "REGIME_RISK_OFF" : "REGIME_RISK_OFF_CANDIDATE", + QuantityPct = 50, + Priority = 2 + }; + } + + if (rw2bFastTrack && rwPartialExcludingRw2b >= 1) + { + return new StopActionLadderResult + { + Action = "TRIM_50", + Reason = "RW2B_FAST_TRACK", + QuantityPct = 50, + Priority = 2.5 + }; + } + + if (rwPartial >= 3 || timingExitScore >= 75) + { + return new StopActionLadderResult + { + Action = "TRIM_70", + Reason = rwPartial >= 3 ? "RW_EXIT" : "TIMING_EXIT_SCORE", + QuantityPct = 70, + Priority = 3 + }; + } + + if (trailingStopBreach || rwPartial >= 2 || (rwPartial >= 1 && timingExitScore >= 50)) + { + return new StopActionLadderResult + { + Action = "TRIM_50", + Reason = trailingStopBreach ? "TRAILING_STOP_BREACH" : "RW_OR_TIMING_EXIT", + QuantityPct = 50, + Priority = 4 + }; + } + + if (profitPct >= 10) + { + return new StopActionLadderResult + { + Action = "TAKE_PROFIT_TIER1", + Reason = "PROFIT_PCT_THRESHOLD", + QuantityPct = 25, + Priority = 5 + }; + } + + if (daysToTimeStop <= 0) + { + return new StopActionLadderResult + { + Action = "TIME_EXIT_100", + Reason = "TIME_STOP_EXPIRED", + QuantityPct = 100, + Priority = 6 + }; + } + + return new StopActionLadderResult(); + } + + public static HeatThresholdResult ComputeDynamicHeatThresholds(string regime) + { + string r = regime?.ToUpper() ?? ""; + if (r.Contains("EVENT_SHOCK")) + { + return new HeatThresholdResult { HardBlock = 5.0, Halve = 3.5 }; + } + if (r.Contains("RISK_OFF")) + { + return new HeatThresholdResult { HardBlock = 7.0, Halve = 5.0 }; + } + if (r.Contains("SECULAR_LEADER") && r.Contains("RISK_ON")) + { + return new HeatThresholdResult { HardBlock = 13.0, Halve = 9.0 }; + } + if (r.Contains("RISK_ON")) + { + return new HeatThresholdResult { HardBlock = 12.0, Halve = 8.5 }; + } + return new HeatThresholdResult { HardBlock = 10.0, Halve = 7.0 }; + } + } +} diff --git a/src/dotnet/QuantEngine.Core/Domain/KrxTickNormalizer.cs b/src/dotnet/QuantEngine.Core/Domain/KrxTickNormalizer.cs new file mode 100644 index 0000000..ad44b8f --- /dev/null +++ b/src/dotnet/QuantEngine.Core/Domain/KrxTickNormalizer.cs @@ -0,0 +1,49 @@ +using System; + +namespace QuantEngine.Core.Domain +{ + public static class KrxTickNormalizer + { + private static readonly (double Limit, int Tick)[] KrxTickTable = new (double, int)[] + { + (2000, 1), + (5000, 5), + (20000, 10), + (50000, 50), + (200000, 100), + (500000, 500), + (double.PositiveInfinity, 1000) + }; + + public static int GetTickUnit(double price) + { + foreach (var (limit, tick) in KrxTickTable) + { + if (price < limit) + { + return tick; + } + } + return 1000; + } + + public static double NormalizeTick(double price) + { + if (price <= 0) return 0; + int tick = GetTickUnit(price); + + // Round to nearest tick unit + double remainder = price % tick; + if (remainder == 0) return price; + + if (remainder >= tick / 2.0) + { + return price + (tick - remainder); + } + else + { + return price - remainder; + } + } + } +} diff --git a/src/dotnet/QuantEngine.Core/Domain/ProfitLockCalculator.cs b/src/dotnet/QuantEngine.Core/Domain/ProfitLockCalculator.cs new file mode 100644 index 0000000..b7520e9 --- /dev/null +++ b/src/dotnet/QuantEngine.Core/Domain/ProfitLockCalculator.cs @@ -0,0 +1,66 @@ +using System; + +namespace QuantEngine.Core.Domain +{ + public class ProfitLockResult + { + public string RatchetStage { get; set; } = "NORMAL"; + public double? AutoTrailingStop { get; set; } + public string TpLadderAction { get; set; } = "적용 안함"; + public bool ApexSuperActive { get; set; } + } + + public static class ProfitLockCalculator + { + public static string ClassifyProfitLockStage(double profitPct) + { + if (profitPct >= 60) return "APEX_SUPER"; + if (profitPct >= 40) return "APEX_TRAILING"; + if (profitPct >= 30) return "PROFIT_LOCK_30"; + if (profitPct >= 20) return "PROFIT_LOCK_20"; + if (profitPct >= 10) return "PROFIT_LOCK_10"; + if (profitPct >= 0) return "BREAKEVEN_RATCHET"; + return "NORMAL"; + } + + public static ProfitLockResult ComputeTrailingStop( + double profitPct, + double highestClose, + double atr20, + double? ratchetStop, + double averageCost) + { + string stage = ClassifyProfitLockStage(profitPct); + double baseStop = ratchetStop ?? averageCost; + double? trailingStop = null; + string tpAction = "적용 안함"; + + if (stage == "APEX_SUPER") + { + double raw = highestClose - 1.2 * atr20; + trailingStop = KrxTickNormalizer.NormalizeTick(Math.Max(baseStop, raw)); + tpAction = "강제 10% 익절 권고"; + } + else if (stage == "APEX_TRAILING") + { + double raw = highestClose - 1.5 * atr20; + trailingStop = KrxTickNormalizer.NormalizeTick(Math.Max(baseStop, raw)); + tpAction = "부분익절 검토"; + } + else if (stage == "PROFIT_LOCK_30" || stage == "PROFIT_LOCK_20") + { + double raw = highestClose - 2.0 * atr20; + trailingStop = KrxTickNormalizer.NormalizeTick(Math.Max(baseStop, raw)); + tpAction = "래칫 유지"; + } + + return new ProfitLockResult + { + RatchetStage = stage, + AutoTrailingStop = trailingStop, + TpLadderAction = tpAction, + ApexSuperActive = stage == "APEX_SUPER" + }; + } + } +} diff --git a/src/dotnet/QuantEngine.Core/Domain/PullbackTriggerCalculator.cs b/src/dotnet/QuantEngine.Core/Domain/PullbackTriggerCalculator.cs new file mode 100644 index 0000000..14bbcc7 --- /dev/null +++ b/src/dotnet/QuantEngine.Core/Domain/PullbackTriggerCalculator.cs @@ -0,0 +1,42 @@ +using System; + +namespace QuantEngine.Core.Domain +{ + public class PullbackTriggerResult + { + public string PullbackEntryVerdict { get; set; } = "ABOVE_PULLBACK_ZONE"; + public string PullbackState { get; set; } = "BLOCKED"; + public double PullbackEntryTriggerPrice { get; set; } + public double PullbackUpperBand { get; set; } + } + + public static class PullbackTriggerCalculator + { + public static PullbackTriggerResult ComputePullbackTrigger(double close, double ma20, double atr20) + { + double triggerPrice = KrxTickNormalizer.NormalizeTick(ma20 - 0.5 * atr20); + double upperBand = ma20 * 1.03; + string verdict; + string state; + + if (close <= upperBand) + { + verdict = "PULLBACK_ZONE"; + state = "PASS"; + } + else + { + verdict = "ABOVE_PULLBACK_ZONE"; + state = "BLOCKED"; + } + + return new PullbackTriggerResult + { + PullbackEntryVerdict = verdict, + PullbackState = state, + PullbackEntryTriggerPrice = triggerPrice, + PullbackUpperBand = KrxTickNormalizer.NormalizeTick(upperBand) + }; + } + } +} diff --git a/src/dotnet/QuantEngine.Core/Domain/SellPriceSanityChecker.cs b/src/dotnet/QuantEngine.Core/Domain/SellPriceSanityChecker.cs new file mode 100644 index 0000000..8201c1f --- /dev/null +++ b/src/dotnet/QuantEngine.Core/Domain/SellPriceSanityChecker.cs @@ -0,0 +1,63 @@ +using System; +using System.Collections.Generic; + +namespace QuantEngine.Core.Domain +{ + public class SellPriceSanityResult + { + public string SellPriceSanityStatus { get; set; } = "PASS"; + public List SellPriceSanityIssues { get; set; } = new List(); + public bool HtsAllowed { get; set; } = true; + public bool ShadowLedger { get; set; } + public string Ticker { get; set; } = string.Empty; + } + + public static class SellPriceSanityChecker + { + public static SellPriceSanityResult CheckSellPriceSanity( + double sellLimitPrice, + double? stopLossPrice, + double prevClose, + string ticker = "") + { + var issues = new List(); + string status = "PASS"; + + if (stopLossPrice.HasValue && sellLimitPrice < stopLossPrice.Value) + { + issues.Add($"INVALID_PRICE_INVERSION: sell={sellLimitPrice:N0} < stop={stopLossPrice.Value:N0}"); + status = "INVALID_PRICE_INVERSION"; + } + + double upperLimit = prevClose * 1.30; + if (sellLimitPrice > upperLimit) + { + issues.Add($"INVALID_UNREALISTIC_PRICE: sell={sellLimitPrice:N0} > prev_close*1.30={upperLimit:N0}"); + if (status == "PASS") + { + status = "INVALID_UNREALISTIC_PRICE"; + } + } + + int tickUnit = KrxTickNormalizer.GetTickUnit(sellLimitPrice); + if (sellLimitPrice % tickUnit != 0) + { + double corrected = KrxTickNormalizer.NormalizeTick(sellLimitPrice); + issues.Add($"INVALID_TICK: sell={sellLimitPrice:N0} 호가단위={tickUnit}원 → 정규화={corrected:N0}"); + if (status == "PASS") + { + status = "INVALID_TICK"; + } + } + + return new SellPriceSanityResult + { + SellPriceSanityStatus = status, + SellPriceSanityIssues = issues, + HtsAllowed = status == "PASS", + ShadowLedger = status != "PASS", + Ticker = ticker + }; + } + } +} diff --git a/src/dotnet/QuantEngine.Core/Interfaces/IKisApiClient.cs b/src/dotnet/QuantEngine.Core/Interfaces/IKisApiClient.cs new file mode 100644 index 0000000..971a10f --- /dev/null +++ b/src/dotnet/QuantEngine.Core/Interfaces/IKisApiClient.cs @@ -0,0 +1,14 @@ +using System.Collections.Generic; +using System.Threading.Tasks; + +namespace QuantEngine.Core.Interfaces +{ + public interface IKisApiClient + { + Task GetCurrentPriceAsync(string code); + Task GetAskingPrice10LevelAsync(string code); + Task GetDailyShortSaleAsync(string code, string startDate, string endDate); + Task GetDailyItemChartPriceAsync(string code, string startDate, string endDate, string period = "D"); + Task GetInvestorTrendAsync(string code); + } +} diff --git a/src/dotnet/QuantEngine.Core/Interfaces/INaverFinanceScraper.cs b/src/dotnet/QuantEngine.Core/Interfaces/INaverFinanceScraper.cs new file mode 100644 index 0000000..5675bc7 --- /dev/null +++ b/src/dotnet/QuantEngine.Core/Interfaces/INaverFinanceScraper.cs @@ -0,0 +1,11 @@ +using System.Collections.Generic; +using System.Threading.Tasks; + +namespace QuantEngine.Core.Interfaces +{ + public interface INaverFinanceScraper + { + Task FetchPriceHistoryAsync(string code, int pages = 3); + Task FetchForeignInstitutionFlowAsync(string code, int pages = 2); + } +} diff --git a/src/dotnet/QuantEngine.Core/Interfaces/IWorkspaceRepository.cs b/src/dotnet/QuantEngine.Core/Interfaces/IWorkspaceRepository.cs new file mode 100644 index 0000000..021acc2 --- /dev/null +++ b/src/dotnet/QuantEngine.Core/Interfaces/IWorkspaceRepository.cs @@ -0,0 +1,31 @@ +using System.Collections.Generic; +using System.Threading.Tasks; +using QuantEngine.Core.Models; + +namespace QuantEngine.Core.Interfaces +{ + public interface IWorkspaceRepository + { + // Settings + Task> GetSettingsAsync(); + Task GetSettingByKeyAsync(string key); + Task UpsertSettingAsync(Setting setting); + Task DeleteSettingAsync(string key); + + // AccountSnapshot + Task> GetAccountSnapshotsAsync(); + Task InsertAccountSnapshotsAsync(IEnumerable snapshots); + Task ClearAccountSnapshotsAsync(); + + // WorkspaceApproval + Task> GetApprovalsAsync(); + Task GetApprovalAsync(string domain, string targetRef); + Task UpsertApprovalAsync(WorkspaceApproval approval); + + // WorkspaceLock + Task> GetLocksAsync(); + Task GetLockAsync(string domain, string targetRef); + Task AcquireLockAsync(WorkspaceLock @lock); + Task ReleaseLockAsync(string domain, string targetRef); + } +} diff --git a/src/dotnet/QuantEngine.Core/Interfaces/IYahooFinanceClient.cs b/src/dotnet/QuantEngine.Core/Interfaces/IYahooFinanceClient.cs new file mode 100644 index 0000000..60e905e --- /dev/null +++ b/src/dotnet/QuantEngine.Core/Interfaces/IYahooFinanceClient.cs @@ -0,0 +1,9 @@ +using System.Threading.Tasks; + +namespace QuantEngine.Core.Interfaces +{ + public interface IYahooFinanceClient + { + Task FetchHistoricalDataAsync(string symbol, string range = "4mo", string interval = "1d"); + } +} diff --git a/src/dotnet/QuantEngine.Core/Models/AccountSnapshot.cs b/src/dotnet/QuantEngine.Core/Models/AccountSnapshot.cs new file mode 100644 index 0000000..d6e8f8d --- /dev/null +++ b/src/dotnet/QuantEngine.Core/Models/AccountSnapshot.cs @@ -0,0 +1,18 @@ +using System; + +namespace QuantEngine.Core.Models +{ + public class AccountSnapshot + { + public int Ordinal { get; set; } + public string RowJson { get; set; } = string.Empty; + public string CapturedAt { get; set; } = string.Empty; + public string Account { get; set; } = string.Empty; + public string AccountType { get; set; } = string.Empty; + public string Ticker { get; set; } = string.Empty; + public string Name { get; set; } = string.Empty; + public string ParseStatus { get; set; } = string.Empty; + public string UserConfirmed { get; set; } = string.Empty; + public string UpdatedAt { get; set; } = string.Empty; + } +} diff --git a/src/dotnet/QuantEngine.Core/Models/CollectionRun.cs b/src/dotnet/QuantEngine.Core/Models/CollectionRun.cs new file mode 100644 index 0000000..38e8976 --- /dev/null +++ b/src/dotnet/QuantEngine.Core/Models/CollectionRun.cs @@ -0,0 +1,18 @@ +using System; + +namespace QuantEngine.Core.Models +{ + public class CollectionRun + { + public string RunId { get; set; } = string.Empty; + public string CollectorName { get; set; } = string.Empty; + public string StartedAt { get; set; } = string.Empty; + public string? FinishedAt { get; set; } + public string Status { get; set; } = string.Empty; + public string? InputSource { get; set; } + public string? OutputJsonPath { get; set; } + public string? OutputDbPath { get; set; } + public string? Notes { get; set; } + public DateTime CreatedAt { get; set; } + } +} diff --git a/src/dotnet/QuantEngine.Core/Models/CollectionSnapshot.cs b/src/dotnet/QuantEngine.Core/Models/CollectionSnapshot.cs new file mode 100644 index 0000000..df5bc86 --- /dev/null +++ b/src/dotnet/QuantEngine.Core/Models/CollectionSnapshot.cs @@ -0,0 +1,19 @@ +using System; + +namespace QuantEngine.Core.Models +{ + public class CollectionSnapshot + { + public string RunId { get; set; } = string.Empty; + public string DatasetName { get; set; } = string.Empty; + public string Ticker { get; set; } = string.Empty; + public string? Name { get; set; } + public string? Sector { get; set; } + public string? AsOfDate { get; set; } + public string SourcePriority { get; set; } = string.Empty; + public string SourceStatus { get; set; } = string.Empty; + public string PayloadJson { get; set; } = string.Empty; + public string ProvenanceJson { get; set; } = string.Empty; + public DateTime CreatedAt { get; set; } + } +} diff --git a/src/dotnet/QuantEngine.Core/Models/CollectionSourceError.cs b/src/dotnet/QuantEngine.Core/Models/CollectionSourceError.cs new file mode 100644 index 0000000..c91d836 --- /dev/null +++ b/src/dotnet/QuantEngine.Core/Models/CollectionSourceError.cs @@ -0,0 +1,15 @@ +using System; + +namespace QuantEngine.Core.Models +{ + public class CollectionSourceError + { + public string RunId { get; set; } = string.Empty; + public string? Ticker { get; set; } + public string SourceName { get; set; } = string.Empty; + public string ErrorKind { get; set; } = string.Empty; + public string ErrorMessage { get; set; } = string.Empty; + public string? PayloadJson { get; set; } + public DateTime CreatedAt { get; set; } + } +} diff --git a/src/dotnet/QuantEngine.Core/Models/Setting.cs b/src/dotnet/QuantEngine.Core/Models/Setting.cs new file mode 100644 index 0000000..7f21a0c --- /dev/null +++ b/src/dotnet/QuantEngine.Core/Models/Setting.cs @@ -0,0 +1,13 @@ +using System; + +namespace QuantEngine.Core.Models +{ + public class Setting + { + public int Ordinal { get; set; } + public string Key { get; set; } = string.Empty; + public string ValueJson { get; set; } = string.Empty; + public string Note { get; set; } = string.Empty; + public string UpdatedAt { get; set; } = string.Empty; + } +} diff --git a/src/dotnet/QuantEngine.Core/Models/WorkspaceApproval.cs b/src/dotnet/QuantEngine.Core/Models/WorkspaceApproval.cs new file mode 100644 index 0000000..80de50e --- /dev/null +++ b/src/dotnet/QuantEngine.Core/Models/WorkspaceApproval.cs @@ -0,0 +1,15 @@ +using System; + +namespace QuantEngine.Core.Models +{ + public class WorkspaceApproval + { + public string Domain { get; set; } = string.Empty; + public string TargetRef { get; set; } = "*"; + public string Status { get; set; } = string.Empty; + public string ApprovedBy { get; set; } = string.Empty; + public string ApprovedAt { get; set; } = string.Empty; + public string Note { get; set; } = string.Empty; + public string UpdatedAt { get; set; } = string.Empty; + } +} diff --git a/src/dotnet/QuantEngine.Core/Models/WorkspaceChangeLog.cs b/src/dotnet/QuantEngine.Core/Models/WorkspaceChangeLog.cs new file mode 100644 index 0000000..3218a77 --- /dev/null +++ b/src/dotnet/QuantEngine.Core/Models/WorkspaceChangeLog.cs @@ -0,0 +1,17 @@ +using System; + +namespace QuantEngine.Core.Models +{ + public class WorkspaceChangeLog + { + public int Id { get; set; } + public string Domain { get; set; } = string.Empty; + public string Action { get; set; } = string.Empty; + public string TargetRef { get; set; } = string.Empty; + public string Actor { get; set; } = "system"; + public string Note { get; set; } = string.Empty; + public string BeforeJson { get; set; } = "null"; + public string AfterJson { get; set; } = "null"; + public string CreatedAt { get; set; } = string.Empty; + } +} diff --git a/src/dotnet/QuantEngine.Core/Models/WorkspaceLock.cs b/src/dotnet/QuantEngine.Core/Models/WorkspaceLock.cs new file mode 100644 index 0000000..165d5b2 --- /dev/null +++ b/src/dotnet/QuantEngine.Core/Models/WorkspaceLock.cs @@ -0,0 +1,13 @@ +using System; + +namespace QuantEngine.Core.Models +{ + public class WorkspaceLock + { + public string Domain { get; set; } = string.Empty; + public string TargetRef { get; set; } = string.Empty; + public string LockedBy { get; set; } = string.Empty; + public string Reason { get; set; } = string.Empty; + public string LockedAt { get; set; } = string.Empty; + } +} diff --git a/src/dotnet/QuantEngine.Core/QuantEngine.Core.csproj b/src/dotnet/QuantEngine.Core/QuantEngine.Core.csproj new file mode 100644 index 0000000..b760144 --- /dev/null +++ b/src/dotnet/QuantEngine.Core/QuantEngine.Core.csproj @@ -0,0 +1,9 @@ + + + + net10.0 + enable + enable + + + diff --git a/src/dotnet/QuantEngine.Core/bin/Debug/net10.0/QuantEngine.Core.deps.json b/src/dotnet/QuantEngine.Core/bin/Debug/net10.0/QuantEngine.Core.deps.json new file mode 100644 index 0000000..e274862 --- /dev/null +++ b/src/dotnet/QuantEngine.Core/bin/Debug/net10.0/QuantEngine.Core.deps.json @@ -0,0 +1,23 @@ +{ + "runtimeTarget": { + "name": ".NETCoreApp,Version=v10.0", + "signature": "" + }, + "compilationOptions": {}, + "targets": { + ".NETCoreApp,Version=v10.0": { + "QuantEngine.Core/1.0.0": { + "runtime": { + "QuantEngine.Core.dll": {} + } + } + } + }, + "libraries": { + "QuantEngine.Core/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + } + } +} \ No newline at end of file diff --git a/src/dotnet/QuantEngine.Core/bin/Debug/net10.0/QuantEngine.Core.dll b/src/dotnet/QuantEngine.Core/bin/Debug/net10.0/QuantEngine.Core.dll new file mode 100644 index 0000000..6423906 Binary files /dev/null and b/src/dotnet/QuantEngine.Core/bin/Debug/net10.0/QuantEngine.Core.dll differ diff --git a/src/dotnet/QuantEngine.Core/bin/Debug/net10.0/QuantEngine.Core.pdb b/src/dotnet/QuantEngine.Core/bin/Debug/net10.0/QuantEngine.Core.pdb new file mode 100644 index 0000000..72dafcd Binary files /dev/null and b/src/dotnet/QuantEngine.Core/bin/Debug/net10.0/QuantEngine.Core.pdb differ diff --git a/src/dotnet/QuantEngine.Core/obj/Debug/net10.0/.NETCoreApp,Version=v10.0.AssemblyAttributes.cs b/src/dotnet/QuantEngine.Core/obj/Debug/net10.0/.NETCoreApp,Version=v10.0.AssemblyAttributes.cs new file mode 100644 index 0000000..925b135 --- /dev/null +++ b/src/dotnet/QuantEngine.Core/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/src/dotnet/QuantEngine.Core/obj/Debug/net10.0/QuantEngine.Core.AssemblyInfo.cs b/src/dotnet/QuantEngine.Core/obj/Debug/net10.0/QuantEngine.Core.AssemblyInfo.cs new file mode 100644 index 0000000..69227c2 --- /dev/null +++ b/src/dotnet/QuantEngine.Core/obj/Debug/net10.0/QuantEngine.Core.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("QuantEngine.Core")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+9abb8d3bc31eb38d5c27cbd3ca734da4eeec9609")] +[assembly: System.Reflection.AssemblyProductAttribute("QuantEngine.Core")] +[assembly: System.Reflection.AssemblyTitleAttribute("QuantEngine.Core")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] + +// MSBuild WriteCodeFragment 클래스에서 생성되었습니다. + diff --git a/src/dotnet/QuantEngine.Core/obj/Debug/net10.0/QuantEngine.Core.AssemblyInfoInputs.cache b/src/dotnet/QuantEngine.Core/obj/Debug/net10.0/QuantEngine.Core.AssemblyInfoInputs.cache new file mode 100644 index 0000000..eb83b88 --- /dev/null +++ b/src/dotnet/QuantEngine.Core/obj/Debug/net10.0/QuantEngine.Core.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +ca1af8bf50c02703b0e1d3aaa0a84969ccff47847b63e1312eec76ac0cc883ff diff --git a/src/dotnet/QuantEngine.Core/obj/Debug/net10.0/QuantEngine.Core.GeneratedMSBuildEditorConfig.editorconfig b/src/dotnet/QuantEngine.Core/obj/Debug/net10.0/QuantEngine.Core.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..db01037 --- /dev/null +++ b/src/dotnet/QuantEngine.Core/obj/Debug/net10.0/QuantEngine.Core.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 = QuantEngine.Core +build_property.ProjectDir = C:\Temp\data_feed\src\dotnet\QuantEngine.Core\ +build_property.EnableComHosting = +build_property.EnableGeneratedComInterfaceComImportInterop = +build_property.EffectiveAnalysisLevelStyle = 10.0 +build_property.EnableCodeStyleSeverity = diff --git a/src/dotnet/QuantEngine.Core/obj/Debug/net10.0/QuantEngine.Core.GlobalUsings.g.cs b/src/dotnet/QuantEngine.Core/obj/Debug/net10.0/QuantEngine.Core.GlobalUsings.g.cs new file mode 100644 index 0000000..d12bcbc --- /dev/null +++ b/src/dotnet/QuantEngine.Core/obj/Debug/net10.0/QuantEngine.Core.GlobalUsings.g.cs @@ -0,0 +1,8 @@ +// +global using System; +global using System.Collections.Generic; +global using System.IO; +global using System.Linq; +global using System.Net.Http; +global using System.Threading; +global using System.Threading.Tasks; diff --git a/src/dotnet/QuantEngine.Core/obj/Debug/net10.0/QuantEngine.Core.assets.cache b/src/dotnet/QuantEngine.Core/obj/Debug/net10.0/QuantEngine.Core.assets.cache new file mode 100644 index 0000000..214edec Binary files /dev/null and b/src/dotnet/QuantEngine.Core/obj/Debug/net10.0/QuantEngine.Core.assets.cache differ diff --git a/src/dotnet/QuantEngine.Core/obj/Debug/net10.0/QuantEngine.Core.csproj.CoreCompileInputs.cache b/src/dotnet/QuantEngine.Core/obj/Debug/net10.0/QuantEngine.Core.csproj.CoreCompileInputs.cache new file mode 100644 index 0000000..a5901a8 --- /dev/null +++ b/src/dotnet/QuantEngine.Core/obj/Debug/net10.0/QuantEngine.Core.csproj.CoreCompileInputs.cache @@ -0,0 +1 @@ +1d4729b2c00a78c9f41964249ce49a8c7cd8ac8d66a2dde519827dd3b7e693fd diff --git a/src/dotnet/QuantEngine.Core/obj/Debug/net10.0/QuantEngine.Core.csproj.FileListAbsolute.txt b/src/dotnet/QuantEngine.Core/obj/Debug/net10.0/QuantEngine.Core.csproj.FileListAbsolute.txt new file mode 100644 index 0000000..2fe34be --- /dev/null +++ b/src/dotnet/QuantEngine.Core/obj/Debug/net10.0/QuantEngine.Core.csproj.FileListAbsolute.txt @@ -0,0 +1,11 @@ +C:\Temp\data_feed\src\dotnet\QuantEngine.Core\bin\Debug\net10.0\QuantEngine.Core.deps.json +C:\Temp\data_feed\src\dotnet\QuantEngine.Core\bin\Debug\net10.0\QuantEngine.Core.dll +C:\Temp\data_feed\src\dotnet\QuantEngine.Core\bin\Debug\net10.0\QuantEngine.Core.pdb +C:\Temp\data_feed\src\dotnet\QuantEngine.Core\obj\Debug\net10.0\QuantEngine.Core.GeneratedMSBuildEditorConfig.editorconfig +C:\Temp\data_feed\src\dotnet\QuantEngine.Core\obj\Debug\net10.0\QuantEngine.Core.AssemblyInfoInputs.cache +C:\Temp\data_feed\src\dotnet\QuantEngine.Core\obj\Debug\net10.0\QuantEngine.Core.AssemblyInfo.cs +C:\Temp\data_feed\src\dotnet\QuantEngine.Core\obj\Debug\net10.0\QuantEngine.Core.csproj.CoreCompileInputs.cache +C:\Temp\data_feed\src\dotnet\QuantEngine.Core\obj\Debug\net10.0\QuantEngine.Core.dll +C:\Temp\data_feed\src\dotnet\QuantEngine.Core\obj\Debug\net10.0\refint\QuantEngine.Core.dll +C:\Temp\data_feed\src\dotnet\QuantEngine.Core\obj\Debug\net10.0\QuantEngine.Core.pdb +C:\Temp\data_feed\src\dotnet\QuantEngine.Core\obj\Debug\net10.0\ref\QuantEngine.Core.dll diff --git a/src/dotnet/QuantEngine.Core/obj/Debug/net10.0/QuantEngine.Core.dll b/src/dotnet/QuantEngine.Core/obj/Debug/net10.0/QuantEngine.Core.dll new file mode 100644 index 0000000..6423906 Binary files /dev/null and b/src/dotnet/QuantEngine.Core/obj/Debug/net10.0/QuantEngine.Core.dll differ diff --git a/src/dotnet/QuantEngine.Core/obj/Debug/net10.0/QuantEngine.Core.pdb b/src/dotnet/QuantEngine.Core/obj/Debug/net10.0/QuantEngine.Core.pdb new file mode 100644 index 0000000..72dafcd Binary files /dev/null and b/src/dotnet/QuantEngine.Core/obj/Debug/net10.0/QuantEngine.Core.pdb differ diff --git a/src/dotnet/QuantEngine.Core/obj/Debug/net10.0/ref/QuantEngine.Core.dll b/src/dotnet/QuantEngine.Core/obj/Debug/net10.0/ref/QuantEngine.Core.dll new file mode 100644 index 0000000..450de7c Binary files /dev/null and b/src/dotnet/QuantEngine.Core/obj/Debug/net10.0/ref/QuantEngine.Core.dll differ diff --git a/src/dotnet/QuantEngine.Core/obj/Debug/net10.0/refint/QuantEngine.Core.dll b/src/dotnet/QuantEngine.Core/obj/Debug/net10.0/refint/QuantEngine.Core.dll new file mode 100644 index 0000000..450de7c Binary files /dev/null and b/src/dotnet/QuantEngine.Core/obj/Debug/net10.0/refint/QuantEngine.Core.dll differ diff --git a/src/dotnet/QuantEngine.Core/obj/QuantEngine.Core.csproj.nuget.dgspec.json b/src/dotnet/QuantEngine.Core/obj/QuantEngine.Core.csproj.nuget.dgspec.json new file mode 100644 index 0000000..ba6943e --- /dev/null +++ b/src/dotnet/QuantEngine.Core/obj/QuantEngine.Core.csproj.nuget.dgspec.json @@ -0,0 +1,350 @@ +{ + "format": 1, + "restore": { + "C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Core\\QuantEngine.Core.csproj": {} + }, + "projects": { + "C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Core\\QuantEngine.Core.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Core\\QuantEngine.Core.csproj", + "projectName": "QuantEngine.Core", + "projectPath": "C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Core\\QuantEngine.Core.csproj", + "packagesPath": "C:\\Users\\kjh20\\.nuget\\packages\\", + "outputPath": "C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Core\\obj\\", + "projectStyle": "PackageReference", + "fallbackFolders": [ + "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages", + "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder" + ], + "configFilePaths": [ + "C:\\Users\\kjh20\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "net10.0" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "C:\\Program Files\\dotnet\\library-packs": {}, + "https://api.nuget.org/v3/index.json": {}, + "https://nuget.telerik.com/v3/index.json": {} + }, + "frameworks": { + "net10.0": { + "targetAlias": "net10.0", + "projectReferences": {} + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + }, + "restoreAuditProperties": { + "enableAudit": "true", + "auditLevel": "low", + "auditMode": "all" + }, + "SdkAnalysisLevel": "10.0.100" + }, + "frameworks": { + "net10.0": { + "targetAlias": "net10.0", + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\10.0.100/PortableRuntimeIdentifierGraph.json", + "packagesToPrune": { + "Microsoft.CSharp": "(,4.7.32767]", + "Microsoft.VisualBasic": "(,10.4.32767]", + "Microsoft.Win32.Primitives": "(,4.3.32767]", + "Microsoft.Win32.Registry": "(,5.0.32767]", + "runtime.any.System.Collections": "(,4.3.32767]", + "runtime.any.System.Diagnostics.Tools": "(,4.3.32767]", + "runtime.any.System.Diagnostics.Tracing": "(,4.3.32767]", + "runtime.any.System.Globalization": "(,4.3.32767]", + "runtime.any.System.Globalization.Calendars": "(,4.3.32767]", + "runtime.any.System.IO": "(,4.3.32767]", + "runtime.any.System.Reflection": "(,4.3.32767]", + "runtime.any.System.Reflection.Extensions": "(,4.3.32767]", + "runtime.any.System.Reflection.Primitives": "(,4.3.32767]", + "runtime.any.System.Resources.ResourceManager": "(,4.3.32767]", + "runtime.any.System.Runtime": "(,4.3.32767]", + "runtime.any.System.Runtime.Handles": "(,4.3.32767]", + "runtime.any.System.Runtime.InteropServices": "(,4.3.32767]", + "runtime.any.System.Text.Encoding": "(,4.3.32767]", + "runtime.any.System.Text.Encoding.Extensions": "(,4.3.32767]", + "runtime.any.System.Threading.Tasks": "(,4.3.32767]", + "runtime.any.System.Threading.Timer": "(,4.3.32767]", + "runtime.aot.System.Collections": "(,4.3.32767]", + "runtime.aot.System.Diagnostics.Tools": "(,4.3.32767]", + "runtime.aot.System.Diagnostics.Tracing": "(,4.3.32767]", + "runtime.aot.System.Globalization": "(,4.3.32767]", + "runtime.aot.System.Globalization.Calendars": "(,4.3.32767]", + "runtime.aot.System.IO": "(,4.3.32767]", + "runtime.aot.System.Reflection": "(,4.3.32767]", + "runtime.aot.System.Reflection.Extensions": "(,4.3.32767]", + "runtime.aot.System.Reflection.Primitives": "(,4.3.32767]", + "runtime.aot.System.Resources.ResourceManager": "(,4.3.32767]", + "runtime.aot.System.Runtime": "(,4.3.32767]", + "runtime.aot.System.Runtime.Handles": "(,4.3.32767]", + "runtime.aot.System.Runtime.InteropServices": "(,4.3.32767]", + "runtime.aot.System.Text.Encoding": "(,4.3.32767]", + "runtime.aot.System.Text.Encoding.Extensions": "(,4.3.32767]", + "runtime.aot.System.Threading.Tasks": "(,4.3.32767]", + "runtime.aot.System.Threading.Timer": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.debian.9-x64.runtime.native.System": "(,4.3.32767]", + "runtime.debian.9-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.debian.9-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.debian.9-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.fedora.27-x64.runtime.native.System": "(,4.3.32767]", + "runtime.fedora.27-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.fedora.27-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.fedora.27-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.fedora.28-x64.runtime.native.System": "(,4.3.32767]", + "runtime.fedora.28-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.fedora.28-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.fedora.28-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.opensuse.42.3-x64.runtime.native.System": "(,4.3.32767]", + "runtime.opensuse.42.3-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.opensuse.42.3-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.opensuse.42.3-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.ubuntu.18.04-x64.runtime.native.System": "(,4.3.32767]", + "runtime.ubuntu.18.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.ubuntu.18.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.ubuntu.18.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.unix.Microsoft.Win32.Primitives": "(,4.3.32767]", + "runtime.unix.System.Console": "(,4.3.32767]", + "runtime.unix.System.Diagnostics.Debug": "(,4.3.32767]", + "runtime.unix.System.IO.FileSystem": "(,4.3.32767]", + "runtime.unix.System.Net.Primitives": "(,4.3.32767]", + "runtime.unix.System.Net.Sockets": "(,4.3.32767]", + "runtime.unix.System.Private.Uri": "(,4.3.32767]", + "runtime.unix.System.Runtime.Extensions": "(,4.3.32767]", + "runtime.win.Microsoft.Win32.Primitives": "(,4.3.32767]", + "runtime.win.System.Console": "(,4.3.32767]", + "runtime.win.System.Diagnostics.Debug": "(,4.3.32767]", + "runtime.win.System.IO.FileSystem": "(,4.3.32767]", + "runtime.win.System.Net.Primitives": "(,4.3.32767]", + "runtime.win.System.Net.Sockets": "(,4.3.32767]", + "runtime.win.System.Runtime.Extensions": "(,4.3.32767]", + "runtime.win10-arm-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", + "runtime.win10-arm64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.win10-x64-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", + "runtime.win10-x86-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", + "runtime.win7-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.win7-x86.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.win7.System.Private.Uri": "(,4.3.32767]", + "runtime.win8-arm.runtime.native.System.IO.Compression": "(,4.3.32767]", + "System.AppContext": "(,4.3.32767]", + "System.Buffers": "(,5.0.32767]", + "System.Collections": "(,4.3.32767]", + "System.Collections.Concurrent": "(,4.3.32767]", + "System.Collections.Immutable": "(,10.0.32767]", + "System.Collections.NonGeneric": "(,4.3.32767]", + "System.Collections.Specialized": "(,4.3.32767]", + "System.ComponentModel": "(,4.3.32767]", + "System.ComponentModel.Annotations": "(,4.3.32767]", + "System.ComponentModel.EventBasedAsync": "(,4.3.32767]", + "System.ComponentModel.Primitives": "(,4.3.32767]", + "System.ComponentModel.TypeConverter": "(,4.3.32767]", + "System.Console": "(,4.3.32767]", + "System.Data.Common": "(,4.3.32767]", + "System.Data.DataSetExtensions": "(,4.4.32767]", + "System.Diagnostics.Contracts": "(,4.3.32767]", + "System.Diagnostics.Debug": "(,4.3.32767]", + "System.Diagnostics.DiagnosticSource": "(,10.0.32767]", + "System.Diagnostics.FileVersionInfo": "(,4.3.32767]", + "System.Diagnostics.Process": "(,4.3.32767]", + "System.Diagnostics.StackTrace": "(,4.3.32767]", + "System.Diagnostics.TextWriterTraceListener": "(,4.3.32767]", + "System.Diagnostics.Tools": "(,4.3.32767]", + "System.Diagnostics.TraceSource": "(,4.3.32767]", + "System.Diagnostics.Tracing": "(,4.3.32767]", + "System.Drawing.Primitives": "(,4.3.32767]", + "System.Dynamic.Runtime": "(,4.3.32767]", + "System.Formats.Asn1": "(,10.0.32767]", + "System.Formats.Tar": "(,10.0.32767]", + "System.Globalization": "(,4.3.32767]", + "System.Globalization.Calendars": "(,4.3.32767]", + "System.Globalization.Extensions": "(,4.3.32767]", + "System.IO": "(,4.3.32767]", + "System.IO.Compression": "(,4.3.32767]", + "System.IO.Compression.ZipFile": "(,4.3.32767]", + "System.IO.FileSystem": "(,4.3.32767]", + "System.IO.FileSystem.AccessControl": "(,4.4.32767]", + "System.IO.FileSystem.DriveInfo": "(,4.3.32767]", + "System.IO.FileSystem.Primitives": "(,4.3.32767]", + "System.IO.FileSystem.Watcher": "(,4.3.32767]", + "System.IO.IsolatedStorage": "(,4.3.32767]", + "System.IO.MemoryMappedFiles": "(,4.3.32767]", + "System.IO.Pipelines": "(,10.0.32767]", + "System.IO.Pipes": "(,4.3.32767]", + "System.IO.Pipes.AccessControl": "(,5.0.32767]", + "System.IO.UnmanagedMemoryStream": "(,4.3.32767]", + "System.Linq": "(,4.3.32767]", + "System.Linq.AsyncEnumerable": "(,10.0.32767]", + "System.Linq.Expressions": "(,4.3.32767]", + "System.Linq.Parallel": "(,4.3.32767]", + "System.Linq.Queryable": "(,4.3.32767]", + "System.Memory": "(,5.0.32767]", + "System.Net.Http": "(,4.3.32767]", + "System.Net.Http.Json": "(,10.0.32767]", + "System.Net.NameResolution": "(,4.3.32767]", + "System.Net.NetworkInformation": "(,4.3.32767]", + "System.Net.Ping": "(,4.3.32767]", + "System.Net.Primitives": "(,4.3.32767]", + "System.Net.Requests": "(,4.3.32767]", + "System.Net.Security": "(,4.3.32767]", + "System.Net.ServerSentEvents": "(,10.0.32767]", + "System.Net.Sockets": "(,4.3.32767]", + "System.Net.WebHeaderCollection": "(,4.3.32767]", + "System.Net.WebSockets": "(,4.3.32767]", + "System.Net.WebSockets.Client": "(,4.3.32767]", + "System.Numerics.Vectors": "(,5.0.32767]", + "System.ObjectModel": "(,4.3.32767]", + "System.Private.DataContractSerialization": "(,4.3.32767]", + "System.Private.Uri": "(,4.3.32767]", + "System.Reflection": "(,4.3.32767]", + "System.Reflection.DispatchProxy": "(,6.0.32767]", + "System.Reflection.Emit": "(,4.7.32767]", + "System.Reflection.Emit.ILGeneration": "(,4.7.32767]", + "System.Reflection.Emit.Lightweight": "(,4.7.32767]", + "System.Reflection.Extensions": "(,4.3.32767]", + "System.Reflection.Metadata": "(,10.0.32767]", + "System.Reflection.Primitives": "(,4.3.32767]", + "System.Reflection.TypeExtensions": "(,4.3.32767]", + "System.Resources.Reader": "(,4.3.32767]", + "System.Resources.ResourceManager": "(,4.3.32767]", + "System.Resources.Writer": "(,4.3.32767]", + "System.Runtime": "(,4.3.32767]", + "System.Runtime.CompilerServices.Unsafe": "(,7.0.32767]", + "System.Runtime.CompilerServices.VisualC": "(,4.3.32767]", + "System.Runtime.Extensions": "(,4.3.32767]", + "System.Runtime.Handles": "(,4.3.32767]", + "System.Runtime.InteropServices": "(,4.3.32767]", + "System.Runtime.InteropServices.RuntimeInformation": "(,4.3.32767]", + "System.Runtime.Loader": "(,4.3.32767]", + "System.Runtime.Numerics": "(,4.3.32767]", + "System.Runtime.Serialization.Formatters": "(,4.3.32767]", + "System.Runtime.Serialization.Json": "(,4.3.32767]", + "System.Runtime.Serialization.Primitives": "(,4.3.32767]", + "System.Runtime.Serialization.Xml": "(,4.3.32767]", + "System.Security.AccessControl": "(,6.0.32767]", + "System.Security.Claims": "(,4.3.32767]", + "System.Security.Cryptography.Algorithms": "(,4.3.32767]", + "System.Security.Cryptography.Cng": "(,5.0.32767]", + "System.Security.Cryptography.Csp": "(,4.3.32767]", + "System.Security.Cryptography.Encoding": "(,4.3.32767]", + "System.Security.Cryptography.OpenSsl": "(,5.0.32767]", + "System.Security.Cryptography.Primitives": "(,4.3.32767]", + "System.Security.Cryptography.X509Certificates": "(,4.3.32767]", + "System.Security.Principal": "(,4.3.32767]", + "System.Security.Principal.Windows": "(,5.0.32767]", + "System.Security.SecureString": "(,4.3.32767]", + "System.Text.Encoding": "(,4.3.32767]", + "System.Text.Encoding.CodePages": "(,10.0.32767]", + "System.Text.Encoding.Extensions": "(,4.3.32767]", + "System.Text.Encodings.Web": "(,10.0.32767]", + "System.Text.Json": "(,10.0.32767]", + "System.Text.RegularExpressions": "(,4.3.32767]", + "System.Threading": "(,4.3.32767]", + "System.Threading.AccessControl": "(,10.0.32767]", + "System.Threading.Channels": "(,10.0.32767]", + "System.Threading.Overlapped": "(,4.3.32767]", + "System.Threading.Tasks": "(,4.3.32767]", + "System.Threading.Tasks.Dataflow": "(,10.0.32767]", + "System.Threading.Tasks.Extensions": "(,5.0.32767]", + "System.Threading.Tasks.Parallel": "(,4.3.32767]", + "System.Threading.Thread": "(,4.3.32767]", + "System.Threading.ThreadPool": "(,4.3.32767]", + "System.Threading.Timer": "(,4.3.32767]", + "System.ValueTuple": "(,4.5.32767]", + "System.Xml.ReaderWriter": "(,4.3.32767]", + "System.Xml.XDocument": "(,4.3.32767]", + "System.Xml.XmlDocument": "(,4.3.32767]", + "System.Xml.XmlSerializer": "(,4.3.32767]", + "System.Xml.XPath": "(,4.3.32767]", + "System.Xml.XPath.XDocument": "(,5.0.32767]" + } + } + } + } + } +} \ No newline at end of file diff --git a/src/dotnet/QuantEngine.Core/obj/QuantEngine.Core.csproj.nuget.g.props b/src/dotnet/QuantEngine.Core/obj/QuantEngine.Core.csproj.nuget.g.props new file mode 100644 index 0000000..e838210 --- /dev/null +++ b/src/dotnet/QuantEngine.Core/obj/QuantEngine.Core.csproj.nuget.g.props @@ -0,0 +1,17 @@ + + + + True + NuGet + $(MSBuildThisFileDirectory)project.assets.json + $(UserProfile)\.nuget\packages\ + C:\Users\kjh20\.nuget\packages\;C:\Program Files (x86)\Microsoft Visual Studio\Shared\NuGetPackages;C:\Program Files\dotnet\sdk\NuGetFallbackFolder + PackageReference + 7.0.0 + + + + + + + \ No newline at end of file diff --git a/src/dotnet/QuantEngine.Core/obj/QuantEngine.Core.csproj.nuget.g.targets b/src/dotnet/QuantEngine.Core/obj/QuantEngine.Core.csproj.nuget.g.targets new file mode 100644 index 0000000..3dc06ef --- /dev/null +++ b/src/dotnet/QuantEngine.Core/obj/QuantEngine.Core.csproj.nuget.g.targets @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/src/dotnet/QuantEngine.Core/obj/project.assets.json b/src/dotnet/QuantEngine.Core/obj/project.assets.json new file mode 100644 index 0000000..e12bf07 --- /dev/null +++ b/src/dotnet/QuantEngine.Core/obj/project.assets.json @@ -0,0 +1,357 @@ +{ + "version": 3, + "targets": { + "net10.0": {} + }, + "libraries": {}, + "projectFileDependencyGroups": { + "net10.0": [] + }, + "packageFolders": { + "C:\\Users\\kjh20\\.nuget\\packages\\": {}, + "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages": {}, + "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder": {} + }, + "project": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Core\\QuantEngine.Core.csproj", + "projectName": "QuantEngine.Core", + "projectPath": "C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Core\\QuantEngine.Core.csproj", + "packagesPath": "C:\\Users\\kjh20\\.nuget\\packages\\", + "outputPath": "C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Core\\obj\\", + "projectStyle": "PackageReference", + "fallbackFolders": [ + "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages", + "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder" + ], + "configFilePaths": [ + "C:\\Users\\kjh20\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "net10.0" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "C:\\Program Files\\dotnet\\library-packs": {}, + "https://api.nuget.org/v3/index.json": {}, + "https://nuget.telerik.com/v3/index.json": {} + }, + "frameworks": { + "net10.0": { + "targetAlias": "net10.0", + "projectReferences": {} + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + }, + "restoreAuditProperties": { + "enableAudit": "true", + "auditLevel": "low", + "auditMode": "all" + }, + "SdkAnalysisLevel": "10.0.100" + }, + "frameworks": { + "net10.0": { + "targetAlias": "net10.0", + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\10.0.100/PortableRuntimeIdentifierGraph.json", + "packagesToPrune": { + "Microsoft.CSharp": "(,4.7.32767]", + "Microsoft.VisualBasic": "(,10.4.32767]", + "Microsoft.Win32.Primitives": "(,4.3.32767]", + "Microsoft.Win32.Registry": "(,5.0.32767]", + "runtime.any.System.Collections": "(,4.3.32767]", + "runtime.any.System.Diagnostics.Tools": "(,4.3.32767]", + "runtime.any.System.Diagnostics.Tracing": "(,4.3.32767]", + "runtime.any.System.Globalization": "(,4.3.32767]", + "runtime.any.System.Globalization.Calendars": "(,4.3.32767]", + "runtime.any.System.IO": "(,4.3.32767]", + "runtime.any.System.Reflection": "(,4.3.32767]", + "runtime.any.System.Reflection.Extensions": "(,4.3.32767]", + "runtime.any.System.Reflection.Primitives": "(,4.3.32767]", + "runtime.any.System.Resources.ResourceManager": "(,4.3.32767]", + "runtime.any.System.Runtime": "(,4.3.32767]", + "runtime.any.System.Runtime.Handles": "(,4.3.32767]", + "runtime.any.System.Runtime.InteropServices": "(,4.3.32767]", + "runtime.any.System.Text.Encoding": "(,4.3.32767]", + "runtime.any.System.Text.Encoding.Extensions": "(,4.3.32767]", + "runtime.any.System.Threading.Tasks": "(,4.3.32767]", + "runtime.any.System.Threading.Timer": "(,4.3.32767]", + "runtime.aot.System.Collections": "(,4.3.32767]", + "runtime.aot.System.Diagnostics.Tools": "(,4.3.32767]", + "runtime.aot.System.Diagnostics.Tracing": "(,4.3.32767]", + "runtime.aot.System.Globalization": "(,4.3.32767]", + "runtime.aot.System.Globalization.Calendars": "(,4.3.32767]", + "runtime.aot.System.IO": "(,4.3.32767]", + "runtime.aot.System.Reflection": "(,4.3.32767]", + "runtime.aot.System.Reflection.Extensions": "(,4.3.32767]", + "runtime.aot.System.Reflection.Primitives": "(,4.3.32767]", + "runtime.aot.System.Resources.ResourceManager": "(,4.3.32767]", + "runtime.aot.System.Runtime": "(,4.3.32767]", + "runtime.aot.System.Runtime.Handles": "(,4.3.32767]", + "runtime.aot.System.Runtime.InteropServices": "(,4.3.32767]", + "runtime.aot.System.Text.Encoding": "(,4.3.32767]", + "runtime.aot.System.Text.Encoding.Extensions": "(,4.3.32767]", + "runtime.aot.System.Threading.Tasks": "(,4.3.32767]", + "runtime.aot.System.Threading.Timer": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.debian.9-x64.runtime.native.System": "(,4.3.32767]", + "runtime.debian.9-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.debian.9-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.debian.9-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.fedora.27-x64.runtime.native.System": "(,4.3.32767]", + "runtime.fedora.27-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.fedora.27-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.fedora.27-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.fedora.28-x64.runtime.native.System": "(,4.3.32767]", + "runtime.fedora.28-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.fedora.28-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.fedora.28-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.opensuse.42.3-x64.runtime.native.System": "(,4.3.32767]", + "runtime.opensuse.42.3-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.opensuse.42.3-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.opensuse.42.3-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.ubuntu.18.04-x64.runtime.native.System": "(,4.3.32767]", + "runtime.ubuntu.18.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.ubuntu.18.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.ubuntu.18.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.unix.Microsoft.Win32.Primitives": "(,4.3.32767]", + "runtime.unix.System.Console": "(,4.3.32767]", + "runtime.unix.System.Diagnostics.Debug": "(,4.3.32767]", + "runtime.unix.System.IO.FileSystem": "(,4.3.32767]", + "runtime.unix.System.Net.Primitives": "(,4.3.32767]", + "runtime.unix.System.Net.Sockets": "(,4.3.32767]", + "runtime.unix.System.Private.Uri": "(,4.3.32767]", + "runtime.unix.System.Runtime.Extensions": "(,4.3.32767]", + "runtime.win.Microsoft.Win32.Primitives": "(,4.3.32767]", + "runtime.win.System.Console": "(,4.3.32767]", + "runtime.win.System.Diagnostics.Debug": "(,4.3.32767]", + "runtime.win.System.IO.FileSystem": "(,4.3.32767]", + "runtime.win.System.Net.Primitives": "(,4.3.32767]", + "runtime.win.System.Net.Sockets": "(,4.3.32767]", + "runtime.win.System.Runtime.Extensions": "(,4.3.32767]", + "runtime.win10-arm-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", + "runtime.win10-arm64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.win10-x64-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", + "runtime.win10-x86-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", + "runtime.win7-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.win7-x86.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.win7.System.Private.Uri": "(,4.3.32767]", + "runtime.win8-arm.runtime.native.System.IO.Compression": "(,4.3.32767]", + "System.AppContext": "(,4.3.32767]", + "System.Buffers": "(,5.0.32767]", + "System.Collections": "(,4.3.32767]", + "System.Collections.Concurrent": "(,4.3.32767]", + "System.Collections.Immutable": "(,10.0.32767]", + "System.Collections.NonGeneric": "(,4.3.32767]", + "System.Collections.Specialized": "(,4.3.32767]", + "System.ComponentModel": "(,4.3.32767]", + "System.ComponentModel.Annotations": "(,4.3.32767]", + "System.ComponentModel.EventBasedAsync": "(,4.3.32767]", + "System.ComponentModel.Primitives": "(,4.3.32767]", + "System.ComponentModel.TypeConverter": "(,4.3.32767]", + "System.Console": "(,4.3.32767]", + "System.Data.Common": "(,4.3.32767]", + "System.Data.DataSetExtensions": "(,4.4.32767]", + "System.Diagnostics.Contracts": "(,4.3.32767]", + "System.Diagnostics.Debug": "(,4.3.32767]", + "System.Diagnostics.DiagnosticSource": "(,10.0.32767]", + "System.Diagnostics.FileVersionInfo": "(,4.3.32767]", + "System.Diagnostics.Process": "(,4.3.32767]", + "System.Diagnostics.StackTrace": "(,4.3.32767]", + "System.Diagnostics.TextWriterTraceListener": "(,4.3.32767]", + "System.Diagnostics.Tools": "(,4.3.32767]", + "System.Diagnostics.TraceSource": "(,4.3.32767]", + "System.Diagnostics.Tracing": "(,4.3.32767]", + "System.Drawing.Primitives": "(,4.3.32767]", + "System.Dynamic.Runtime": "(,4.3.32767]", + "System.Formats.Asn1": "(,10.0.32767]", + "System.Formats.Tar": "(,10.0.32767]", + "System.Globalization": "(,4.3.32767]", + "System.Globalization.Calendars": "(,4.3.32767]", + "System.Globalization.Extensions": "(,4.3.32767]", + "System.IO": "(,4.3.32767]", + "System.IO.Compression": "(,4.3.32767]", + "System.IO.Compression.ZipFile": "(,4.3.32767]", + "System.IO.FileSystem": "(,4.3.32767]", + "System.IO.FileSystem.AccessControl": "(,4.4.32767]", + "System.IO.FileSystem.DriveInfo": "(,4.3.32767]", + "System.IO.FileSystem.Primitives": "(,4.3.32767]", + "System.IO.FileSystem.Watcher": "(,4.3.32767]", + "System.IO.IsolatedStorage": "(,4.3.32767]", + "System.IO.MemoryMappedFiles": "(,4.3.32767]", + "System.IO.Pipelines": "(,10.0.32767]", + "System.IO.Pipes": "(,4.3.32767]", + "System.IO.Pipes.AccessControl": "(,5.0.32767]", + "System.IO.UnmanagedMemoryStream": "(,4.3.32767]", + "System.Linq": "(,4.3.32767]", + "System.Linq.AsyncEnumerable": "(,10.0.32767]", + "System.Linq.Expressions": "(,4.3.32767]", + "System.Linq.Parallel": "(,4.3.32767]", + "System.Linq.Queryable": "(,4.3.32767]", + "System.Memory": "(,5.0.32767]", + "System.Net.Http": "(,4.3.32767]", + "System.Net.Http.Json": "(,10.0.32767]", + "System.Net.NameResolution": "(,4.3.32767]", + "System.Net.NetworkInformation": "(,4.3.32767]", + "System.Net.Ping": "(,4.3.32767]", + "System.Net.Primitives": "(,4.3.32767]", + "System.Net.Requests": "(,4.3.32767]", + "System.Net.Security": "(,4.3.32767]", + "System.Net.ServerSentEvents": "(,10.0.32767]", + "System.Net.Sockets": "(,4.3.32767]", + "System.Net.WebHeaderCollection": "(,4.3.32767]", + "System.Net.WebSockets": "(,4.3.32767]", + "System.Net.WebSockets.Client": "(,4.3.32767]", + "System.Numerics.Vectors": "(,5.0.32767]", + "System.ObjectModel": "(,4.3.32767]", + "System.Private.DataContractSerialization": "(,4.3.32767]", + "System.Private.Uri": "(,4.3.32767]", + "System.Reflection": "(,4.3.32767]", + "System.Reflection.DispatchProxy": "(,6.0.32767]", + "System.Reflection.Emit": "(,4.7.32767]", + "System.Reflection.Emit.ILGeneration": "(,4.7.32767]", + "System.Reflection.Emit.Lightweight": "(,4.7.32767]", + "System.Reflection.Extensions": "(,4.3.32767]", + "System.Reflection.Metadata": "(,10.0.32767]", + "System.Reflection.Primitives": "(,4.3.32767]", + "System.Reflection.TypeExtensions": "(,4.3.32767]", + "System.Resources.Reader": "(,4.3.32767]", + "System.Resources.ResourceManager": "(,4.3.32767]", + "System.Resources.Writer": "(,4.3.32767]", + "System.Runtime": "(,4.3.32767]", + "System.Runtime.CompilerServices.Unsafe": "(,7.0.32767]", + "System.Runtime.CompilerServices.VisualC": "(,4.3.32767]", + "System.Runtime.Extensions": "(,4.3.32767]", + "System.Runtime.Handles": "(,4.3.32767]", + "System.Runtime.InteropServices": "(,4.3.32767]", + "System.Runtime.InteropServices.RuntimeInformation": "(,4.3.32767]", + "System.Runtime.Loader": "(,4.3.32767]", + "System.Runtime.Numerics": "(,4.3.32767]", + "System.Runtime.Serialization.Formatters": "(,4.3.32767]", + "System.Runtime.Serialization.Json": "(,4.3.32767]", + "System.Runtime.Serialization.Primitives": "(,4.3.32767]", + "System.Runtime.Serialization.Xml": "(,4.3.32767]", + "System.Security.AccessControl": "(,6.0.32767]", + "System.Security.Claims": "(,4.3.32767]", + "System.Security.Cryptography.Algorithms": "(,4.3.32767]", + "System.Security.Cryptography.Cng": "(,5.0.32767]", + "System.Security.Cryptography.Csp": "(,4.3.32767]", + "System.Security.Cryptography.Encoding": "(,4.3.32767]", + "System.Security.Cryptography.OpenSsl": "(,5.0.32767]", + "System.Security.Cryptography.Primitives": "(,4.3.32767]", + "System.Security.Cryptography.X509Certificates": "(,4.3.32767]", + "System.Security.Principal": "(,4.3.32767]", + "System.Security.Principal.Windows": "(,5.0.32767]", + "System.Security.SecureString": "(,4.3.32767]", + "System.Text.Encoding": "(,4.3.32767]", + "System.Text.Encoding.CodePages": "(,10.0.32767]", + "System.Text.Encoding.Extensions": "(,4.3.32767]", + "System.Text.Encodings.Web": "(,10.0.32767]", + "System.Text.Json": "(,10.0.32767]", + "System.Text.RegularExpressions": "(,4.3.32767]", + "System.Threading": "(,4.3.32767]", + "System.Threading.AccessControl": "(,10.0.32767]", + "System.Threading.Channels": "(,10.0.32767]", + "System.Threading.Overlapped": "(,4.3.32767]", + "System.Threading.Tasks": "(,4.3.32767]", + "System.Threading.Tasks.Dataflow": "(,10.0.32767]", + "System.Threading.Tasks.Extensions": "(,5.0.32767]", + "System.Threading.Tasks.Parallel": "(,4.3.32767]", + "System.Threading.Thread": "(,4.3.32767]", + "System.Threading.ThreadPool": "(,4.3.32767]", + "System.Threading.Timer": "(,4.3.32767]", + "System.ValueTuple": "(,4.5.32767]", + "System.Xml.ReaderWriter": "(,4.3.32767]", + "System.Xml.XDocument": "(,4.3.32767]", + "System.Xml.XmlDocument": "(,4.3.32767]", + "System.Xml.XmlSerializer": "(,4.3.32767]", + "System.Xml.XPath": "(,4.3.32767]", + "System.Xml.XPath.XDocument": "(,5.0.32767]" + } + } + } + } +} \ No newline at end of file diff --git a/src/dotnet/QuantEngine.Core/obj/project.nuget.cache b/src/dotnet/QuantEngine.Core/obj/project.nuget.cache new file mode 100644 index 0000000..d01271e --- /dev/null +++ b/src/dotnet/QuantEngine.Core/obj/project.nuget.cache @@ -0,0 +1,8 @@ +{ + "version": 2, + "dgSpecHash": "fxehXLXYtu4=", + "success": true, + "projectFilePath": "C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Core\\QuantEngine.Core.csproj", + "expectedPackageFiles": [], + "logs": [] +} \ No newline at end of file diff --git a/src/dotnet/QuantEngine.Infrastructure/Class1.cs b/src/dotnet/QuantEngine.Infrastructure/Class1.cs new file mode 100644 index 0000000..6863688 --- /dev/null +++ b/src/dotnet/QuantEngine.Infrastructure/Class1.cs @@ -0,0 +1,6 @@ +namespace QuantEngine.Infrastructure; + +public class Class1 +{ + +} diff --git a/src/dotnet/QuantEngine.Infrastructure/Data/DbConnectionFactory.cs b/src/dotnet/QuantEngine.Infrastructure/Data/DbConnectionFactory.cs new file mode 100644 index 0000000..ad47d10 --- /dev/null +++ b/src/dotnet/QuantEngine.Infrastructure/Data/DbConnectionFactory.cs @@ -0,0 +1,25 @@ +using System.Data; +using Npgsql; + +namespace QuantEngine.Infrastructure.Data +{ + public interface IDbConnectionFactory + { + IDbConnection CreateConnection(); + } + + public class DbConnectionFactory : IDbConnectionFactory + { + private readonly string _connectionString; + + public DbConnectionFactory(string connectionString) + { + _connectionString = connectionString; + } + + public IDbConnection CreateConnection() + { + return new NpgsqlConnection(_connectionString); + } + } +} diff --git a/src/dotnet/QuantEngine.Infrastructure/Data/DbMigrator.cs b/src/dotnet/QuantEngine.Infrastructure/Data/DbMigrator.cs new file mode 100644 index 0000000..f058459 --- /dev/null +++ b/src/dotnet/QuantEngine.Infrastructure/Data/DbMigrator.cs @@ -0,0 +1,161 @@ +using System.Data; +using Dapper; + +namespace QuantEngine.Infrastructure.Data +{ + public class DbMigrator + { + private readonly IDbConnectionFactory _connectionFactory; + + public DbMigrator(IDbConnectionFactory connectionFactory) + { + _connectionFactory = connectionFactory; + } + + public void Migrate() + { + using var conn = _connectionFactory.CreateConnection(); + conn.Open(); + + // Create schema if not exists + conn.Execute("CREATE SCHEMA IF NOT EXISTS quantengine;"); + + // 0. kis_tokens + conn.Execute(@" + CREATE TABLE IF NOT EXISTS kis_tokens ( + account TEXT PRIMARY KEY, + access_token TEXT NOT NULL, + expires_at TEXT NOT NULL, + updated_at TEXT NOT NULL + ); + "); + + // 1. collection_runs + conn.Execute(@" + CREATE TABLE IF NOT EXISTS collection_runs ( + run_id TEXT PRIMARY KEY, + collector_name TEXT NOT NULL, + started_at TEXT NOT NULL, + finished_at TEXT, + status TEXT NOT NULL, + input_source TEXT, + output_json_path TEXT, + output_db_path TEXT, + notes TEXT, + created_at TIMESTAMP DEFAULT CURRENT_TIMESTAMP + ); + "); + + // 2. collection_snapshots + conn.Execute(@" + CREATE TABLE IF NOT EXISTS collection_snapshots ( + run_id TEXT NOT NULL, + dataset_name TEXT NOT NULL, + ticker TEXT NOT NULL, + name TEXT, + sector TEXT, + as_of_date TEXT, + source_priority TEXT, + source_status TEXT, + payload_json TEXT NOT NULL, + provenance_json TEXT NOT NULL, + created_at TIMESTAMP DEFAULT CURRENT_TIMESTAMP, + PRIMARY KEY (run_id, dataset_name, ticker) + ); + CREATE INDEX IF NOT EXISTS idx_collection_snapshots_ticker_time ON collection_snapshots(ticker, created_at DESC); + "); + + // 3. collection_source_errors + conn.Execute(@" + CREATE TABLE IF NOT EXISTS collection_source_errors ( + run_id TEXT NOT NULL, + ticker TEXT, + source_name TEXT NOT NULL, + error_kind TEXT NOT NULL, + error_message TEXT NOT NULL, + payload_json TEXT, + created_at TIMESTAMP DEFAULT CURRENT_TIMESTAMP + ); + CREATE INDEX IF NOT EXISTS idx_collection_source_errors_run ON collection_source_errors(run_id, source_name); + "); + + // 4. settings + conn.Execute(@" + CREATE TABLE IF NOT EXISTS settings ( + ordinal INT NOT NULL, + key TEXT PRIMARY KEY, + value_json TEXT NOT NULL, + note TEXT NOT NULL DEFAULT '', + updated_at TEXT NOT NULL + ); + "); + + // 5. account_snapshot + conn.Execute(@" + CREATE TABLE IF NOT EXISTS account_snapshot ( + ordinal INT NOT NULL, + row_json TEXT NOT NULL, + captured_at TEXT NOT NULL DEFAULT '', + account TEXT NOT NULL DEFAULT '', + account_type TEXT NOT NULL DEFAULT '', + ticker TEXT NOT NULL DEFAULT '', + name TEXT NOT NULL DEFAULT '', + parse_status TEXT NOT NULL DEFAULT '', + user_confirmed TEXT NOT NULL DEFAULT '', + updated_at TEXT NOT NULL + ); + CREATE INDEX IF NOT EXISTS idx_account_snapshot_captured_at ON account_snapshot(captured_at); + CREATE INDEX IF NOT EXISTS idx_account_snapshot_ticker ON account_snapshot(ticker); + "); + + // 6. workspace_meta + conn.Execute(@" + CREATE TABLE IF NOT EXISTS workspace_meta ( + key TEXT PRIMARY KEY, + value_json TEXT NOT NULL + ); + "); + + // 7. workspace_change_log + conn.Execute(@" + CREATE TABLE IF NOT EXISTS workspace_change_log ( + id SERIAL PRIMARY KEY, + domain TEXT NOT NULL, + action TEXT NOT NULL, + target_ref TEXT NOT NULL DEFAULT '', + actor TEXT NOT NULL DEFAULT 'system', + note TEXT NOT NULL DEFAULT '', + before_json TEXT NOT NULL DEFAULT 'null', + after_json TEXT NOT NULL DEFAULT 'null', + created_at TEXT NOT NULL + ); + "); + + // 8. workspace_approval_v2 + conn.Execute(@" + CREATE TABLE IF NOT EXISTS workspace_approval_v2 ( + domain TEXT NOT NULL, + target_ref TEXT NOT NULL DEFAULT '*', + status TEXT NOT NULL, + approved_by TEXT NOT NULL DEFAULT '', + approved_at TEXT NOT NULL DEFAULT '', + note TEXT NOT NULL DEFAULT '', + updated_at TEXT NOT NULL, + PRIMARY KEY (domain, target_ref) + ); + "); + + // 9. workspace_lock + conn.Execute(@" + CREATE TABLE IF NOT EXISTS workspace_lock ( + domain TEXT NOT NULL, + target_ref TEXT NOT NULL DEFAULT '', + locked_by TEXT NOT NULL DEFAULT '', + reason TEXT NOT NULL DEFAULT '', + locked_at TEXT NOT NULL, + PRIMARY KEY (domain, target_ref) + ); + "); + } + } +} diff --git a/src/dotnet/QuantEngine.Infrastructure/External/KisApiClient.cs b/src/dotnet/QuantEngine.Infrastructure/External/KisApiClient.cs new file mode 100644 index 0000000..9e2dc80 --- /dev/null +++ b/src/dotnet/QuantEngine.Infrastructure/External/KisApiClient.cs @@ -0,0 +1,245 @@ +using System; +using System.Collections.Generic; +using System.Net.Http; +using System.Net.Http.Headers; +using System.Net.Http.Json; +using System.Text.Json; +using System.Threading.Tasks; +using Dapper; +using QuantEngine.Core.Interfaces; +using QuantEngine.Infrastructure.Data; + +namespace QuantEngine.Infrastructure.External +{ + public class KisCredentials + { + public string AppKey { get; } + public string AppSecret { get; } + public string Account { get; } // "real" | "mock" + public string Domain { get; } + + public KisCredentials(string appKey, string appSecret, string account) + { + AppKey = appKey; + AppSecret = appSecret; + Account = account; + Domain = account == "real" + ? "https://openapi.koreainvestment.com:9443" + : "https://openapivts.koreainvestment.com:29443"; + } + + public static KisCredentials Load(string account = "mock") + { + string keyVar = account == "real" ? "KIS_APP_Key" : "KIS_APP_Key_TEST"; + string secretVar = account == "real" ? "KIS_APP_Secret" : "KIS_APP_Secret_TEST"; + + string? appKey = Environment.GetEnvironmentVariable(keyVar); + string? appSecret = Environment.GetEnvironmentVariable(secretVar); + + if (string.IsNullOrEmpty(appKey) || string.IsNullOrEmpty(appSecret)) + { + // Fallback registry checks are not cross-platform and environment variables should be defined. + // In production/Linux it is env-only. + throw new InvalidOperationException( + $"KIS Credentials Environment Variables missing: {keyVar} or {secretVar}." + ); + } + + return new KisCredentials(appKey, appSecret, account); + } + } + + public class KisApiClient : IKisApiClient + { + private readonly HttpClient _httpClient; + private readonly IDbConnectionFactory _dbConnectionFactory; + private readonly KisCredentials _creds; + + private static readonly string[] ForbiddenPathSubstrings = { "/trading/" }; + private static readonly string[] ForbiddenTrIdPrefixes = { "TTTC08", "VTTC08", "TTTC01", "VTTC01", "TTTC8434R", "VTTC8434R" }; + + public KisApiClient(HttpClient httpClient, IDbConnectionFactory dbConnectionFactory, string account = "mock") + { + _httpClient = httpClient; + _dbConnectionFactory = dbConnectionFactory; + _creds = KisCredentials.Load(account); + } + + private void AssertReadOnly(string path, string trId) + { + foreach (var forbidden in ForbiddenPathSubstrings) + { + if (path.Contains(forbidden, StringComparison.OrdinalIgnoreCase)) + { + throw new InvalidOperationException($"BLOCKED: 주문 관련 경로 호출 시도 차단 — path={path}"); + } + } + foreach (var prefix in ForbiddenTrIdPrefixes) + { + if (trId.StartsWith(prefix, StringComparison.OrdinalIgnoreCase)) + { + throw new InvalidOperationException($"BLOCKED: 주문 관련 TR_ID 호출 시도 차단 — tr_id={trId}"); + } + } + } + + private async Task IssueOrReuseTokenAsync() + { + using var conn = _dbConnectionFactory.CreateConnection(); + conn.Open(); + + // 1. Try to load cached token + var cached = await conn.QueryFirstOrDefaultAsync<(string access_token, string expires_at)>( + "SELECT access_token, expires_at FROM quantengine.kis_tokens WHERE account = @Account", + new { Account = _creds.Account } + ); + + if (cached.access_token != null) + { + if (DateTime.TryParse(cached.expires_at, out var expiresAtUtc)) + { + // Reuse token if it has more than 10 minutes left before expiration + if (DateTime.UtcNow < expiresAtUtc.AddMinutes(-10)) + { + return cached.access_token; + } + } + } + + // 2. Request new token from KIS API + var requestUrl = $"{_creds.Domain}/oauth2/tokenP"; + var requestBody = new + { + grant_type = "client_credentials", + appkey = _creds.AppKey, + appsecret = _creds.AppSecret + }; + + var response = await _httpClient.PostAsJsonAsync(requestUrl, requestBody); + response.EnsureSuccessStatusCode(); + + var resData = await response.Content.ReadFromJsonAsync(); + var accessToken = resData.GetProperty("access_token").GetString() + ?? throw new InvalidOperationException("Failed to parse access_token from response."); + var expiresInSec = resData.GetProperty("expires_in").GetInt32(); + var expiresAt = DateTime.UtcNow.AddSeconds(expiresInSec); + + // 3. Upsert token cache into PG database + await conn.ExecuteAsync(@" + INSERT INTO quantengine.kis_tokens (account, access_token, expires_at, updated_at) + VALUES (@Account, @AccessToken, @ExpiresAt, @UpdatedAt) + ON CONFLICT (account) DO UPDATE SET + access_token = EXCLUDED.access_token, + expires_at = EXCLUDED.expires_at, + updated_at = EXCLUDED.updated_at", + new + { + Account = _creds.Account, + AccessToken = accessToken, + ExpiresAt = expiresAt.ToString("o"), + UpdatedAt = DateTime.UtcNow.ToString("o") + } + ); + + return accessToken; + } + + private async Task SendRequestAsync(string path, string trId, Dictionary queryParams) + { + AssertReadOnly(path, trId); + var token = await IssueOrReuseTokenAsync(); + + var queryBuilder = new List(); + foreach (var kvp in queryParams) + { + queryBuilder.Add($"{Uri.EscapeDataString(kvp.Key)}={Uri.EscapeDataString(kvp.Value)}"); + } + var fullUrl = $"{_creds.Domain}{path}?{string.Join("&", queryBuilder)}"; + + using var request = new HttpRequestMessage(HttpMethod.Get, fullUrl); + request.Headers.Accept.Clear(); + request.Headers.Accept.Add(new MediaTypeWithQualityHeaderValue("application/json")); + request.Headers.Add("authorization", $"Bearer {token}"); + request.Headers.Add("appkey", _creds.AppKey); + request.Headers.Add("appsecret", _creds.AppSecret); + request.Headers.Add("tr_id", trId); + request.Headers.Add("custtype", "P"); + + var response = await _httpClient.SendAsync(request); + response.EnsureSuccessStatusCode(); + + return await response.Content.ReadAsStringAsync(); + } + + public Task GetCurrentPriceAsync(string code) + { + return SendRequestAsync( + "/uapi/domestic-stock/v1/quotations/inquire-price", + "FHKST01010100", + new Dictionary + { + { "FID_COND_MRKT_DIV_CODE", "J" }, + { "FID_INPUT_ISCD", code } + } + ); + } + + public Task GetAskingPrice10LevelAsync(string code) + { + return SendRequestAsync( + "/uapi/domestic-stock/v1/quotations/inquire-asking-price-exp-ccn", + "FHKST01010200", + new Dictionary + { + { "FID_COND_MRKT_DIV_CODE", "J" }, + { "FID_INPUT_ISCD", code } + } + ); + } + + public Task GetDailyShortSaleAsync(string code, string startDate, string endDate) + { + return SendRequestAsync( + "/uapi/domestic-stock/v1/quotations/daily-short-sale", + "FHPST04830000", + new Dictionary + { + { "FID_COND_MRKT_DIV_CODE", "J" }, + { "FID_INPUT_ISCD", code }, + { "FID_INPUT_DATE_1", startDate }, + { "FID_INPUT_DATE_2", endDate } + } + ); + } + + public Task GetDailyItemChartPriceAsync(string code, string startDate, string endDate, string period = "D") + { + return SendRequestAsync( + "/uapi/domestic-stock/v1/quotations/inquire-daily-itemchartprice", + "FHKST03010100", + new Dictionary + { + { "FID_COND_MRKT_DIV_CODE", "J" }, + { "FID_INPUT_ISCD", code }, + { "FID_INPUT_DATE_1", startDate }, + { "FID_INPUT_DATE_2", endDate }, + { "FID_PERIOD_DIV_CODE", period }, + { "FID_ORG_ADJ_PRC", "0" } + } + ); + } + + public Task GetInvestorTrendAsync(string code) + { + return SendRequestAsync( + "/uapi/domestic-stock/v1/quotations/inquire-investor", + "FHKST01010900", + new Dictionary + { + { "FID_COND_MRKT_DIV_CODE", "J" }, + { "FID_INPUT_ISCD", code } + } + ); + } + } +} diff --git a/src/dotnet/QuantEngine.Infrastructure/External/NaverFinanceScraper.cs b/src/dotnet/QuantEngine.Infrastructure/External/NaverFinanceScraper.cs new file mode 100644 index 0000000..37c0e31 --- /dev/null +++ b/src/dotnet/QuantEngine.Infrastructure/External/NaverFinanceScraper.cs @@ -0,0 +1,163 @@ +using System; +using System.Collections.Generic; +using System.Net.Http; +using System.Text; +using System.Text.Json; +using System.Text.RegularExpressions; +using System.Threading.Tasks; +using QuantEngine.Core.Interfaces; + +namespace QuantEngine.Infrastructure.External +{ + public class NaverFinanceScraper : INaverFinanceScraper + { + private readonly HttpClient _httpClient; + private const string UserAgent = "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/126.0 Safari/537.36"; + private const string Referer = "https://finance.naver.com/"; + + public NaverFinanceScraper(HttpClient httpClient) + { + _httpClient = httpClient; + // Register CodePages encoding provider to support EUC-KR + Encoding.RegisterProvider(CodePagesEncodingProvider.Instance); + } + + private double CleanNumber(string text) + { + if (string.IsNullOrWhiteSpace(text)) return 0.0; + var cleaned = text.Replace(",", "").Replace("+", "").Replace("%", "").Trim(); + return double.TryParse(cleaned, out var result) ? result : 0.0; + } + + public async Task FetchPriceHistoryAsync(string code, int pages = 3) + { + var rows = new List>(); + var eucKr = Encoding.GetEncoding("euc-kr"); + + for (int page = 1; page <= pages; page++) + { + var url = $"https://finance.naver.com/item/sise_day.naver?code={code}&page={page}"; + + using var request = new HttpRequestMessage(HttpMethod.Get, url); + request.Headers.Add("User-Agent", UserAgent); + request.Headers.Add("Referer", Referer); + + var response = await _httpClient.SendAsync(request); + if (response.StatusCode == System.Net.HttpStatusCode.Forbidden) + { + return JsonSerializer.Serialize(new + { + status = "CLOUDFLARE_BLOCKED_403", + rows = new List(), + error = "Cloudflare rejected request (403 Forbidden)", + source_url = url + }); + } + response.EnsureSuccessStatusCode(); + + var bytes = await response.Content.ReadAsByteArrayAsync(); + var html = eucKr.GetString(bytes); + + // Simple regex parser for table rows + var trMatches = Regex.Matches(html, @"]*>([\s\S]*?)<\/tr>"); + foreach (Match trMatch in trMatches) + { + var trContent = trMatch.Groups[1].Value; + var tdMatches = Regex.Matches(trContent, @"]*>([\s\S]*?)<\/td>"); + if (tdMatches.Count == 7) + { + var dateText = Regex.Replace(tdMatches[0].Groups[1].Value, @"<[^>]*>", "").Trim(); + if (string.IsNullOrEmpty(dateText) || !dateText.Contains(".")) continue; + + rows.Add(new Dictionary + { + { "date", dateText.Replace(".", "-") }, + { "close", CleanNumber(Regex.Replace(tdMatches[1].Groups[1].Value, @"<[^>]*>", "")) }, + { "open", CleanNumber(Regex.Replace(tdMatches[3].Groups[1].Value, @"<[^>]*>", "")) }, + { "high", CleanNumber(Regex.Replace(tdMatches[4].Groups[1].Value, @"<[^>]*>", "")) }, + { "low", CleanNumber(Regex.Replace(tdMatches[5].Groups[1].Value, @"<[^>]*>", "")) }, + { "volume", CleanNumber(Regex.Replace(tdMatches[6].Groups[1].Value, @"<[^>]*>", "")) } + }); + } + } + } + + if (rows.Count == 0) + { + return JsonSerializer.Serialize(new { status = "DATA_MISSING", rows = new List(), source_url = Referer }); + } + + return JsonSerializer.Serialize(new + { + status = "OK", + rows = rows, + source_url = $"https://finance.naver.com/item/sise_day.naver?code={code}", + source_as_of = DateTime.UtcNow.AddHours(9).ToString("o") + }); + } + + public async Task FetchForeignInstitutionFlowAsync(string code, int pages = 2) + { + var rows = new List>(); + var eucKr = Encoding.GetEncoding("euc-kr"); + + for (int page = 1; page <= pages; page++) + { + var url = $"https://finance.naver.com/item/frgn.naver?code={code}&page={page}"; + + using var request = new HttpRequestMessage(HttpMethod.Get, url); + request.Headers.Add("User-Agent", UserAgent); + request.Headers.Add("Referer", Referer); + + var response = await _httpClient.SendAsync(request); + if (response.StatusCode == System.Net.HttpStatusCode.Forbidden) + { + return JsonSerializer.Serialize(new + { + status = "CLOUDFLARE_BLOCKED_403", + rows = new List(), + error = "Cloudflare rejected request (403 Forbidden)", + source_url = url + }); + } + response.EnsureSuccessStatusCode(); + + var bytes = await response.Content.ReadAsByteArrayAsync(); + var html = eucKr.GetString(bytes); + + var trMatches = Regex.Matches(html, @"]*>([\s\S]*?)<\/tr>"); + foreach (Match trMatch in trMatches) + { + var trContent = trMatch.Groups[1].Value; + var tdMatches = Regex.Matches(trContent, @"]*>([\s\S]*?)<\/td>"); + if (tdMatches.Count >= 8) + { + var dateText = Regex.Replace(tdMatches[0].Groups[1].Value, @"<[^>]*>", "").Trim(); + if (string.IsNullOrEmpty(dateText) || !dateText.Contains(".")) continue; + + rows.Add(new Dictionary + { + { "date", dateText.Replace(".", "-") }, + { "close", CleanNumber(Regex.Replace(tdMatches[1].Groups[1].Value, @"<[^>]*>", "")) }, + { "inst_net", CleanNumber(Regex.Replace(tdMatches[5].Groups[1].Value, @"<[^>]*>", "")) }, + { "frgn_net", CleanNumber(Regex.Replace(tdMatches[6].Groups[1].Value, @"<[^>]*>", "")) } + }); + } + } + } + + if (rows.Count == 0) + { + return JsonSerializer.Serialize(new { status = "DATA_MISSING", rows = new List() }); + } + + return JsonSerializer.Serialize(new + { + status = "OK", + rows = rows, + source_url = $"https://finance.naver.com/item/frgn.naver?code={code}", + source_as_of = DateTime.UtcNow.AddHours(9).ToString("o") + }); + } + } +} diff --git a/src/dotnet/QuantEngine.Infrastructure/External/YahooFinanceClient.cs b/src/dotnet/QuantEngine.Infrastructure/External/YahooFinanceClient.cs new file mode 100644 index 0000000..e609b66 --- /dev/null +++ b/src/dotnet/QuantEngine.Infrastructure/External/YahooFinanceClient.cs @@ -0,0 +1,30 @@ +using System; +using System.Net.Http; +using System.Threading.Tasks; +using QuantEngine.Core.Interfaces; + +namespace QuantEngine.Infrastructure.External +{ + public class YahooFinanceClient : IYahooFinanceClient + { + private readonly HttpClient _httpClient; + private const string UserAgent = "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/126.0 Safari/537.36"; + + public YahooFinanceClient(HttpClient httpClient) + { + _httpClient = httpClient; + } + + public async Task FetchHistoricalDataAsync(string symbol, string range = "4mo", string interval = "1d") + { + var url = $"https://query1.finance.yahoo.com/v8/finance/chart/{symbol}?range={range}&interval={interval}"; + using var request = new HttpRequestMessage(HttpMethod.Get, url); + request.Headers.Add("User-Agent", UserAgent); + + var response = await _httpClient.SendAsync(request); + response.EnsureSuccessStatusCode(); + + return await response.Content.ReadAsStringAsync(); + } + } +} diff --git a/src/dotnet/QuantEngine.Infrastructure/QuantEngine.Infrastructure.csproj b/src/dotnet/QuantEngine.Infrastructure/QuantEngine.Infrastructure.csproj new file mode 100644 index 0000000..9768f63 --- /dev/null +++ b/src/dotnet/QuantEngine.Infrastructure/QuantEngine.Infrastructure.csproj @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + net10.0 + enable + enable + + + diff --git a/src/dotnet/QuantEngine.Infrastructure/Repositories/WorkspaceRepository.cs b/src/dotnet/QuantEngine.Infrastructure/Repositories/WorkspaceRepository.cs new file mode 100644 index 0000000..72b4985 --- /dev/null +++ b/src/dotnet/QuantEngine.Infrastructure/Repositories/WorkspaceRepository.cs @@ -0,0 +1,192 @@ +using System; +using System.Collections.Generic; +using System.Threading.Tasks; +using Dapper; +using QuantEngine.Core.Interfaces; +using QuantEngine.Core.Models; +using QuantEngine.Infrastructure.Data; + +namespace QuantEngine.Infrastructure.Repositories +{ + public class WorkspaceRepository : IWorkspaceRepository + { + private readonly IDbConnectionFactory _connectionFactory; + + public WorkspaceRepository(IDbConnectionFactory connectionFactory) + { + _connectionFactory = connectionFactory; + } + + // Settings + public async Task> GetSettingsAsync() + { + using var conn = _connectionFactory.CreateConnection(); + return await conn.QueryAsync( + "SELECT ordinal, key, value_json as ValueJson, note, updated_at as UpdatedAt FROM quantengine.settings ORDER BY ordinal ASC" + ); + } + + public async Task GetSettingByKeyAsync(string key) + { + using var conn = _connectionFactory.CreateConnection(); + return await conn.QueryFirstOrDefaultAsync( + "SELECT ordinal, key, value_json as ValueJson, note, updated_at as UpdatedAt FROM quantengine.settings WHERE key = @Key", + new { Key = key } + ); + } + + public async Task UpsertSettingAsync(Setting setting) + { + using var conn = _connectionFactory.CreateConnection(); + var affected = await conn.ExecuteAsync(@" + INSERT INTO quantengine.settings (ordinal, key, value_json, note, updated_at) + VALUES (@Ordinal, @Key, @ValueJson, @Note, @UpdatedAt) + ON CONFLICT (key) DO UPDATE SET + ordinal = EXCLUDED.ordinal, + value_json = EXCLUDED.value_json, + note = EXCLUDED.note, + updated_at = EXCLUDED.updated_at", + setting + ); + return affected > 0; + } + + public async Task DeleteSettingAsync(string key) + { + using var conn = _connectionFactory.CreateConnection(); + var affected = await conn.ExecuteAsync( + "DELETE FROM quantengine.settings WHERE key = @Key", + new { Key = key } + ); + return affected > 0; + } + + // AccountSnapshot + public async Task> GetAccountSnapshotsAsync() + { + using var conn = _connectionFactory.CreateConnection(); + return await conn.QueryAsync(@" + SELECT ordinal, row_json as RowJson, captured_at as CapturedAt, account, account_type as AccountType, + ticker, name, parse_status as ParseStatus, user_confirmed as UserConfirmed, updated_at as UpdatedAt + FROM quantengine.account_snapshot + ORDER BY ordinal ASC" + ); + } + + public async Task InsertAccountSnapshotsAsync(IEnumerable snapshots) + { + using var conn = _connectionFactory.CreateConnection(); + conn.Open(); + using var tx = conn.BeginTransaction(); + try + { + foreach (var snapshot in snapshots) + { + await conn.ExecuteAsync(@" + INSERT INTO quantengine.account_snapshot (ordinal, row_json, captured_at, account, account_type, ticker, name, parse_status, user_confirmed, updated_at) + VALUES (@Ordinal, @RowJson, @CapturedAt, @Account, @AccountType, @Ticker, @Name, @ParseStatus, @UserConfirmed, @UpdatedAt)", + snapshot, + tx + ); + } + tx.Commit(); + return true; + } + catch + { + tx.Rollback(); + throw; + } + } + + public async Task ClearAccountSnapshotsAsync() + { + using var conn = _connectionFactory.CreateConnection(); + var affected = await conn.ExecuteAsync("DELETE FROM quantengine.account_snapshot"); + return affected >= 0; + } + + // WorkspaceApproval + public async Task> GetApprovalsAsync() + { + using var conn = _connectionFactory.CreateConnection(); + return await conn.QueryAsync(@" + SELECT domain, target_ref as TargetRef, status, approved_by as ApprovedBy, + approved_at as ApprovedAt, note, updated_at as UpdatedAt + FROM quantengine.workspace_approval_v2" + ); + } + + public async Task GetApprovalAsync(string domain, string targetRef) + { + using var conn = _connectionFactory.CreateConnection(); + return await conn.QueryFirstOrDefaultAsync(@" + SELECT domain, target_ref as TargetRef, status, approved_by as ApprovedBy, + approved_at as ApprovedAt, note, updated_at as UpdatedAt + FROM quantengine.workspace_approval_v2 + WHERE domain = @Domain AND target_ref = @TargetRef", + new { Domain = domain, TargetRef = targetRef } + ); + } + + public async Task UpsertApprovalAsync(WorkspaceApproval approval) + { + using var conn = _connectionFactory.CreateConnection(); + var affected = await conn.ExecuteAsync(@" + INSERT INTO quantengine.workspace_approval_v2 (domain, target_ref, status, approved_by, approved_at, note, updated_at) + VALUES (@Domain, @TargetRef, @Status, @ApprovedBy, @ApprovedAt, @Note, @UpdatedAt) + ON CONFLICT (domain, target_ref) DO UPDATE SET + status = EXCLUDED.status, + approved_by = EXCLUDED.approved_by, + approved_at = EXCLUDED.approved_at, + note = EXCLUDED.note, + updated_at = EXCLUDED.updated_at", + approval + ); + return affected > 0; + } + + // WorkspaceLock + public async Task> GetLocksAsync() + { + using var conn = _connectionFactory.CreateConnection(); + return await conn.QueryAsync(@" + SELECT domain, target_ref as TargetRef, locked_by as LockedBy, reason, locked_at as LockedAt + FROM quantengine.workspace_lock" + ); + } + + public async Task GetLockAsync(string domain, string targetRef) + { + using var conn = _connectionFactory.CreateConnection(); + return await conn.QueryFirstOrDefaultAsync(@" + SELECT domain, target_ref as TargetRef, locked_by as LockedBy, reason, locked_at as LockedAt + FROM quantengine.workspace_lock + WHERE domain = @Domain AND target_ref = @TargetRef", + new { Domain = domain, TargetRef = targetRef } + ); + } + + public async Task AcquireLockAsync(WorkspaceLock @lock) + { + using var conn = _connectionFactory.CreateConnection(); + var affected = await conn.ExecuteAsync(@" + INSERT INTO quantengine.workspace_lock (domain, target_ref, locked_by, reason, locked_at) + VALUES (@Domain, @TargetRef, @LockedBy, @Reason, @LockedAt) + ON CONFLICT (domain, target_ref) DO NOTHING", + @lock + ); + return affected > 0; + } + + public async Task ReleaseLockAsync(string domain, string targetRef) + { + using var conn = _connectionFactory.CreateConnection(); + var affected = await conn.ExecuteAsync( + "DELETE FROM quantengine.workspace_lock WHERE domain = @Domain AND target_ref = @TargetRef", + new { Domain = domain, TargetRef = targetRef } + ); + return affected > 0; + } + } +} diff --git a/src/dotnet/QuantEngine.Infrastructure/bin/Debug/net10.0/QuantEngine.Application.dll b/src/dotnet/QuantEngine.Infrastructure/bin/Debug/net10.0/QuantEngine.Application.dll new file mode 100644 index 0000000..f2eab53 Binary files /dev/null and b/src/dotnet/QuantEngine.Infrastructure/bin/Debug/net10.0/QuantEngine.Application.dll differ diff --git a/src/dotnet/QuantEngine.Infrastructure/bin/Debug/net10.0/QuantEngine.Application.pdb b/src/dotnet/QuantEngine.Infrastructure/bin/Debug/net10.0/QuantEngine.Application.pdb new file mode 100644 index 0000000..598efce Binary files /dev/null and b/src/dotnet/QuantEngine.Infrastructure/bin/Debug/net10.0/QuantEngine.Application.pdb differ diff --git a/src/dotnet/QuantEngine.Infrastructure/bin/Debug/net10.0/QuantEngine.Core.dll b/src/dotnet/QuantEngine.Infrastructure/bin/Debug/net10.0/QuantEngine.Core.dll new file mode 100644 index 0000000..6423906 Binary files /dev/null and b/src/dotnet/QuantEngine.Infrastructure/bin/Debug/net10.0/QuantEngine.Core.dll differ diff --git a/src/dotnet/QuantEngine.Infrastructure/bin/Debug/net10.0/QuantEngine.Core.pdb b/src/dotnet/QuantEngine.Infrastructure/bin/Debug/net10.0/QuantEngine.Core.pdb new file mode 100644 index 0000000..72dafcd Binary files /dev/null and b/src/dotnet/QuantEngine.Infrastructure/bin/Debug/net10.0/QuantEngine.Core.pdb differ diff --git a/src/dotnet/QuantEngine.Infrastructure/bin/Debug/net10.0/QuantEngine.Infrastructure.deps.json b/src/dotnet/QuantEngine.Infrastructure/bin/Debug/net10.0/QuantEngine.Infrastructure.deps.json new file mode 100644 index 0000000..41a479c --- /dev/null +++ b/src/dotnet/QuantEngine.Infrastructure/bin/Debug/net10.0/QuantEngine.Infrastructure.deps.json @@ -0,0 +1,124 @@ +{ + "runtimeTarget": { + "name": ".NETCoreApp,Version=v10.0", + "signature": "" + }, + "compilationOptions": {}, + "targets": { + ".NETCoreApp,Version=v10.0": { + "QuantEngine.Infrastructure/1.0.0": { + "dependencies": { + "Dapper": "2.1.79", + "Npgsql": "10.0.3", + "QuantEngine.Application": "1.0.0", + "QuantEngine.Core": "1.0.0" + }, + "runtime": { + "QuantEngine.Infrastructure.dll": {} + } + }, + "Dapper/2.1.79": { + "runtime": { + "lib/net10.0/Dapper.dll": { + "assemblyVersion": "2.0.0.0", + "fileVersion": "2.1.79.29349" + } + } + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/10.0.0": { + "runtime": { + "lib/net10.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": { + "assemblyVersion": "10.0.0.0", + "fileVersion": "10.0.25.52411" + } + } + }, + "Microsoft.Extensions.Logging.Abstractions/10.0.0": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "10.0.0" + }, + "runtime": { + "lib/net10.0/Microsoft.Extensions.Logging.Abstractions.dll": { + "assemblyVersion": "10.0.0.0", + "fileVersion": "10.0.25.52411" + } + } + }, + "Npgsql/10.0.3": { + "dependencies": { + "Microsoft.Extensions.Logging.Abstractions": "10.0.0" + }, + "runtime": { + "lib/net10.0/Npgsql.dll": { + "assemblyVersion": "10.0.3.0", + "fileVersion": "10.0.3.0" + } + } + }, + "QuantEngine.Application/1.0.0": { + "dependencies": { + "QuantEngine.Core": "1.0.0" + }, + "runtime": { + "QuantEngine.Application.dll": { + "assemblyVersion": "1.0.0.0", + "fileVersion": "1.0.0.0" + } + } + }, + "QuantEngine.Core/1.0.0": { + "runtime": { + "QuantEngine.Core.dll": { + "assemblyVersion": "1.0.0.0", + "fileVersion": "1.0.0.0" + } + } + } + } + }, + "libraries": { + "QuantEngine.Infrastructure/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + }, + "Dapper/2.1.79": { + "type": "package", + "serviceable": true, + "sha512": "sha512-8YijbzgTfmqmQOnVNorYM6K++pxqnW3nJ4aC1sRHzxUA2CcuoJ9gsTem3kgBnPRMc38zZHl4Esb6hAezXIEEuw==", + "path": "dapper/2.1.79", + "hashPath": "dapper.2.1.79.nupkg.sha512" + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/10.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-L3AdmZ1WOK4XXT5YFPEwyt0ep6l8lGIPs7F5OOBZc77Zqeo01Of7XXICy47628sdVl0v/owxYJTe86DTgFwKCA==", + "path": "microsoft.extensions.dependencyinjection.abstractions/10.0.0", + "hashPath": "microsoft.extensions.dependencyinjection.abstractions.10.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Logging.Abstractions/10.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-FU/IfjDfwaMuKr414SSQNTIti/69bHEMb+QKrskRb26oVqpx3lNFXMjs/RC9ZUuhBhcwDM2BwOgoMw+PZ+beqQ==", + "path": "microsoft.extensions.logging.abstractions/10.0.0", + "hashPath": "microsoft.extensions.logging.abstractions.10.0.0.nupkg.sha512" + }, + "Npgsql/10.0.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-7nb5YzXuvWWJxB0J8DiyL3we+X4FOctZrt0fIBnucOIaIevFEEwGQVZKtiu9olXdlNAK1eNgqSral6r/jlhI4w==", + "path": "npgsql/10.0.3", + "hashPath": "npgsql.10.0.3.nupkg.sha512" + }, + "QuantEngine.Application/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + }, + "QuantEngine.Core/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + } + } +} \ No newline at end of file diff --git a/src/dotnet/QuantEngine.Infrastructure/bin/Debug/net10.0/QuantEngine.Infrastructure.dll b/src/dotnet/QuantEngine.Infrastructure/bin/Debug/net10.0/QuantEngine.Infrastructure.dll new file mode 100644 index 0000000..2efbdb6 Binary files /dev/null and b/src/dotnet/QuantEngine.Infrastructure/bin/Debug/net10.0/QuantEngine.Infrastructure.dll differ diff --git a/src/dotnet/QuantEngine.Infrastructure/bin/Debug/net10.0/QuantEngine.Infrastructure.pdb b/src/dotnet/QuantEngine.Infrastructure/bin/Debug/net10.0/QuantEngine.Infrastructure.pdb new file mode 100644 index 0000000..5655454 Binary files /dev/null and b/src/dotnet/QuantEngine.Infrastructure/bin/Debug/net10.0/QuantEngine.Infrastructure.pdb differ diff --git a/src/dotnet/QuantEngine.Infrastructure/obj/Debug/net10.0/.NETCoreApp,Version=v10.0.AssemblyAttributes.cs b/src/dotnet/QuantEngine.Infrastructure/obj/Debug/net10.0/.NETCoreApp,Version=v10.0.AssemblyAttributes.cs new file mode 100644 index 0000000..925b135 --- /dev/null +++ b/src/dotnet/QuantEngine.Infrastructure/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/src/dotnet/QuantEngine.Infrastructure/obj/Debug/net10.0/QuantEng.BF5EDD9E.Up2Date b/src/dotnet/QuantEngine.Infrastructure/obj/Debug/net10.0/QuantEng.BF5EDD9E.Up2Date new file mode 100644 index 0000000..e69de29 diff --git a/src/dotnet/QuantEngine.Infrastructure/obj/Debug/net10.0/QuantEngine.Infrastructure.AssemblyInfo.cs b/src/dotnet/QuantEngine.Infrastructure/obj/Debug/net10.0/QuantEngine.Infrastructure.AssemblyInfo.cs new file mode 100644 index 0000000..88fcca3 --- /dev/null +++ b/src/dotnet/QuantEngine.Infrastructure/obj/Debug/net10.0/QuantEngine.Infrastructure.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("QuantEngine.Infrastructure")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+9abb8d3bc31eb38d5c27cbd3ca734da4eeec9609")] +[assembly: System.Reflection.AssemblyProductAttribute("QuantEngine.Infrastructure")] +[assembly: System.Reflection.AssemblyTitleAttribute("QuantEngine.Infrastructure")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] + +// MSBuild WriteCodeFragment 클래스에서 생성되었습니다. + diff --git a/src/dotnet/QuantEngine.Infrastructure/obj/Debug/net10.0/QuantEngine.Infrastructure.AssemblyInfoInputs.cache b/src/dotnet/QuantEngine.Infrastructure/obj/Debug/net10.0/QuantEngine.Infrastructure.AssemblyInfoInputs.cache new file mode 100644 index 0000000..fb9700c --- /dev/null +++ b/src/dotnet/QuantEngine.Infrastructure/obj/Debug/net10.0/QuantEngine.Infrastructure.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +9a96d7ffc63c4641ea3439cffb43b648862abf07d373a4a1eb7b5d5b990f9867 diff --git a/src/dotnet/QuantEngine.Infrastructure/obj/Debug/net10.0/QuantEngine.Infrastructure.GeneratedMSBuildEditorConfig.editorconfig b/src/dotnet/QuantEngine.Infrastructure/obj/Debug/net10.0/QuantEngine.Infrastructure.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..0af63e3 --- /dev/null +++ b/src/dotnet/QuantEngine.Infrastructure/obj/Debug/net10.0/QuantEngine.Infrastructure.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 = QuantEngine.Infrastructure +build_property.ProjectDir = C:\Temp\data_feed\src\dotnet\QuantEngine.Infrastructure\ +build_property.EnableComHosting = +build_property.EnableGeneratedComInterfaceComImportInterop = +build_property.EffectiveAnalysisLevelStyle = 10.0 +build_property.EnableCodeStyleSeverity = diff --git a/src/dotnet/QuantEngine.Infrastructure/obj/Debug/net10.0/QuantEngine.Infrastructure.GlobalUsings.g.cs b/src/dotnet/QuantEngine.Infrastructure/obj/Debug/net10.0/QuantEngine.Infrastructure.GlobalUsings.g.cs new file mode 100644 index 0000000..d12bcbc --- /dev/null +++ b/src/dotnet/QuantEngine.Infrastructure/obj/Debug/net10.0/QuantEngine.Infrastructure.GlobalUsings.g.cs @@ -0,0 +1,8 @@ +// +global using System; +global using System.Collections.Generic; +global using System.IO; +global using System.Linq; +global using System.Net.Http; +global using System.Threading; +global using System.Threading.Tasks; diff --git a/src/dotnet/QuantEngine.Infrastructure/obj/Debug/net10.0/QuantEngine.Infrastructure.assets.cache b/src/dotnet/QuantEngine.Infrastructure/obj/Debug/net10.0/QuantEngine.Infrastructure.assets.cache new file mode 100644 index 0000000..6cdeecd Binary files /dev/null and b/src/dotnet/QuantEngine.Infrastructure/obj/Debug/net10.0/QuantEngine.Infrastructure.assets.cache differ diff --git a/src/dotnet/QuantEngine.Infrastructure/obj/Debug/net10.0/QuantEngine.Infrastructure.csproj.AssemblyReference.cache b/src/dotnet/QuantEngine.Infrastructure/obj/Debug/net10.0/QuantEngine.Infrastructure.csproj.AssemblyReference.cache new file mode 100644 index 0000000..0b93ce2 Binary files /dev/null and b/src/dotnet/QuantEngine.Infrastructure/obj/Debug/net10.0/QuantEngine.Infrastructure.csproj.AssemblyReference.cache differ diff --git a/src/dotnet/QuantEngine.Infrastructure/obj/Debug/net10.0/QuantEngine.Infrastructure.csproj.CoreCompileInputs.cache b/src/dotnet/QuantEngine.Infrastructure/obj/Debug/net10.0/QuantEngine.Infrastructure.csproj.CoreCompileInputs.cache new file mode 100644 index 0000000..9963e06 --- /dev/null +++ b/src/dotnet/QuantEngine.Infrastructure/obj/Debug/net10.0/QuantEngine.Infrastructure.csproj.CoreCompileInputs.cache @@ -0,0 +1 @@ +48e35adcfd2c7bd2c7ea0f9fbb0c42d7a075ec73ba1126723ded9dae4555fbab diff --git a/src/dotnet/QuantEngine.Infrastructure/obj/Debug/net10.0/QuantEngine.Infrastructure.csproj.FileListAbsolute.txt b/src/dotnet/QuantEngine.Infrastructure/obj/Debug/net10.0/QuantEngine.Infrastructure.csproj.FileListAbsolute.txt new file mode 100644 index 0000000..fa64b60 --- /dev/null +++ b/src/dotnet/QuantEngine.Infrastructure/obj/Debug/net10.0/QuantEngine.Infrastructure.csproj.FileListAbsolute.txt @@ -0,0 +1,17 @@ +C:\Temp\data_feed\src\dotnet\QuantEngine.Infrastructure\bin\Debug\net10.0\QuantEngine.Infrastructure.deps.json +C:\Temp\data_feed\src\dotnet\QuantEngine.Infrastructure\bin\Debug\net10.0\QuantEngine.Infrastructure.dll +C:\Temp\data_feed\src\dotnet\QuantEngine.Infrastructure\bin\Debug\net10.0\QuantEngine.Infrastructure.pdb +C:\Temp\data_feed\src\dotnet\QuantEngine.Infrastructure\bin\Debug\net10.0\QuantEngine.Application.dll +C:\Temp\data_feed\src\dotnet\QuantEngine.Infrastructure\bin\Debug\net10.0\QuantEngine.Core.dll +C:\Temp\data_feed\src\dotnet\QuantEngine.Infrastructure\bin\Debug\net10.0\QuantEngine.Core.pdb +C:\Temp\data_feed\src\dotnet\QuantEngine.Infrastructure\bin\Debug\net10.0\QuantEngine.Application.pdb +C:\Temp\data_feed\src\dotnet\QuantEngine.Infrastructure\obj\Debug\net10.0\QuantEngine.Infrastructure.csproj.AssemblyReference.cache +C:\Temp\data_feed\src\dotnet\QuantEngine.Infrastructure\obj\Debug\net10.0\QuantEngine.Infrastructure.GeneratedMSBuildEditorConfig.editorconfig +C:\Temp\data_feed\src\dotnet\QuantEngine.Infrastructure\obj\Debug\net10.0\QuantEngine.Infrastructure.AssemblyInfoInputs.cache +C:\Temp\data_feed\src\dotnet\QuantEngine.Infrastructure\obj\Debug\net10.0\QuantEngine.Infrastructure.AssemblyInfo.cs +C:\Temp\data_feed\src\dotnet\QuantEngine.Infrastructure\obj\Debug\net10.0\QuantEngine.Infrastructure.csproj.CoreCompileInputs.cache +C:\Temp\data_feed\src\dotnet\QuantEngine.Infrastructure\obj\Debug\net10.0\QuantEng.BF5EDD9E.Up2Date +C:\Temp\data_feed\src\dotnet\QuantEngine.Infrastructure\obj\Debug\net10.0\QuantEngine.Infrastructure.dll +C:\Temp\data_feed\src\dotnet\QuantEngine.Infrastructure\obj\Debug\net10.0\refint\QuantEngine.Infrastructure.dll +C:\Temp\data_feed\src\dotnet\QuantEngine.Infrastructure\obj\Debug\net10.0\QuantEngine.Infrastructure.pdb +C:\Temp\data_feed\src\dotnet\QuantEngine.Infrastructure\obj\Debug\net10.0\ref\QuantEngine.Infrastructure.dll diff --git a/src/dotnet/QuantEngine.Infrastructure/obj/Debug/net10.0/QuantEngine.Infrastructure.dll b/src/dotnet/QuantEngine.Infrastructure/obj/Debug/net10.0/QuantEngine.Infrastructure.dll new file mode 100644 index 0000000..2efbdb6 Binary files /dev/null and b/src/dotnet/QuantEngine.Infrastructure/obj/Debug/net10.0/QuantEngine.Infrastructure.dll differ diff --git a/src/dotnet/QuantEngine.Infrastructure/obj/Debug/net10.0/QuantEngine.Infrastructure.pdb b/src/dotnet/QuantEngine.Infrastructure/obj/Debug/net10.0/QuantEngine.Infrastructure.pdb new file mode 100644 index 0000000..5655454 Binary files /dev/null and b/src/dotnet/QuantEngine.Infrastructure/obj/Debug/net10.0/QuantEngine.Infrastructure.pdb differ diff --git a/src/dotnet/QuantEngine.Infrastructure/obj/Debug/net10.0/ref/QuantEngine.Infrastructure.dll b/src/dotnet/QuantEngine.Infrastructure/obj/Debug/net10.0/ref/QuantEngine.Infrastructure.dll new file mode 100644 index 0000000..bb451c1 Binary files /dev/null and b/src/dotnet/QuantEngine.Infrastructure/obj/Debug/net10.0/ref/QuantEngine.Infrastructure.dll differ diff --git a/src/dotnet/QuantEngine.Infrastructure/obj/Debug/net10.0/refint/QuantEngine.Infrastructure.dll b/src/dotnet/QuantEngine.Infrastructure/obj/Debug/net10.0/refint/QuantEngine.Infrastructure.dll new file mode 100644 index 0000000..bb451c1 Binary files /dev/null and b/src/dotnet/QuantEngine.Infrastructure/obj/Debug/net10.0/refint/QuantEngine.Infrastructure.dll differ diff --git a/src/dotnet/QuantEngine.Infrastructure/obj/QuantEngine.Infrastructure.csproj.nuget.dgspec.json b/src/dotnet/QuantEngine.Infrastructure/obj/QuantEngine.Infrastructure.csproj.nuget.dgspec.json new file mode 100644 index 0000000..1eada3f --- /dev/null +++ b/src/dotnet/QuantEngine.Infrastructure/obj/QuantEngine.Infrastructure.csproj.nuget.dgspec.json @@ -0,0 +1,1059 @@ +{ + "format": 1, + "restore": { + "C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Infrastructure\\QuantEngine.Infrastructure.csproj": {} + }, + "projects": { + "C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Application\\QuantEngine.Application.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Application\\QuantEngine.Application.csproj", + "projectName": "QuantEngine.Application", + "projectPath": "C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Application\\QuantEngine.Application.csproj", + "packagesPath": "C:\\Users\\kjh20\\.nuget\\packages\\", + "outputPath": "C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Application\\obj\\", + "projectStyle": "PackageReference", + "fallbackFolders": [ + "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages", + "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder" + ], + "configFilePaths": [ + "C:\\Users\\kjh20\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "net10.0" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "C:\\Program Files\\dotnet\\library-packs": {}, + "https://api.nuget.org/v3/index.json": {}, + "https://nuget.telerik.com/v3/index.json": {} + }, + "frameworks": { + "net10.0": { + "targetAlias": "net10.0", + "projectReferences": { + "C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Core\\QuantEngine.Core.csproj": { + "projectPath": "C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Core\\QuantEngine.Core.csproj" + } + } + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + }, + "restoreAuditProperties": { + "enableAudit": "true", + "auditLevel": "low", + "auditMode": "all" + }, + "SdkAnalysisLevel": "10.0.100" + }, + "frameworks": { + "net10.0": { + "targetAlias": "net10.0", + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\10.0.100/PortableRuntimeIdentifierGraph.json", + "packagesToPrune": { + "Microsoft.CSharp": "(,4.7.32767]", + "Microsoft.VisualBasic": "(,10.4.32767]", + "Microsoft.Win32.Primitives": "(,4.3.32767]", + "Microsoft.Win32.Registry": "(,5.0.32767]", + "runtime.any.System.Collections": "(,4.3.32767]", + "runtime.any.System.Diagnostics.Tools": "(,4.3.32767]", + "runtime.any.System.Diagnostics.Tracing": "(,4.3.32767]", + "runtime.any.System.Globalization": "(,4.3.32767]", + "runtime.any.System.Globalization.Calendars": "(,4.3.32767]", + "runtime.any.System.IO": "(,4.3.32767]", + "runtime.any.System.Reflection": "(,4.3.32767]", + "runtime.any.System.Reflection.Extensions": "(,4.3.32767]", + "runtime.any.System.Reflection.Primitives": "(,4.3.32767]", + "runtime.any.System.Resources.ResourceManager": "(,4.3.32767]", + "runtime.any.System.Runtime": "(,4.3.32767]", + "runtime.any.System.Runtime.Handles": "(,4.3.32767]", + "runtime.any.System.Runtime.InteropServices": "(,4.3.32767]", + "runtime.any.System.Text.Encoding": "(,4.3.32767]", + "runtime.any.System.Text.Encoding.Extensions": "(,4.3.32767]", + "runtime.any.System.Threading.Tasks": "(,4.3.32767]", + "runtime.any.System.Threading.Timer": "(,4.3.32767]", + "runtime.aot.System.Collections": "(,4.3.32767]", + "runtime.aot.System.Diagnostics.Tools": "(,4.3.32767]", + "runtime.aot.System.Diagnostics.Tracing": "(,4.3.32767]", + "runtime.aot.System.Globalization": "(,4.3.32767]", + "runtime.aot.System.Globalization.Calendars": "(,4.3.32767]", + "runtime.aot.System.IO": "(,4.3.32767]", + "runtime.aot.System.Reflection": "(,4.3.32767]", + "runtime.aot.System.Reflection.Extensions": "(,4.3.32767]", + "runtime.aot.System.Reflection.Primitives": "(,4.3.32767]", + "runtime.aot.System.Resources.ResourceManager": "(,4.3.32767]", + "runtime.aot.System.Runtime": "(,4.3.32767]", + "runtime.aot.System.Runtime.Handles": "(,4.3.32767]", + "runtime.aot.System.Runtime.InteropServices": "(,4.3.32767]", + "runtime.aot.System.Text.Encoding": "(,4.3.32767]", + "runtime.aot.System.Text.Encoding.Extensions": "(,4.3.32767]", + "runtime.aot.System.Threading.Tasks": "(,4.3.32767]", + "runtime.aot.System.Threading.Timer": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.debian.9-x64.runtime.native.System": "(,4.3.32767]", + "runtime.debian.9-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.debian.9-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.debian.9-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.fedora.27-x64.runtime.native.System": "(,4.3.32767]", + "runtime.fedora.27-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.fedora.27-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.fedora.27-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.fedora.28-x64.runtime.native.System": "(,4.3.32767]", + "runtime.fedora.28-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.fedora.28-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.fedora.28-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.opensuse.42.3-x64.runtime.native.System": "(,4.3.32767]", + "runtime.opensuse.42.3-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.opensuse.42.3-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.opensuse.42.3-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.ubuntu.18.04-x64.runtime.native.System": "(,4.3.32767]", + "runtime.ubuntu.18.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.ubuntu.18.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.ubuntu.18.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.unix.Microsoft.Win32.Primitives": "(,4.3.32767]", + "runtime.unix.System.Console": "(,4.3.32767]", + "runtime.unix.System.Diagnostics.Debug": "(,4.3.32767]", + "runtime.unix.System.IO.FileSystem": "(,4.3.32767]", + "runtime.unix.System.Net.Primitives": "(,4.3.32767]", + "runtime.unix.System.Net.Sockets": "(,4.3.32767]", + "runtime.unix.System.Private.Uri": "(,4.3.32767]", + "runtime.unix.System.Runtime.Extensions": "(,4.3.32767]", + "runtime.win.Microsoft.Win32.Primitives": "(,4.3.32767]", + "runtime.win.System.Console": "(,4.3.32767]", + "runtime.win.System.Diagnostics.Debug": "(,4.3.32767]", + "runtime.win.System.IO.FileSystem": "(,4.3.32767]", + "runtime.win.System.Net.Primitives": "(,4.3.32767]", + "runtime.win.System.Net.Sockets": "(,4.3.32767]", + "runtime.win.System.Runtime.Extensions": "(,4.3.32767]", + "runtime.win10-arm-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", + "runtime.win10-arm64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.win10-x64-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", + "runtime.win10-x86-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", + "runtime.win7-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.win7-x86.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.win7.System.Private.Uri": "(,4.3.32767]", + "runtime.win8-arm.runtime.native.System.IO.Compression": "(,4.3.32767]", + "System.AppContext": "(,4.3.32767]", + "System.Buffers": "(,5.0.32767]", + "System.Collections": "(,4.3.32767]", + "System.Collections.Concurrent": "(,4.3.32767]", + "System.Collections.Immutable": "(,10.0.32767]", + "System.Collections.NonGeneric": "(,4.3.32767]", + "System.Collections.Specialized": "(,4.3.32767]", + "System.ComponentModel": "(,4.3.32767]", + "System.ComponentModel.Annotations": "(,4.3.32767]", + "System.ComponentModel.EventBasedAsync": "(,4.3.32767]", + "System.ComponentModel.Primitives": "(,4.3.32767]", + "System.ComponentModel.TypeConverter": "(,4.3.32767]", + "System.Console": "(,4.3.32767]", + "System.Data.Common": "(,4.3.32767]", + "System.Data.DataSetExtensions": "(,4.4.32767]", + "System.Diagnostics.Contracts": "(,4.3.32767]", + "System.Diagnostics.Debug": "(,4.3.32767]", + "System.Diagnostics.DiagnosticSource": "(,10.0.32767]", + "System.Diagnostics.FileVersionInfo": "(,4.3.32767]", + "System.Diagnostics.Process": "(,4.3.32767]", + "System.Diagnostics.StackTrace": "(,4.3.32767]", + "System.Diagnostics.TextWriterTraceListener": "(,4.3.32767]", + "System.Diagnostics.Tools": "(,4.3.32767]", + "System.Diagnostics.TraceSource": "(,4.3.32767]", + "System.Diagnostics.Tracing": "(,4.3.32767]", + "System.Drawing.Primitives": "(,4.3.32767]", + "System.Dynamic.Runtime": "(,4.3.32767]", + "System.Formats.Asn1": "(,10.0.32767]", + "System.Formats.Tar": "(,10.0.32767]", + "System.Globalization": "(,4.3.32767]", + "System.Globalization.Calendars": "(,4.3.32767]", + "System.Globalization.Extensions": "(,4.3.32767]", + "System.IO": "(,4.3.32767]", + "System.IO.Compression": "(,4.3.32767]", + "System.IO.Compression.ZipFile": "(,4.3.32767]", + "System.IO.FileSystem": "(,4.3.32767]", + "System.IO.FileSystem.AccessControl": "(,4.4.32767]", + "System.IO.FileSystem.DriveInfo": "(,4.3.32767]", + "System.IO.FileSystem.Primitives": "(,4.3.32767]", + "System.IO.FileSystem.Watcher": "(,4.3.32767]", + "System.IO.IsolatedStorage": "(,4.3.32767]", + "System.IO.MemoryMappedFiles": "(,4.3.32767]", + "System.IO.Pipelines": "(,10.0.32767]", + "System.IO.Pipes": "(,4.3.32767]", + "System.IO.Pipes.AccessControl": "(,5.0.32767]", + "System.IO.UnmanagedMemoryStream": "(,4.3.32767]", + "System.Linq": "(,4.3.32767]", + "System.Linq.AsyncEnumerable": "(,10.0.32767]", + "System.Linq.Expressions": "(,4.3.32767]", + "System.Linq.Parallel": "(,4.3.32767]", + "System.Linq.Queryable": "(,4.3.32767]", + "System.Memory": "(,5.0.32767]", + "System.Net.Http": "(,4.3.32767]", + "System.Net.Http.Json": "(,10.0.32767]", + "System.Net.NameResolution": "(,4.3.32767]", + "System.Net.NetworkInformation": "(,4.3.32767]", + "System.Net.Ping": "(,4.3.32767]", + "System.Net.Primitives": "(,4.3.32767]", + "System.Net.Requests": "(,4.3.32767]", + "System.Net.Security": "(,4.3.32767]", + "System.Net.ServerSentEvents": "(,10.0.32767]", + "System.Net.Sockets": "(,4.3.32767]", + "System.Net.WebHeaderCollection": "(,4.3.32767]", + "System.Net.WebSockets": "(,4.3.32767]", + "System.Net.WebSockets.Client": "(,4.3.32767]", + "System.Numerics.Vectors": "(,5.0.32767]", + "System.ObjectModel": "(,4.3.32767]", + "System.Private.DataContractSerialization": "(,4.3.32767]", + "System.Private.Uri": "(,4.3.32767]", + "System.Reflection": "(,4.3.32767]", + "System.Reflection.DispatchProxy": "(,6.0.32767]", + "System.Reflection.Emit": "(,4.7.32767]", + "System.Reflection.Emit.ILGeneration": "(,4.7.32767]", + "System.Reflection.Emit.Lightweight": "(,4.7.32767]", + "System.Reflection.Extensions": "(,4.3.32767]", + "System.Reflection.Metadata": "(,10.0.32767]", + "System.Reflection.Primitives": "(,4.3.32767]", + "System.Reflection.TypeExtensions": "(,4.3.32767]", + "System.Resources.Reader": "(,4.3.32767]", + "System.Resources.ResourceManager": "(,4.3.32767]", + "System.Resources.Writer": "(,4.3.32767]", + "System.Runtime": "(,4.3.32767]", + "System.Runtime.CompilerServices.Unsafe": "(,7.0.32767]", + "System.Runtime.CompilerServices.VisualC": "(,4.3.32767]", + "System.Runtime.Extensions": "(,4.3.32767]", + "System.Runtime.Handles": "(,4.3.32767]", + "System.Runtime.InteropServices": "(,4.3.32767]", + "System.Runtime.InteropServices.RuntimeInformation": "(,4.3.32767]", + "System.Runtime.Loader": "(,4.3.32767]", + "System.Runtime.Numerics": "(,4.3.32767]", + "System.Runtime.Serialization.Formatters": "(,4.3.32767]", + "System.Runtime.Serialization.Json": "(,4.3.32767]", + "System.Runtime.Serialization.Primitives": "(,4.3.32767]", + "System.Runtime.Serialization.Xml": "(,4.3.32767]", + "System.Security.AccessControl": "(,6.0.32767]", + "System.Security.Claims": "(,4.3.32767]", + "System.Security.Cryptography.Algorithms": "(,4.3.32767]", + "System.Security.Cryptography.Cng": "(,5.0.32767]", + "System.Security.Cryptography.Csp": "(,4.3.32767]", + "System.Security.Cryptography.Encoding": "(,4.3.32767]", + "System.Security.Cryptography.OpenSsl": "(,5.0.32767]", + "System.Security.Cryptography.Primitives": "(,4.3.32767]", + "System.Security.Cryptography.X509Certificates": "(,4.3.32767]", + "System.Security.Principal": "(,4.3.32767]", + "System.Security.Principal.Windows": "(,5.0.32767]", + "System.Security.SecureString": "(,4.3.32767]", + "System.Text.Encoding": "(,4.3.32767]", + "System.Text.Encoding.CodePages": "(,10.0.32767]", + "System.Text.Encoding.Extensions": "(,4.3.32767]", + "System.Text.Encodings.Web": "(,10.0.32767]", + "System.Text.Json": "(,10.0.32767]", + "System.Text.RegularExpressions": "(,4.3.32767]", + "System.Threading": "(,4.3.32767]", + "System.Threading.AccessControl": "(,10.0.32767]", + "System.Threading.Channels": "(,10.0.32767]", + "System.Threading.Overlapped": "(,4.3.32767]", + "System.Threading.Tasks": "(,4.3.32767]", + "System.Threading.Tasks.Dataflow": "(,10.0.32767]", + "System.Threading.Tasks.Extensions": "(,5.0.32767]", + "System.Threading.Tasks.Parallel": "(,4.3.32767]", + "System.Threading.Thread": "(,4.3.32767]", + "System.Threading.ThreadPool": "(,4.3.32767]", + "System.Threading.Timer": "(,4.3.32767]", + "System.ValueTuple": "(,4.5.32767]", + "System.Xml.ReaderWriter": "(,4.3.32767]", + "System.Xml.XDocument": "(,4.3.32767]", + "System.Xml.XmlDocument": "(,4.3.32767]", + "System.Xml.XmlSerializer": "(,4.3.32767]", + "System.Xml.XPath": "(,4.3.32767]", + "System.Xml.XPath.XDocument": "(,5.0.32767]" + } + } + } + }, + "C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Core\\QuantEngine.Core.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Core\\QuantEngine.Core.csproj", + "projectName": "QuantEngine.Core", + "projectPath": "C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Core\\QuantEngine.Core.csproj", + "packagesPath": "C:\\Users\\kjh20\\.nuget\\packages\\", + "outputPath": "C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Core\\obj\\", + "projectStyle": "PackageReference", + "fallbackFolders": [ + "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages", + "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder" + ], + "configFilePaths": [ + "C:\\Users\\kjh20\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "net10.0" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "C:\\Program Files\\dotnet\\library-packs": {}, + "https://api.nuget.org/v3/index.json": {}, + "https://nuget.telerik.com/v3/index.json": {} + }, + "frameworks": { + "net10.0": { + "targetAlias": "net10.0", + "projectReferences": {} + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + }, + "restoreAuditProperties": { + "enableAudit": "true", + "auditLevel": "low", + "auditMode": "all" + }, + "SdkAnalysisLevel": "10.0.100" + }, + "frameworks": { + "net10.0": { + "targetAlias": "net10.0", + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\10.0.100/PortableRuntimeIdentifierGraph.json", + "packagesToPrune": { + "Microsoft.CSharp": "(,4.7.32767]", + "Microsoft.VisualBasic": "(,10.4.32767]", + "Microsoft.Win32.Primitives": "(,4.3.32767]", + "Microsoft.Win32.Registry": "(,5.0.32767]", + "runtime.any.System.Collections": "(,4.3.32767]", + "runtime.any.System.Diagnostics.Tools": "(,4.3.32767]", + "runtime.any.System.Diagnostics.Tracing": "(,4.3.32767]", + "runtime.any.System.Globalization": "(,4.3.32767]", + "runtime.any.System.Globalization.Calendars": "(,4.3.32767]", + "runtime.any.System.IO": "(,4.3.32767]", + "runtime.any.System.Reflection": "(,4.3.32767]", + "runtime.any.System.Reflection.Extensions": "(,4.3.32767]", + "runtime.any.System.Reflection.Primitives": "(,4.3.32767]", + "runtime.any.System.Resources.ResourceManager": "(,4.3.32767]", + "runtime.any.System.Runtime": "(,4.3.32767]", + "runtime.any.System.Runtime.Handles": "(,4.3.32767]", + "runtime.any.System.Runtime.InteropServices": "(,4.3.32767]", + "runtime.any.System.Text.Encoding": "(,4.3.32767]", + "runtime.any.System.Text.Encoding.Extensions": "(,4.3.32767]", + "runtime.any.System.Threading.Tasks": "(,4.3.32767]", + "runtime.any.System.Threading.Timer": "(,4.3.32767]", + "runtime.aot.System.Collections": "(,4.3.32767]", + "runtime.aot.System.Diagnostics.Tools": "(,4.3.32767]", + "runtime.aot.System.Diagnostics.Tracing": "(,4.3.32767]", + "runtime.aot.System.Globalization": "(,4.3.32767]", + "runtime.aot.System.Globalization.Calendars": "(,4.3.32767]", + "runtime.aot.System.IO": "(,4.3.32767]", + "runtime.aot.System.Reflection": "(,4.3.32767]", + "runtime.aot.System.Reflection.Extensions": "(,4.3.32767]", + "runtime.aot.System.Reflection.Primitives": "(,4.3.32767]", + "runtime.aot.System.Resources.ResourceManager": "(,4.3.32767]", + "runtime.aot.System.Runtime": "(,4.3.32767]", + "runtime.aot.System.Runtime.Handles": "(,4.3.32767]", + "runtime.aot.System.Runtime.InteropServices": "(,4.3.32767]", + "runtime.aot.System.Text.Encoding": "(,4.3.32767]", + "runtime.aot.System.Text.Encoding.Extensions": "(,4.3.32767]", + "runtime.aot.System.Threading.Tasks": "(,4.3.32767]", + "runtime.aot.System.Threading.Timer": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.debian.9-x64.runtime.native.System": "(,4.3.32767]", + "runtime.debian.9-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.debian.9-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.debian.9-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.fedora.27-x64.runtime.native.System": "(,4.3.32767]", + "runtime.fedora.27-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.fedora.27-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.fedora.27-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.fedora.28-x64.runtime.native.System": "(,4.3.32767]", + "runtime.fedora.28-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.fedora.28-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.fedora.28-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.opensuse.42.3-x64.runtime.native.System": "(,4.3.32767]", + "runtime.opensuse.42.3-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.opensuse.42.3-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.opensuse.42.3-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.ubuntu.18.04-x64.runtime.native.System": "(,4.3.32767]", + "runtime.ubuntu.18.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.ubuntu.18.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.ubuntu.18.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.unix.Microsoft.Win32.Primitives": "(,4.3.32767]", + "runtime.unix.System.Console": "(,4.3.32767]", + "runtime.unix.System.Diagnostics.Debug": "(,4.3.32767]", + "runtime.unix.System.IO.FileSystem": "(,4.3.32767]", + "runtime.unix.System.Net.Primitives": "(,4.3.32767]", + "runtime.unix.System.Net.Sockets": "(,4.3.32767]", + "runtime.unix.System.Private.Uri": "(,4.3.32767]", + "runtime.unix.System.Runtime.Extensions": "(,4.3.32767]", + "runtime.win.Microsoft.Win32.Primitives": "(,4.3.32767]", + "runtime.win.System.Console": "(,4.3.32767]", + "runtime.win.System.Diagnostics.Debug": "(,4.3.32767]", + "runtime.win.System.IO.FileSystem": "(,4.3.32767]", + "runtime.win.System.Net.Primitives": "(,4.3.32767]", + "runtime.win.System.Net.Sockets": "(,4.3.32767]", + "runtime.win.System.Runtime.Extensions": "(,4.3.32767]", + "runtime.win10-arm-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", + "runtime.win10-arm64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.win10-x64-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", + "runtime.win10-x86-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", + "runtime.win7-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.win7-x86.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.win7.System.Private.Uri": "(,4.3.32767]", + "runtime.win8-arm.runtime.native.System.IO.Compression": "(,4.3.32767]", + "System.AppContext": "(,4.3.32767]", + "System.Buffers": "(,5.0.32767]", + "System.Collections": "(,4.3.32767]", + "System.Collections.Concurrent": "(,4.3.32767]", + "System.Collections.Immutable": "(,10.0.32767]", + "System.Collections.NonGeneric": "(,4.3.32767]", + "System.Collections.Specialized": "(,4.3.32767]", + "System.ComponentModel": "(,4.3.32767]", + "System.ComponentModel.Annotations": "(,4.3.32767]", + "System.ComponentModel.EventBasedAsync": "(,4.3.32767]", + "System.ComponentModel.Primitives": "(,4.3.32767]", + "System.ComponentModel.TypeConverter": "(,4.3.32767]", + "System.Console": "(,4.3.32767]", + "System.Data.Common": "(,4.3.32767]", + "System.Data.DataSetExtensions": "(,4.4.32767]", + "System.Diagnostics.Contracts": "(,4.3.32767]", + "System.Diagnostics.Debug": "(,4.3.32767]", + "System.Diagnostics.DiagnosticSource": "(,10.0.32767]", + "System.Diagnostics.FileVersionInfo": "(,4.3.32767]", + "System.Diagnostics.Process": "(,4.3.32767]", + "System.Diagnostics.StackTrace": "(,4.3.32767]", + "System.Diagnostics.TextWriterTraceListener": "(,4.3.32767]", + "System.Diagnostics.Tools": "(,4.3.32767]", + "System.Diagnostics.TraceSource": "(,4.3.32767]", + "System.Diagnostics.Tracing": "(,4.3.32767]", + "System.Drawing.Primitives": "(,4.3.32767]", + "System.Dynamic.Runtime": "(,4.3.32767]", + "System.Formats.Asn1": "(,10.0.32767]", + "System.Formats.Tar": "(,10.0.32767]", + "System.Globalization": "(,4.3.32767]", + "System.Globalization.Calendars": "(,4.3.32767]", + "System.Globalization.Extensions": "(,4.3.32767]", + "System.IO": "(,4.3.32767]", + "System.IO.Compression": "(,4.3.32767]", + "System.IO.Compression.ZipFile": "(,4.3.32767]", + "System.IO.FileSystem": "(,4.3.32767]", + "System.IO.FileSystem.AccessControl": "(,4.4.32767]", + "System.IO.FileSystem.DriveInfo": "(,4.3.32767]", + "System.IO.FileSystem.Primitives": "(,4.3.32767]", + "System.IO.FileSystem.Watcher": "(,4.3.32767]", + "System.IO.IsolatedStorage": "(,4.3.32767]", + "System.IO.MemoryMappedFiles": "(,4.3.32767]", + "System.IO.Pipelines": "(,10.0.32767]", + "System.IO.Pipes": "(,4.3.32767]", + "System.IO.Pipes.AccessControl": "(,5.0.32767]", + "System.IO.UnmanagedMemoryStream": "(,4.3.32767]", + "System.Linq": "(,4.3.32767]", + "System.Linq.AsyncEnumerable": "(,10.0.32767]", + "System.Linq.Expressions": "(,4.3.32767]", + "System.Linq.Parallel": "(,4.3.32767]", + "System.Linq.Queryable": "(,4.3.32767]", + "System.Memory": "(,5.0.32767]", + "System.Net.Http": "(,4.3.32767]", + "System.Net.Http.Json": "(,10.0.32767]", + "System.Net.NameResolution": "(,4.3.32767]", + "System.Net.NetworkInformation": "(,4.3.32767]", + "System.Net.Ping": "(,4.3.32767]", + "System.Net.Primitives": "(,4.3.32767]", + "System.Net.Requests": "(,4.3.32767]", + "System.Net.Security": "(,4.3.32767]", + "System.Net.ServerSentEvents": "(,10.0.32767]", + "System.Net.Sockets": "(,4.3.32767]", + "System.Net.WebHeaderCollection": "(,4.3.32767]", + "System.Net.WebSockets": "(,4.3.32767]", + "System.Net.WebSockets.Client": "(,4.3.32767]", + "System.Numerics.Vectors": "(,5.0.32767]", + "System.ObjectModel": "(,4.3.32767]", + "System.Private.DataContractSerialization": "(,4.3.32767]", + "System.Private.Uri": "(,4.3.32767]", + "System.Reflection": "(,4.3.32767]", + "System.Reflection.DispatchProxy": "(,6.0.32767]", + "System.Reflection.Emit": "(,4.7.32767]", + "System.Reflection.Emit.ILGeneration": "(,4.7.32767]", + "System.Reflection.Emit.Lightweight": "(,4.7.32767]", + "System.Reflection.Extensions": "(,4.3.32767]", + "System.Reflection.Metadata": "(,10.0.32767]", + "System.Reflection.Primitives": "(,4.3.32767]", + "System.Reflection.TypeExtensions": "(,4.3.32767]", + "System.Resources.Reader": "(,4.3.32767]", + "System.Resources.ResourceManager": "(,4.3.32767]", + "System.Resources.Writer": "(,4.3.32767]", + "System.Runtime": "(,4.3.32767]", + "System.Runtime.CompilerServices.Unsafe": "(,7.0.32767]", + "System.Runtime.CompilerServices.VisualC": "(,4.3.32767]", + "System.Runtime.Extensions": "(,4.3.32767]", + "System.Runtime.Handles": "(,4.3.32767]", + "System.Runtime.InteropServices": "(,4.3.32767]", + "System.Runtime.InteropServices.RuntimeInformation": "(,4.3.32767]", + "System.Runtime.Loader": "(,4.3.32767]", + "System.Runtime.Numerics": "(,4.3.32767]", + "System.Runtime.Serialization.Formatters": "(,4.3.32767]", + "System.Runtime.Serialization.Json": "(,4.3.32767]", + "System.Runtime.Serialization.Primitives": "(,4.3.32767]", + "System.Runtime.Serialization.Xml": "(,4.3.32767]", + "System.Security.AccessControl": "(,6.0.32767]", + "System.Security.Claims": "(,4.3.32767]", + "System.Security.Cryptography.Algorithms": "(,4.3.32767]", + "System.Security.Cryptography.Cng": "(,5.0.32767]", + "System.Security.Cryptography.Csp": "(,4.3.32767]", + "System.Security.Cryptography.Encoding": "(,4.3.32767]", + "System.Security.Cryptography.OpenSsl": "(,5.0.32767]", + "System.Security.Cryptography.Primitives": "(,4.3.32767]", + "System.Security.Cryptography.X509Certificates": "(,4.3.32767]", + "System.Security.Principal": "(,4.3.32767]", + "System.Security.Principal.Windows": "(,5.0.32767]", + "System.Security.SecureString": "(,4.3.32767]", + "System.Text.Encoding": "(,4.3.32767]", + "System.Text.Encoding.CodePages": "(,10.0.32767]", + "System.Text.Encoding.Extensions": "(,4.3.32767]", + "System.Text.Encodings.Web": "(,10.0.32767]", + "System.Text.Json": "(,10.0.32767]", + "System.Text.RegularExpressions": "(,4.3.32767]", + "System.Threading": "(,4.3.32767]", + "System.Threading.AccessControl": "(,10.0.32767]", + "System.Threading.Channels": "(,10.0.32767]", + "System.Threading.Overlapped": "(,4.3.32767]", + "System.Threading.Tasks": "(,4.3.32767]", + "System.Threading.Tasks.Dataflow": "(,10.0.32767]", + "System.Threading.Tasks.Extensions": "(,5.0.32767]", + "System.Threading.Tasks.Parallel": "(,4.3.32767]", + "System.Threading.Thread": "(,4.3.32767]", + "System.Threading.ThreadPool": "(,4.3.32767]", + "System.Threading.Timer": "(,4.3.32767]", + "System.ValueTuple": "(,4.5.32767]", + "System.Xml.ReaderWriter": "(,4.3.32767]", + "System.Xml.XDocument": "(,4.3.32767]", + "System.Xml.XmlDocument": "(,4.3.32767]", + "System.Xml.XmlSerializer": "(,4.3.32767]", + "System.Xml.XPath": "(,4.3.32767]", + "System.Xml.XPath.XDocument": "(,5.0.32767]" + } + } + } + }, + "C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Infrastructure\\QuantEngine.Infrastructure.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Infrastructure\\QuantEngine.Infrastructure.csproj", + "projectName": "QuantEngine.Infrastructure", + "projectPath": "C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Infrastructure\\QuantEngine.Infrastructure.csproj", + "packagesPath": "C:\\Users\\kjh20\\.nuget\\packages\\", + "outputPath": "C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Infrastructure\\obj\\", + "projectStyle": "PackageReference", + "fallbackFolders": [ + "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages", + "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder" + ], + "configFilePaths": [ + "C:\\Users\\kjh20\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "net10.0" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "C:\\Program Files\\dotnet\\library-packs": {}, + "https://api.nuget.org/v3/index.json": {}, + "https://nuget.telerik.com/v3/index.json": {} + }, + "frameworks": { + "net10.0": { + "targetAlias": "net10.0", + "projectReferences": { + "C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Application\\QuantEngine.Application.csproj": { + "projectPath": "C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Application\\QuantEngine.Application.csproj" + }, + "C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Core\\QuantEngine.Core.csproj": { + "projectPath": "C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Core\\QuantEngine.Core.csproj" + } + } + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + }, + "restoreAuditProperties": { + "enableAudit": "true", + "auditLevel": "low", + "auditMode": "all" + }, + "SdkAnalysisLevel": "10.0.100" + }, + "frameworks": { + "net10.0": { + "targetAlias": "net10.0", + "dependencies": { + "Dapper": { + "target": "Package", + "version": "[2.1.79, )" + }, + "Npgsql": { + "target": "Package", + "version": "[10.0.3, )" + }, + "System.Text.Encoding.CodePages": { + "target": "Package", + "version": "[10.0.9, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\10.0.100/PortableRuntimeIdentifierGraph.json", + "packagesToPrune": { + "Microsoft.CSharp": "(,4.7.32767]", + "Microsoft.VisualBasic": "(,10.4.32767]", + "Microsoft.Win32.Primitives": "(,4.3.32767]", + "Microsoft.Win32.Registry": "(,5.0.32767]", + "runtime.any.System.Collections": "(,4.3.32767]", + "runtime.any.System.Diagnostics.Tools": "(,4.3.32767]", + "runtime.any.System.Diagnostics.Tracing": "(,4.3.32767]", + "runtime.any.System.Globalization": "(,4.3.32767]", + "runtime.any.System.Globalization.Calendars": "(,4.3.32767]", + "runtime.any.System.IO": "(,4.3.32767]", + "runtime.any.System.Reflection": "(,4.3.32767]", + "runtime.any.System.Reflection.Extensions": "(,4.3.32767]", + "runtime.any.System.Reflection.Primitives": "(,4.3.32767]", + "runtime.any.System.Resources.ResourceManager": "(,4.3.32767]", + "runtime.any.System.Runtime": "(,4.3.32767]", + "runtime.any.System.Runtime.Handles": "(,4.3.32767]", + "runtime.any.System.Runtime.InteropServices": "(,4.3.32767]", + "runtime.any.System.Text.Encoding": "(,4.3.32767]", + "runtime.any.System.Text.Encoding.Extensions": "(,4.3.32767]", + "runtime.any.System.Threading.Tasks": "(,4.3.32767]", + "runtime.any.System.Threading.Timer": "(,4.3.32767]", + "runtime.aot.System.Collections": "(,4.3.32767]", + "runtime.aot.System.Diagnostics.Tools": "(,4.3.32767]", + "runtime.aot.System.Diagnostics.Tracing": "(,4.3.32767]", + "runtime.aot.System.Globalization": "(,4.3.32767]", + "runtime.aot.System.Globalization.Calendars": "(,4.3.32767]", + "runtime.aot.System.IO": "(,4.3.32767]", + "runtime.aot.System.Reflection": "(,4.3.32767]", + "runtime.aot.System.Reflection.Extensions": "(,4.3.32767]", + "runtime.aot.System.Reflection.Primitives": "(,4.3.32767]", + "runtime.aot.System.Resources.ResourceManager": "(,4.3.32767]", + "runtime.aot.System.Runtime": "(,4.3.32767]", + "runtime.aot.System.Runtime.Handles": "(,4.3.32767]", + "runtime.aot.System.Runtime.InteropServices": "(,4.3.32767]", + "runtime.aot.System.Text.Encoding": "(,4.3.32767]", + "runtime.aot.System.Text.Encoding.Extensions": "(,4.3.32767]", + "runtime.aot.System.Threading.Tasks": "(,4.3.32767]", + "runtime.aot.System.Threading.Timer": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.debian.9-x64.runtime.native.System": "(,4.3.32767]", + "runtime.debian.9-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.debian.9-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.debian.9-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.fedora.27-x64.runtime.native.System": "(,4.3.32767]", + "runtime.fedora.27-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.fedora.27-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.fedora.27-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.fedora.28-x64.runtime.native.System": "(,4.3.32767]", + "runtime.fedora.28-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.fedora.28-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.fedora.28-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.opensuse.42.3-x64.runtime.native.System": "(,4.3.32767]", + "runtime.opensuse.42.3-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.opensuse.42.3-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.opensuse.42.3-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.ubuntu.18.04-x64.runtime.native.System": "(,4.3.32767]", + "runtime.ubuntu.18.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.ubuntu.18.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.ubuntu.18.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.unix.Microsoft.Win32.Primitives": "(,4.3.32767]", + "runtime.unix.System.Console": "(,4.3.32767]", + "runtime.unix.System.Diagnostics.Debug": "(,4.3.32767]", + "runtime.unix.System.IO.FileSystem": "(,4.3.32767]", + "runtime.unix.System.Net.Primitives": "(,4.3.32767]", + "runtime.unix.System.Net.Sockets": "(,4.3.32767]", + "runtime.unix.System.Private.Uri": "(,4.3.32767]", + "runtime.unix.System.Runtime.Extensions": "(,4.3.32767]", + "runtime.win.Microsoft.Win32.Primitives": "(,4.3.32767]", + "runtime.win.System.Console": "(,4.3.32767]", + "runtime.win.System.Diagnostics.Debug": "(,4.3.32767]", + "runtime.win.System.IO.FileSystem": "(,4.3.32767]", + "runtime.win.System.Net.Primitives": "(,4.3.32767]", + "runtime.win.System.Net.Sockets": "(,4.3.32767]", + "runtime.win.System.Runtime.Extensions": "(,4.3.32767]", + "runtime.win10-arm-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", + "runtime.win10-arm64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.win10-x64-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", + "runtime.win10-x86-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", + "runtime.win7-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.win7-x86.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.win7.System.Private.Uri": "(,4.3.32767]", + "runtime.win8-arm.runtime.native.System.IO.Compression": "(,4.3.32767]", + "System.AppContext": "(,4.3.32767]", + "System.Buffers": "(,5.0.32767]", + "System.Collections": "(,4.3.32767]", + "System.Collections.Concurrent": "(,4.3.32767]", + "System.Collections.Immutable": "(,10.0.32767]", + "System.Collections.NonGeneric": "(,4.3.32767]", + "System.Collections.Specialized": "(,4.3.32767]", + "System.ComponentModel": "(,4.3.32767]", + "System.ComponentModel.Annotations": "(,4.3.32767]", + "System.ComponentModel.EventBasedAsync": "(,4.3.32767]", + "System.ComponentModel.Primitives": "(,4.3.32767]", + "System.ComponentModel.TypeConverter": "(,4.3.32767]", + "System.Console": "(,4.3.32767]", + "System.Data.Common": "(,4.3.32767]", + "System.Data.DataSetExtensions": "(,4.4.32767]", + "System.Diagnostics.Contracts": "(,4.3.32767]", + "System.Diagnostics.Debug": "(,4.3.32767]", + "System.Diagnostics.DiagnosticSource": "(,10.0.32767]", + "System.Diagnostics.FileVersionInfo": "(,4.3.32767]", + "System.Diagnostics.Process": "(,4.3.32767]", + "System.Diagnostics.StackTrace": "(,4.3.32767]", + "System.Diagnostics.TextWriterTraceListener": "(,4.3.32767]", + "System.Diagnostics.Tools": "(,4.3.32767]", + "System.Diagnostics.TraceSource": "(,4.3.32767]", + "System.Diagnostics.Tracing": "(,4.3.32767]", + "System.Drawing.Primitives": "(,4.3.32767]", + "System.Dynamic.Runtime": "(,4.3.32767]", + "System.Formats.Asn1": "(,10.0.32767]", + "System.Formats.Tar": "(,10.0.32767]", + "System.Globalization": "(,4.3.32767]", + "System.Globalization.Calendars": "(,4.3.32767]", + "System.Globalization.Extensions": "(,4.3.32767]", + "System.IO": "(,4.3.32767]", + "System.IO.Compression": "(,4.3.32767]", + "System.IO.Compression.ZipFile": "(,4.3.32767]", + "System.IO.FileSystem": "(,4.3.32767]", + "System.IO.FileSystem.AccessControl": "(,4.4.32767]", + "System.IO.FileSystem.DriveInfo": "(,4.3.32767]", + "System.IO.FileSystem.Primitives": "(,4.3.32767]", + "System.IO.FileSystem.Watcher": "(,4.3.32767]", + "System.IO.IsolatedStorage": "(,4.3.32767]", + "System.IO.MemoryMappedFiles": "(,4.3.32767]", + "System.IO.Pipelines": "(,10.0.32767]", + "System.IO.Pipes": "(,4.3.32767]", + "System.IO.Pipes.AccessControl": "(,5.0.32767]", + "System.IO.UnmanagedMemoryStream": "(,4.3.32767]", + "System.Linq": "(,4.3.32767]", + "System.Linq.AsyncEnumerable": "(,10.0.32767]", + "System.Linq.Expressions": "(,4.3.32767]", + "System.Linq.Parallel": "(,4.3.32767]", + "System.Linq.Queryable": "(,4.3.32767]", + "System.Memory": "(,5.0.32767]", + "System.Net.Http": "(,4.3.32767]", + "System.Net.Http.Json": "(,10.0.32767]", + "System.Net.NameResolution": "(,4.3.32767]", + "System.Net.NetworkInformation": "(,4.3.32767]", + "System.Net.Ping": "(,4.3.32767]", + "System.Net.Primitives": "(,4.3.32767]", + "System.Net.Requests": "(,4.3.32767]", + "System.Net.Security": "(,4.3.32767]", + "System.Net.ServerSentEvents": "(,10.0.32767]", + "System.Net.Sockets": "(,4.3.32767]", + "System.Net.WebHeaderCollection": "(,4.3.32767]", + "System.Net.WebSockets": "(,4.3.32767]", + "System.Net.WebSockets.Client": "(,4.3.32767]", + "System.Numerics.Vectors": "(,5.0.32767]", + "System.ObjectModel": "(,4.3.32767]", + "System.Private.DataContractSerialization": "(,4.3.32767]", + "System.Private.Uri": "(,4.3.32767]", + "System.Reflection": "(,4.3.32767]", + "System.Reflection.DispatchProxy": "(,6.0.32767]", + "System.Reflection.Emit": "(,4.7.32767]", + "System.Reflection.Emit.ILGeneration": "(,4.7.32767]", + "System.Reflection.Emit.Lightweight": "(,4.7.32767]", + "System.Reflection.Extensions": "(,4.3.32767]", + "System.Reflection.Metadata": "(,10.0.32767]", + "System.Reflection.Primitives": "(,4.3.32767]", + "System.Reflection.TypeExtensions": "(,4.3.32767]", + "System.Resources.Reader": "(,4.3.32767]", + "System.Resources.ResourceManager": "(,4.3.32767]", + "System.Resources.Writer": "(,4.3.32767]", + "System.Runtime": "(,4.3.32767]", + "System.Runtime.CompilerServices.Unsafe": "(,7.0.32767]", + "System.Runtime.CompilerServices.VisualC": "(,4.3.32767]", + "System.Runtime.Extensions": "(,4.3.32767]", + "System.Runtime.Handles": "(,4.3.32767]", + "System.Runtime.InteropServices": "(,4.3.32767]", + "System.Runtime.InteropServices.RuntimeInformation": "(,4.3.32767]", + "System.Runtime.Loader": "(,4.3.32767]", + "System.Runtime.Numerics": "(,4.3.32767]", + "System.Runtime.Serialization.Formatters": "(,4.3.32767]", + "System.Runtime.Serialization.Json": "(,4.3.32767]", + "System.Runtime.Serialization.Primitives": "(,4.3.32767]", + "System.Runtime.Serialization.Xml": "(,4.3.32767]", + "System.Security.AccessControl": "(,6.0.32767]", + "System.Security.Claims": "(,4.3.32767]", + "System.Security.Cryptography.Algorithms": "(,4.3.32767]", + "System.Security.Cryptography.Cng": "(,5.0.32767]", + "System.Security.Cryptography.Csp": "(,4.3.32767]", + "System.Security.Cryptography.Encoding": "(,4.3.32767]", + "System.Security.Cryptography.OpenSsl": "(,5.0.32767]", + "System.Security.Cryptography.Primitives": "(,4.3.32767]", + "System.Security.Cryptography.X509Certificates": "(,4.3.32767]", + "System.Security.Principal": "(,4.3.32767]", + "System.Security.Principal.Windows": "(,5.0.32767]", + "System.Security.SecureString": "(,4.3.32767]", + "System.Text.Encoding": "(,4.3.32767]", + "System.Text.Encoding.CodePages": "(,10.0.32767]", + "System.Text.Encoding.Extensions": "(,4.3.32767]", + "System.Text.Encodings.Web": "(,10.0.32767]", + "System.Text.Json": "(,10.0.32767]", + "System.Text.RegularExpressions": "(,4.3.32767]", + "System.Threading": "(,4.3.32767]", + "System.Threading.AccessControl": "(,10.0.32767]", + "System.Threading.Channels": "(,10.0.32767]", + "System.Threading.Overlapped": "(,4.3.32767]", + "System.Threading.Tasks": "(,4.3.32767]", + "System.Threading.Tasks.Dataflow": "(,10.0.32767]", + "System.Threading.Tasks.Extensions": "(,5.0.32767]", + "System.Threading.Tasks.Parallel": "(,4.3.32767]", + "System.Threading.Thread": "(,4.3.32767]", + "System.Threading.ThreadPool": "(,4.3.32767]", + "System.Threading.Timer": "(,4.3.32767]", + "System.ValueTuple": "(,4.5.32767]", + "System.Xml.ReaderWriter": "(,4.3.32767]", + "System.Xml.XDocument": "(,4.3.32767]", + "System.Xml.XmlDocument": "(,4.3.32767]", + "System.Xml.XmlSerializer": "(,4.3.32767]", + "System.Xml.XPath": "(,4.3.32767]", + "System.Xml.XPath.XDocument": "(,5.0.32767]" + } + } + } + } + } +} \ No newline at end of file diff --git a/src/dotnet/QuantEngine.Infrastructure/obj/QuantEngine.Infrastructure.csproj.nuget.g.props b/src/dotnet/QuantEngine.Infrastructure/obj/QuantEngine.Infrastructure.csproj.nuget.g.props new file mode 100644 index 0000000..e838210 --- /dev/null +++ b/src/dotnet/QuantEngine.Infrastructure/obj/QuantEngine.Infrastructure.csproj.nuget.g.props @@ -0,0 +1,17 @@ + + + + True + NuGet + $(MSBuildThisFileDirectory)project.assets.json + $(UserProfile)\.nuget\packages\ + C:\Users\kjh20\.nuget\packages\;C:\Program Files (x86)\Microsoft Visual Studio\Shared\NuGetPackages;C:\Program Files\dotnet\sdk\NuGetFallbackFolder + PackageReference + 7.0.0 + + + + + + + \ No newline at end of file diff --git a/src/dotnet/QuantEngine.Infrastructure/obj/QuantEngine.Infrastructure.csproj.nuget.g.targets b/src/dotnet/QuantEngine.Infrastructure/obj/QuantEngine.Infrastructure.csproj.nuget.g.targets new file mode 100644 index 0000000..d6d1033 --- /dev/null +++ b/src/dotnet/QuantEngine.Infrastructure/obj/QuantEngine.Infrastructure.csproj.nuget.g.targets @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/src/dotnet/QuantEngine.Infrastructure/obj/project.assets.json b/src/dotnet/QuantEngine.Infrastructure/obj/project.assets.json new file mode 100644 index 0000000..1b44110 --- /dev/null +++ b/src/dotnet/QuantEngine.Infrastructure/obj/project.assets.json @@ -0,0 +1,701 @@ +{ + "version": 3, + "targets": { + "net10.0": { + "Dapper/2.1.79": { + "type": "package", + "compile": { + "lib/net10.0/Dapper.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net10.0/Dapper.dll": { + "related": ".xml" + } + } + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/10.0.0": { + "type": "package", + "compile": { + "lib/net10.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net10.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/_._": {} + } + }, + "Microsoft.Extensions.Logging.Abstractions/10.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "10.0.0" + }, + "compile": { + "lib/net10.0/Microsoft.Extensions.Logging.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net10.0/Microsoft.Extensions.Logging.Abstractions.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/Microsoft.Extensions.Logging.Abstractions.targets": {} + } + }, + "Npgsql/10.0.3": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Logging.Abstractions": "10.0.0" + }, + "compile": { + "lib/net10.0/Npgsql.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net10.0/Npgsql.dll": { + "related": ".xml" + } + } + }, + "System.Text.Encoding.CodePages/10.0.9": { + "type": "package", + "compile": { + "lib/net10.0/_._": { + "related": ".xml" + } + }, + "runtime": { + "lib/net10.0/_._": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/_._": {} + }, + "runtimeTargets": { + "runtimes/win/lib/net10.0/_._": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "QuantEngine.Application/1.0.0": { + "type": "project", + "framework": ".NETCoreApp,Version=v10.0", + "dependencies": { + "QuantEngine.Core": "1.0.0" + }, + "compile": { + "bin/placeholder/QuantEngine.Application.dll": {} + }, + "runtime": { + "bin/placeholder/QuantEngine.Application.dll": {} + } + }, + "QuantEngine.Core/1.0.0": { + "type": "project", + "framework": ".NETCoreApp,Version=v10.0", + "compile": { + "bin/placeholder/QuantEngine.Core.dll": {} + }, + "runtime": { + "bin/placeholder/QuantEngine.Core.dll": {} + } + } + } + }, + "libraries": { + "Dapper/2.1.79": { + "sha512": "8YijbzgTfmqmQOnVNorYM6K++pxqnW3nJ4aC1sRHzxUA2CcuoJ9gsTem3kgBnPRMc38zZHl4Esb6hAezXIEEuw==", + "type": "package", + "path": "dapper/2.1.79", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Dapper.png", + "dapper.2.1.79.nupkg.sha512", + "dapper.nuspec", + "lib/net10.0/Dapper.dll", + "lib/net10.0/Dapper.xml", + "lib/net461/Dapper.dll", + "lib/net461/Dapper.xml", + "lib/net8.0/Dapper.dll", + "lib/net8.0/Dapper.xml", + "lib/netstandard2.0/Dapper.dll", + "lib/netstandard2.0/Dapper.xml", + "readme.md" + ] + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/10.0.0": { + "sha512": "L3AdmZ1WOK4XXT5YFPEwyt0ep6l8lGIPs7F5OOBZc77Zqeo01Of7XXICy47628sdVl0v/owxYJTe86DTgFwKCA==", + "type": "package", + "path": "microsoft.extensions.dependencyinjection.abstractions/10.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.DependencyInjection.Abstractions.targets", + "buildTransitive/net462/_._", + "buildTransitive/net8.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.DependencyInjection.Abstractions.targets", + "lib/net10.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "lib/net10.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml", + "lib/net462/Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "lib/net462/Microsoft.Extensions.DependencyInjection.Abstractions.xml", + "lib/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "lib/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml", + "lib/net9.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "lib/net9.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml", + "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml", + "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.Abstractions.xml", + "microsoft.extensions.dependencyinjection.abstractions.10.0.0.nupkg.sha512", + "microsoft.extensions.dependencyinjection.abstractions.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Logging.Abstractions/10.0.0": { + "sha512": "FU/IfjDfwaMuKr414SSQNTIti/69bHEMb+QKrskRb26oVqpx3lNFXMjs/RC9ZUuhBhcwDM2BwOgoMw+PZ+beqQ==", + "type": "package", + "path": "microsoft.extensions.logging.abstractions/10.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "analyzers/dotnet/roslyn3.11/cs/Microsoft.Extensions.Logging.Generators.dll", + "analyzers/dotnet/roslyn3.11/cs/cs/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/de/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/es/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/fr/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/it/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/ja/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/ko/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/pl/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/pt-BR/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/ru/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/tr/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/zh-Hans/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/zh-Hant/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/Microsoft.Extensions.Logging.Generators.dll", + "analyzers/dotnet/roslyn4.0/cs/cs/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/de/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/es/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/fr/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/it/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/ja/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/ko/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/pl/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/pt-BR/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/ru/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/tr/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/zh-Hans/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/zh-Hant/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/Microsoft.Extensions.Logging.Generators.dll", + "analyzers/dotnet/roslyn4.4/cs/cs/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/de/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/es/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/fr/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/it/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/ja/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/ko/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/pl/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/pt-BR/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/ru/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/tr/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/zh-Hans/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/zh-Hant/Microsoft.Extensions.Logging.Generators.resources.dll", + "buildTransitive/net461/Microsoft.Extensions.Logging.Abstractions.targets", + "buildTransitive/net462/Microsoft.Extensions.Logging.Abstractions.targets", + "buildTransitive/net8.0/Microsoft.Extensions.Logging.Abstractions.targets", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Logging.Abstractions.targets", + "buildTransitive/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.targets", + "lib/net10.0/Microsoft.Extensions.Logging.Abstractions.dll", + "lib/net10.0/Microsoft.Extensions.Logging.Abstractions.xml", + "lib/net462/Microsoft.Extensions.Logging.Abstractions.dll", + "lib/net462/Microsoft.Extensions.Logging.Abstractions.xml", + "lib/net8.0/Microsoft.Extensions.Logging.Abstractions.dll", + "lib/net8.0/Microsoft.Extensions.Logging.Abstractions.xml", + "lib/net9.0/Microsoft.Extensions.Logging.Abstractions.dll", + "lib/net9.0/Microsoft.Extensions.Logging.Abstractions.xml", + "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll", + "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.xml", + "microsoft.extensions.logging.abstractions.10.0.0.nupkg.sha512", + "microsoft.extensions.logging.abstractions.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Npgsql/10.0.3": { + "sha512": "7nb5YzXuvWWJxB0J8DiyL3we+X4FOctZrt0fIBnucOIaIevFEEwGQVZKtiu9olXdlNAK1eNgqSral6r/jlhI4w==", + "type": "package", + "path": "npgsql/10.0.3", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "README.md", + "lib/net10.0/Npgsql.dll", + "lib/net10.0/Npgsql.xml", + "lib/net8.0/Npgsql.dll", + "lib/net8.0/Npgsql.xml", + "lib/net9.0/Npgsql.dll", + "lib/net9.0/Npgsql.xml", + "npgsql.10.0.3.nupkg.sha512", + "npgsql.nuspec", + "postgresql.png" + ] + }, + "System.Text.Encoding.CodePages/10.0.9": { + "sha512": "F5U2mKPs5okLJbfIud5IMfkcGEe+73ye8/6MwWu84txhyUe7D7azXkFtMePUjirhYxOJ4boGCXpW5uZfgUA3Sw==", + "type": "package", + "path": "system.text.encoding.codepages/10.0.9", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/System.Text.Encoding.CodePages.targets", + "buildTransitive/net462/_._", + "buildTransitive/net8.0/_._", + "buildTransitive/netcoreapp2.0/System.Text.Encoding.CodePages.targets", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net10.0/System.Text.Encoding.CodePages.dll", + "lib/net10.0/System.Text.Encoding.CodePages.xml", + "lib/net462/System.Text.Encoding.CodePages.dll", + "lib/net462/System.Text.Encoding.CodePages.xml", + "lib/net8.0/System.Text.Encoding.CodePages.dll", + "lib/net8.0/System.Text.Encoding.CodePages.xml", + "lib/net9.0/System.Text.Encoding.CodePages.dll", + "lib/net9.0/System.Text.Encoding.CodePages.xml", + "lib/netstandard2.0/System.Text.Encoding.CodePages.dll", + "lib/netstandard2.0/System.Text.Encoding.CodePages.xml", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "runtimes/win/lib/net10.0/System.Text.Encoding.CodePages.dll", + "runtimes/win/lib/net10.0/System.Text.Encoding.CodePages.xml", + "runtimes/win/lib/net8.0/System.Text.Encoding.CodePages.dll", + "runtimes/win/lib/net8.0/System.Text.Encoding.CodePages.xml", + "runtimes/win/lib/net9.0/System.Text.Encoding.CodePages.dll", + "runtimes/win/lib/net9.0/System.Text.Encoding.CodePages.xml", + "system.text.encoding.codepages.10.0.9.nupkg.sha512", + "system.text.encoding.codepages.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "QuantEngine.Application/1.0.0": { + "type": "project", + "path": "../QuantEngine.Application/QuantEngine.Application.csproj", + "msbuildProject": "../QuantEngine.Application/QuantEngine.Application.csproj" + }, + "QuantEngine.Core/1.0.0": { + "type": "project", + "path": "../QuantEngine.Core/QuantEngine.Core.csproj", + "msbuildProject": "../QuantEngine.Core/QuantEngine.Core.csproj" + } + }, + "projectFileDependencyGroups": { + "net10.0": [ + "Dapper >= 2.1.79", + "Npgsql >= 10.0.3", + "QuantEngine.Application >= 1.0.0", + "QuantEngine.Core >= 1.0.0", + "System.Text.Encoding.CodePages >= 10.0.9" + ] + }, + "packageFolders": { + "C:\\Users\\kjh20\\.nuget\\packages\\": {}, + "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages": {}, + "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder": {} + }, + "project": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Infrastructure\\QuantEngine.Infrastructure.csproj", + "projectName": "QuantEngine.Infrastructure", + "projectPath": "C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Infrastructure\\QuantEngine.Infrastructure.csproj", + "packagesPath": "C:\\Users\\kjh20\\.nuget\\packages\\", + "outputPath": "C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Infrastructure\\obj\\", + "projectStyle": "PackageReference", + "fallbackFolders": [ + "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages", + "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder" + ], + "configFilePaths": [ + "C:\\Users\\kjh20\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "net10.0" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "C:\\Program Files\\dotnet\\library-packs": {}, + "https://api.nuget.org/v3/index.json": {}, + "https://nuget.telerik.com/v3/index.json": {} + }, + "frameworks": { + "net10.0": { + "targetAlias": "net10.0", + "projectReferences": { + "C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Application\\QuantEngine.Application.csproj": { + "projectPath": "C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Application\\QuantEngine.Application.csproj" + }, + "C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Core\\QuantEngine.Core.csproj": { + "projectPath": "C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Core\\QuantEngine.Core.csproj" + } + } + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + }, + "restoreAuditProperties": { + "enableAudit": "true", + "auditLevel": "low", + "auditMode": "all" + }, + "SdkAnalysisLevel": "10.0.100" + }, + "frameworks": { + "net10.0": { + "targetAlias": "net10.0", + "dependencies": { + "Dapper": { + "target": "Package", + "version": "[2.1.79, )" + }, + "Npgsql": { + "target": "Package", + "version": "[10.0.3, )" + }, + "System.Text.Encoding.CodePages": { + "target": "Package", + "version": "[10.0.9, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\10.0.100/PortableRuntimeIdentifierGraph.json", + "packagesToPrune": { + "Microsoft.CSharp": "(,4.7.32767]", + "Microsoft.VisualBasic": "(,10.4.32767]", + "Microsoft.Win32.Primitives": "(,4.3.32767]", + "Microsoft.Win32.Registry": "(,5.0.32767]", + "runtime.any.System.Collections": "(,4.3.32767]", + "runtime.any.System.Diagnostics.Tools": "(,4.3.32767]", + "runtime.any.System.Diagnostics.Tracing": "(,4.3.32767]", + "runtime.any.System.Globalization": "(,4.3.32767]", + "runtime.any.System.Globalization.Calendars": "(,4.3.32767]", + "runtime.any.System.IO": "(,4.3.32767]", + "runtime.any.System.Reflection": "(,4.3.32767]", + "runtime.any.System.Reflection.Extensions": "(,4.3.32767]", + "runtime.any.System.Reflection.Primitives": "(,4.3.32767]", + "runtime.any.System.Resources.ResourceManager": "(,4.3.32767]", + "runtime.any.System.Runtime": "(,4.3.32767]", + "runtime.any.System.Runtime.Handles": "(,4.3.32767]", + "runtime.any.System.Runtime.InteropServices": "(,4.3.32767]", + "runtime.any.System.Text.Encoding": "(,4.3.32767]", + "runtime.any.System.Text.Encoding.Extensions": "(,4.3.32767]", + "runtime.any.System.Threading.Tasks": "(,4.3.32767]", + "runtime.any.System.Threading.Timer": "(,4.3.32767]", + "runtime.aot.System.Collections": "(,4.3.32767]", + "runtime.aot.System.Diagnostics.Tools": "(,4.3.32767]", + "runtime.aot.System.Diagnostics.Tracing": "(,4.3.32767]", + "runtime.aot.System.Globalization": "(,4.3.32767]", + "runtime.aot.System.Globalization.Calendars": "(,4.3.32767]", + "runtime.aot.System.IO": "(,4.3.32767]", + "runtime.aot.System.Reflection": "(,4.3.32767]", + "runtime.aot.System.Reflection.Extensions": "(,4.3.32767]", + "runtime.aot.System.Reflection.Primitives": "(,4.3.32767]", + "runtime.aot.System.Resources.ResourceManager": "(,4.3.32767]", + "runtime.aot.System.Runtime": "(,4.3.32767]", + "runtime.aot.System.Runtime.Handles": "(,4.3.32767]", + "runtime.aot.System.Runtime.InteropServices": "(,4.3.32767]", + "runtime.aot.System.Text.Encoding": "(,4.3.32767]", + "runtime.aot.System.Text.Encoding.Extensions": "(,4.3.32767]", + "runtime.aot.System.Threading.Tasks": "(,4.3.32767]", + "runtime.aot.System.Threading.Timer": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.debian.9-x64.runtime.native.System": "(,4.3.32767]", + "runtime.debian.9-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.debian.9-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.debian.9-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.fedora.27-x64.runtime.native.System": "(,4.3.32767]", + "runtime.fedora.27-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.fedora.27-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.fedora.27-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.fedora.28-x64.runtime.native.System": "(,4.3.32767]", + "runtime.fedora.28-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.fedora.28-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.fedora.28-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.opensuse.42.3-x64.runtime.native.System": "(,4.3.32767]", + "runtime.opensuse.42.3-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.opensuse.42.3-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.opensuse.42.3-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.ubuntu.18.04-x64.runtime.native.System": "(,4.3.32767]", + "runtime.ubuntu.18.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.ubuntu.18.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.ubuntu.18.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.unix.Microsoft.Win32.Primitives": "(,4.3.32767]", + "runtime.unix.System.Console": "(,4.3.32767]", + "runtime.unix.System.Diagnostics.Debug": "(,4.3.32767]", + "runtime.unix.System.IO.FileSystem": "(,4.3.32767]", + "runtime.unix.System.Net.Primitives": "(,4.3.32767]", + "runtime.unix.System.Net.Sockets": "(,4.3.32767]", + "runtime.unix.System.Private.Uri": "(,4.3.32767]", + "runtime.unix.System.Runtime.Extensions": "(,4.3.32767]", + "runtime.win.Microsoft.Win32.Primitives": "(,4.3.32767]", + "runtime.win.System.Console": "(,4.3.32767]", + "runtime.win.System.Diagnostics.Debug": "(,4.3.32767]", + "runtime.win.System.IO.FileSystem": "(,4.3.32767]", + "runtime.win.System.Net.Primitives": "(,4.3.32767]", + "runtime.win.System.Net.Sockets": "(,4.3.32767]", + "runtime.win.System.Runtime.Extensions": "(,4.3.32767]", + "runtime.win10-arm-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", + "runtime.win10-arm64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.win10-x64-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", + "runtime.win10-x86-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", + "runtime.win7-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.win7-x86.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.win7.System.Private.Uri": "(,4.3.32767]", + "runtime.win8-arm.runtime.native.System.IO.Compression": "(,4.3.32767]", + "System.AppContext": "(,4.3.32767]", + "System.Buffers": "(,5.0.32767]", + "System.Collections": "(,4.3.32767]", + "System.Collections.Concurrent": "(,4.3.32767]", + "System.Collections.Immutable": "(,10.0.32767]", + "System.Collections.NonGeneric": "(,4.3.32767]", + "System.Collections.Specialized": "(,4.3.32767]", + "System.ComponentModel": "(,4.3.32767]", + "System.ComponentModel.Annotations": "(,4.3.32767]", + "System.ComponentModel.EventBasedAsync": "(,4.3.32767]", + "System.ComponentModel.Primitives": "(,4.3.32767]", + "System.ComponentModel.TypeConverter": "(,4.3.32767]", + "System.Console": "(,4.3.32767]", + "System.Data.Common": "(,4.3.32767]", + "System.Data.DataSetExtensions": "(,4.4.32767]", + "System.Diagnostics.Contracts": "(,4.3.32767]", + "System.Diagnostics.Debug": "(,4.3.32767]", + "System.Diagnostics.DiagnosticSource": "(,10.0.32767]", + "System.Diagnostics.FileVersionInfo": "(,4.3.32767]", + "System.Diagnostics.Process": "(,4.3.32767]", + "System.Diagnostics.StackTrace": "(,4.3.32767]", + "System.Diagnostics.TextWriterTraceListener": "(,4.3.32767]", + "System.Diagnostics.Tools": "(,4.3.32767]", + "System.Diagnostics.TraceSource": "(,4.3.32767]", + "System.Diagnostics.Tracing": "(,4.3.32767]", + "System.Drawing.Primitives": "(,4.3.32767]", + "System.Dynamic.Runtime": "(,4.3.32767]", + "System.Formats.Asn1": "(,10.0.32767]", + "System.Formats.Tar": "(,10.0.32767]", + "System.Globalization": "(,4.3.32767]", + "System.Globalization.Calendars": "(,4.3.32767]", + "System.Globalization.Extensions": "(,4.3.32767]", + "System.IO": "(,4.3.32767]", + "System.IO.Compression": "(,4.3.32767]", + "System.IO.Compression.ZipFile": "(,4.3.32767]", + "System.IO.FileSystem": "(,4.3.32767]", + "System.IO.FileSystem.AccessControl": "(,4.4.32767]", + "System.IO.FileSystem.DriveInfo": "(,4.3.32767]", + "System.IO.FileSystem.Primitives": "(,4.3.32767]", + "System.IO.FileSystem.Watcher": "(,4.3.32767]", + "System.IO.IsolatedStorage": "(,4.3.32767]", + "System.IO.MemoryMappedFiles": "(,4.3.32767]", + "System.IO.Pipelines": "(,10.0.32767]", + "System.IO.Pipes": "(,4.3.32767]", + "System.IO.Pipes.AccessControl": "(,5.0.32767]", + "System.IO.UnmanagedMemoryStream": "(,4.3.32767]", + "System.Linq": "(,4.3.32767]", + "System.Linq.AsyncEnumerable": "(,10.0.32767]", + "System.Linq.Expressions": "(,4.3.32767]", + "System.Linq.Parallel": "(,4.3.32767]", + "System.Linq.Queryable": "(,4.3.32767]", + "System.Memory": "(,5.0.32767]", + "System.Net.Http": "(,4.3.32767]", + "System.Net.Http.Json": "(,10.0.32767]", + "System.Net.NameResolution": "(,4.3.32767]", + "System.Net.NetworkInformation": "(,4.3.32767]", + "System.Net.Ping": "(,4.3.32767]", + "System.Net.Primitives": "(,4.3.32767]", + "System.Net.Requests": "(,4.3.32767]", + "System.Net.Security": "(,4.3.32767]", + "System.Net.ServerSentEvents": "(,10.0.32767]", + "System.Net.Sockets": "(,4.3.32767]", + "System.Net.WebHeaderCollection": "(,4.3.32767]", + "System.Net.WebSockets": "(,4.3.32767]", + "System.Net.WebSockets.Client": "(,4.3.32767]", + "System.Numerics.Vectors": "(,5.0.32767]", + "System.ObjectModel": "(,4.3.32767]", + "System.Private.DataContractSerialization": "(,4.3.32767]", + "System.Private.Uri": "(,4.3.32767]", + "System.Reflection": "(,4.3.32767]", + "System.Reflection.DispatchProxy": "(,6.0.32767]", + "System.Reflection.Emit": "(,4.7.32767]", + "System.Reflection.Emit.ILGeneration": "(,4.7.32767]", + "System.Reflection.Emit.Lightweight": "(,4.7.32767]", + "System.Reflection.Extensions": "(,4.3.32767]", + "System.Reflection.Metadata": "(,10.0.32767]", + "System.Reflection.Primitives": "(,4.3.32767]", + "System.Reflection.TypeExtensions": "(,4.3.32767]", + "System.Resources.Reader": "(,4.3.32767]", + "System.Resources.ResourceManager": "(,4.3.32767]", + "System.Resources.Writer": "(,4.3.32767]", + "System.Runtime": "(,4.3.32767]", + "System.Runtime.CompilerServices.Unsafe": "(,7.0.32767]", + "System.Runtime.CompilerServices.VisualC": "(,4.3.32767]", + "System.Runtime.Extensions": "(,4.3.32767]", + "System.Runtime.Handles": "(,4.3.32767]", + "System.Runtime.InteropServices": "(,4.3.32767]", + "System.Runtime.InteropServices.RuntimeInformation": "(,4.3.32767]", + "System.Runtime.Loader": "(,4.3.32767]", + "System.Runtime.Numerics": "(,4.3.32767]", + "System.Runtime.Serialization.Formatters": "(,4.3.32767]", + "System.Runtime.Serialization.Json": "(,4.3.32767]", + "System.Runtime.Serialization.Primitives": "(,4.3.32767]", + "System.Runtime.Serialization.Xml": "(,4.3.32767]", + "System.Security.AccessControl": "(,6.0.32767]", + "System.Security.Claims": "(,4.3.32767]", + "System.Security.Cryptography.Algorithms": "(,4.3.32767]", + "System.Security.Cryptography.Cng": "(,5.0.32767]", + "System.Security.Cryptography.Csp": "(,4.3.32767]", + "System.Security.Cryptography.Encoding": "(,4.3.32767]", + "System.Security.Cryptography.OpenSsl": "(,5.0.32767]", + "System.Security.Cryptography.Primitives": "(,4.3.32767]", + "System.Security.Cryptography.X509Certificates": "(,4.3.32767]", + "System.Security.Principal": "(,4.3.32767]", + "System.Security.Principal.Windows": "(,5.0.32767]", + "System.Security.SecureString": "(,4.3.32767]", + "System.Text.Encoding": "(,4.3.32767]", + "System.Text.Encoding.CodePages": "(,10.0.32767]", + "System.Text.Encoding.Extensions": "(,4.3.32767]", + "System.Text.Encodings.Web": "(,10.0.32767]", + "System.Text.Json": "(,10.0.32767]", + "System.Text.RegularExpressions": "(,4.3.32767]", + "System.Threading": "(,4.3.32767]", + "System.Threading.AccessControl": "(,10.0.32767]", + "System.Threading.Channels": "(,10.0.32767]", + "System.Threading.Overlapped": "(,4.3.32767]", + "System.Threading.Tasks": "(,4.3.32767]", + "System.Threading.Tasks.Dataflow": "(,10.0.32767]", + "System.Threading.Tasks.Extensions": "(,5.0.32767]", + "System.Threading.Tasks.Parallel": "(,4.3.32767]", + "System.Threading.Thread": "(,4.3.32767]", + "System.Threading.ThreadPool": "(,4.3.32767]", + "System.Threading.Timer": "(,4.3.32767]", + "System.ValueTuple": "(,4.5.32767]", + "System.Xml.ReaderWriter": "(,4.3.32767]", + "System.Xml.XDocument": "(,4.3.32767]", + "System.Xml.XmlDocument": "(,4.3.32767]", + "System.Xml.XmlSerializer": "(,4.3.32767]", + "System.Xml.XPath": "(,4.3.32767]", + "System.Xml.XPath.XDocument": "(,5.0.32767]" + } + } + } + }, + "logs": [ + { + "code": "NU1510", + "level": "Warning", + "warningLevel": 1, + "message": "PackageReference System.Text.Encoding.CodePages은(는) 잘리지 않습니다. 이 패키지는 불필요할 수 있으므로 종속성에서 제거하는 것이 좋습니다.", + "libraryId": "System.Text.Encoding.CodePages", + "targetGraphs": [ + "net10.0" + ] + } + ] +} \ No newline at end of file diff --git a/src/dotnet/QuantEngine.Infrastructure/obj/project.nuget.cache b/src/dotnet/QuantEngine.Infrastructure/obj/project.nuget.cache new file mode 100644 index 0000000..215e966 --- /dev/null +++ b/src/dotnet/QuantEngine.Infrastructure/obj/project.nuget.cache @@ -0,0 +1,27 @@ +{ + "version": 2, + "dgSpecHash": "kRMhWigPvow=", + "success": true, + "projectFilePath": "C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Infrastructure\\QuantEngine.Infrastructure.csproj", + "expectedPackageFiles": [ + "C:\\Users\\kjh20\\.nuget\\packages\\dapper\\2.1.79\\dapper.2.1.79.nupkg.sha512", + "C:\\Users\\kjh20\\.nuget\\packages\\microsoft.extensions.dependencyinjection.abstractions\\10.0.0\\microsoft.extensions.dependencyinjection.abstractions.10.0.0.nupkg.sha512", + "C:\\Users\\kjh20\\.nuget\\packages\\microsoft.extensions.logging.abstractions\\10.0.0\\microsoft.extensions.logging.abstractions.10.0.0.nupkg.sha512", + "C:\\Users\\kjh20\\.nuget\\packages\\npgsql\\10.0.3\\npgsql.10.0.3.nupkg.sha512", + "C:\\Users\\kjh20\\.nuget\\packages\\system.text.encoding.codepages\\10.0.9\\system.text.encoding.codepages.10.0.9.nupkg.sha512" + ], + "logs": [ + { + "code": "NU1510", + "level": "Warning", + "message": "PackageReference System.Text.Encoding.CodePages은(는) 잘리지 않습니다. 이 패키지는 불필요할 수 있으므로 종속성에서 제거하는 것이 좋습니다.", + "projectPath": "C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Infrastructure\\QuantEngine.Infrastructure.csproj", + "warningLevel": 1, + "filePath": "C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Infrastructure\\QuantEngine.Infrastructure.csproj", + "libraryId": "System.Text.Encoding.CodePages", + "targetGraphs": [ + "net10.0" + ] + } + ] +} \ No newline at end of file diff --git a/src/dotnet/QuantEngine.Web/Components/App.razor b/src/dotnet/QuantEngine.Web/Components/App.razor new file mode 100644 index 0000000..3199cb9 --- /dev/null +++ b/src/dotnet/QuantEngine.Web/Components/App.razor @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/dotnet/QuantEngine.Web/Components/Layout/MainLayout.razor b/src/dotnet/QuantEngine.Web/Components/Layout/MainLayout.razor new file mode 100644 index 0000000..78624f3 --- /dev/null +++ b/src/dotnet/QuantEngine.Web/Components/Layout/MainLayout.razor @@ -0,0 +1,23 @@ +@inherits LayoutComponentBase + +
+ + +
+
+ About +
+ +
+ @Body +
+
+
+ +
+ An unhandled error has occurred. + Reload + 🗙 +
diff --git a/src/dotnet/QuantEngine.Web/Components/Layout/MainLayout.razor.css b/src/dotnet/QuantEngine.Web/Components/Layout/MainLayout.razor.css new file mode 100644 index 0000000..38d1f25 --- /dev/null +++ b/src/dotnet/QuantEngine.Web/Components/Layout/MainLayout.razor.css @@ -0,0 +1,98 @@ +.page { + position: relative; + display: flex; + flex-direction: column; +} + +main { + flex: 1; +} + +.sidebar { + background-image: linear-gradient(180deg, rgb(5, 39, 103) 0%, #3a0647 70%); +} + +.top-row { + background-color: #f7f7f7; + border-bottom: 1px solid #d6d5d5; + justify-content: flex-end; + height: 3.5rem; + display: flex; + align-items: center; +} + + .top-row ::deep a, .top-row ::deep .btn-link { + white-space: nowrap; + margin-left: 1.5rem; + text-decoration: none; + } + + .top-row ::deep a:hover, .top-row ::deep .btn-link:hover { + text-decoration: underline; + } + + .top-row ::deep a:first-child { + overflow: hidden; + text-overflow: ellipsis; + } + +@media (max-width: 640.98px) { + .top-row { + justify-content: space-between; + } + + .top-row ::deep a, .top-row ::deep .btn-link { + margin-left: 0; + } +} + +@media (min-width: 641px) { + .page { + flex-direction: row; + } + + .sidebar { + width: 250px; + height: 100vh; + position: sticky; + top: 0; + } + + .top-row { + position: sticky; + top: 0; + z-index: 1; + } + + .top-row.auth ::deep a:first-child { + flex: 1; + text-align: right; + width: 0; + } + + .top-row, article { + padding-left: 2rem !important; + padding-right: 1.5rem !important; + } +} + +#blazor-error-ui { + color-scheme: light only; + background: lightyellow; + bottom: 0; + box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2); + box-sizing: border-box; + display: none; + left: 0; + padding: 0.6rem 1.25rem 0.7rem 1.25rem; + position: fixed; + width: 100%; + z-index: 1000; +} + + #blazor-error-ui .dismiss { + cursor: pointer; + position: absolute; + right: 0.75rem; + top: 0.5rem; + } diff --git a/src/dotnet/QuantEngine.Web/Components/Layout/NavMenu.razor b/src/dotnet/QuantEngine.Web/Components/Layout/NavMenu.razor new file mode 100644 index 0000000..05ea88d --- /dev/null +++ b/src/dotnet/QuantEngine.Web/Components/Layout/NavMenu.razor @@ -0,0 +1,30 @@ + + + + + + diff --git a/src/dotnet/QuantEngine.Web/Components/Layout/NavMenu.razor.css b/src/dotnet/QuantEngine.Web/Components/Layout/NavMenu.razor.css new file mode 100644 index 0000000..a2aeace --- /dev/null +++ b/src/dotnet/QuantEngine.Web/Components/Layout/NavMenu.razor.css @@ -0,0 +1,105 @@ +.navbar-toggler { + appearance: none; + cursor: pointer; + width: 3.5rem; + height: 2.5rem; + color: white; + position: absolute; + top: 0.5rem; + right: 1rem; + border: 1px solid rgba(255, 255, 255, 0.1); + background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") no-repeat center/1.75rem rgba(255, 255, 255, 0.1); +} + +.navbar-toggler:checked { + background-color: rgba(255, 255, 255, 0.5); +} + +.top-row { + min-height: 3.5rem; + background-color: rgba(0,0,0,0.4); +} + +.navbar-brand { + font-size: 1.1rem; +} + +.bi { + display: inline-block; + position: relative; + width: 1.25rem; + height: 1.25rem; + margin-right: 0.75rem; + top: -1px; + background-size: cover; +} + +.bi-house-door-fill-nav-menu { + background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-house-door-fill' viewBox='0 0 16 16'%3E%3Cpath d='M6.5 14.5v-3.505c0-.245.25-.495.5-.495h2c.25 0 .5.25.5.5v3.5a.5.5 0 0 0 .5.5h4a.5.5 0 0 0 .5-.5v-7a.5.5 0 0 0-.146-.354L13 5.793V2.5a.5.5 0 0 0-.5-.5h-1a.5.5 0 0 0-.5.5v1.293L8.354 1.146a.5.5 0 0 0-.708 0l-6 6A.5.5 0 0 0 1.5 7.5v7a.5.5 0 0 0 .5.5h4a.5.5 0 0 0 .5-.5Z'/%3E%3C/svg%3E"); +} + +.bi-plus-square-fill-nav-menu { + background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-plus-square-fill' viewBox='0 0 16 16'%3E%3Cpath d='M2 0a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V2a2 2 0 0 0-2-2H2zm6.5 4.5v3h3a.5.5 0 0 1 0 1h-3v3a.5.5 0 0 1-1 0v-3h-3a.5.5 0 0 1 0-1h3v-3a.5.5 0 0 1 1 0z'/%3E%3C/svg%3E"); +} + +.bi-list-nested-nav-menu { + background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-list-nested' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M4.5 11.5A.5.5 0 0 1 5 11h10a.5.5 0 0 1 0 1H5a.5.5 0 0 1-.5-.5zm-2-4A.5.5 0 0 1 3 7h10a.5.5 0 0 1 0 1H3a.5.5 0 0 1-.5-.5zm-2-4A.5.5 0 0 1 1 3h10a.5.5 0 0 1 0 1H1a.5.5 0 0 1-.5-.5z'/%3E%3C/svg%3E"); +} + +.nav-item { + font-size: 0.9rem; + padding-bottom: 0.5rem; +} + + .nav-item:first-of-type { + padding-top: 1rem; + } + + .nav-item:last-of-type { + padding-bottom: 1rem; + } + + .nav-item ::deep .nav-link { + color: #d7d7d7; + background: none; + border: none; + border-radius: 4px; + height: 3rem; + display: flex; + align-items: center; + line-height: 3rem; + width: 100%; + } + +.nav-item ::deep a.active { + background-color: rgba(255,255,255,0.37); + color: white; +} + +.nav-item ::deep .nav-link:hover { + background-color: rgba(255,255,255,0.1); + color: white; +} + +.nav-scrollable { + display: none; +} + +.navbar-toggler:checked ~ .nav-scrollable { + display: block; +} + +@media (min-width: 641px) { + .navbar-toggler { + display: none; + } + + .nav-scrollable { + /* Never collapse the sidebar for wide screens */ + display: block; + + /* Allow sidebar to scroll for tall menus */ + height: calc(100vh - 3.5rem); + overflow-y: auto; + } +} diff --git a/src/dotnet/QuantEngine.Web/Components/Layout/ReconnectModal.razor b/src/dotnet/QuantEngine.Web/Components/Layout/ReconnectModal.razor new file mode 100644 index 0000000..49d916b --- /dev/null +++ b/src/dotnet/QuantEngine.Web/Components/Layout/ReconnectModal.razor @@ -0,0 +1,31 @@ + + + +
+ +

+ Rejoining the server... +

+

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

+

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

+ +

+ The session has been paused by the server. +

+ +

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

+
+
diff --git a/src/dotnet/QuantEngine.Web/Components/Layout/ReconnectModal.razor.css b/src/dotnet/QuantEngine.Web/Components/Layout/ReconnectModal.razor.css new file mode 100644 index 0000000..3ad3773 --- /dev/null +++ b/src/dotnet/QuantEngine.Web/Components/Layout/ReconnectModal.razor.css @@ -0,0 +1,157 @@ +.components-reconnect-first-attempt-visible, +.components-reconnect-repeated-attempt-visible, +.components-reconnect-failed-visible, +.components-pause-visible, +.components-resume-failed-visible, +.components-rejoining-animation { + display: none; +} + +#components-reconnect-modal.components-reconnect-show .components-reconnect-first-attempt-visible, +#components-reconnect-modal.components-reconnect-show .components-rejoining-animation, +#components-reconnect-modal.components-reconnect-paused .components-pause-visible, +#components-reconnect-modal.components-reconnect-resume-failed .components-resume-failed-visible, +#components-reconnect-modal.components-reconnect-retrying, +#components-reconnect-modal.components-reconnect-retrying .components-reconnect-repeated-attempt-visible, +#components-reconnect-modal.components-reconnect-retrying .components-rejoining-animation, +#components-reconnect-modal.components-reconnect-failed, +#components-reconnect-modal.components-reconnect-failed .components-reconnect-failed-visible { + display: block; +} + + +#components-reconnect-modal { + background-color: white; + width: 20rem; + margin: 20vh auto; + padding: 2rem; + border: 0; + border-radius: 0.5rem; + box-shadow: 0 3px 6px 2px rgba(0, 0, 0, 0.3); + opacity: 0; + transition: display 0.5s allow-discrete, overlay 0.5s allow-discrete; + animation: components-reconnect-modal-fadeOutOpacity 0.5s both; + &[open] + +{ + animation: components-reconnect-modal-slideUp 1.5s cubic-bezier(.05, .89, .25, 1.02) 0.3s, components-reconnect-modal-fadeInOpacity 0.5s ease-in-out 0.3s; + animation-fill-mode: both; +} + +} + +#components-reconnect-modal::backdrop { + background-color: rgba(0, 0, 0, 0.4); + animation: components-reconnect-modal-fadeInOpacity 0.5s ease-in-out; + opacity: 1; +} + +@keyframes components-reconnect-modal-slideUp { + 0% { + transform: translateY(30px) scale(0.95); + } + + 100% { + transform: translateY(0); + } +} + +@keyframes components-reconnect-modal-fadeInOpacity { + 0% { + opacity: 0; + } + + 100% { + opacity: 1; + } +} + +@keyframes components-reconnect-modal-fadeOutOpacity { + 0% { + opacity: 1; + } + + 100% { + opacity: 0; + } +} + +.components-reconnect-container { + display: flex; + flex-direction: column; + align-items: center; + gap: 1rem; +} + +#components-reconnect-modal p { + margin: 0; + text-align: center; +} + +#components-reconnect-modal button { + border: 0; + background-color: #6b9ed2; + color: white; + padding: 4px 24px; + border-radius: 4px; +} + + #components-reconnect-modal button:hover { + background-color: #3b6ea2; + } + + #components-reconnect-modal button:active { + background-color: #6b9ed2; + } + +.components-rejoining-animation { + position: relative; + width: 80px; + height: 80px; +} + + .components-rejoining-animation div { + position: absolute; + border: 3px solid #0087ff; + opacity: 1; + border-radius: 50%; + animation: components-rejoining-animation 1.5s cubic-bezier(0, 0.2, 0.8, 1) infinite; + } + + .components-rejoining-animation div:nth-child(2) { + animation-delay: -0.5s; + } + +@keyframes components-rejoining-animation { + 0% { + top: 40px; + left: 40px; + width: 0; + height: 0; + opacity: 0; + } + + 4.9% { + top: 40px; + left: 40px; + width: 0; + height: 0; + opacity: 0; + } + + 5% { + top: 40px; + left: 40px; + width: 0; + height: 0; + opacity: 1; + } + + 100% { + top: 0px; + left: 0px; + width: 80px; + height: 80px; + opacity: 0; + } +} diff --git a/src/dotnet/QuantEngine.Web/Components/Layout/ReconnectModal.razor.js b/src/dotnet/QuantEngine.Web/Components/Layout/ReconnectModal.razor.js new file mode 100644 index 0000000..e52a190 --- /dev/null +++ b/src/dotnet/QuantEngine.Web/Components/Layout/ReconnectModal.razor.js @@ -0,0 +1,63 @@ +// Set up event handlers +const reconnectModal = document.getElementById("components-reconnect-modal"); +reconnectModal.addEventListener("components-reconnect-state-changed", handleReconnectStateChanged); + +const retryButton = document.getElementById("components-reconnect-button"); +retryButton.addEventListener("click", retry); + +const resumeButton = document.getElementById("components-resume-button"); +resumeButton.addEventListener("click", resume); + +function handleReconnectStateChanged(event) { + if (event.detail.state === "show") { + reconnectModal.showModal(); + } else if (event.detail.state === "hide") { + reconnectModal.close(); + } else if (event.detail.state === "failed") { + document.addEventListener("visibilitychange", retryWhenDocumentBecomesVisible); + } else if (event.detail.state === "rejected") { + location.reload(); + } +} + +async function retry() { + document.removeEventListener("visibilitychange", retryWhenDocumentBecomesVisible); + + try { + // Reconnect will asynchronously return: + // - true to mean success + // - false to mean we reached the server, but it rejected the connection (e.g., unknown circuit ID) + // - exception to mean we didn't reach the server (this can be sync or async) + const successful = await Blazor.reconnect(); + if (!successful) { + // We have been able to reach the server, but the circuit is no longer available. + // We'll reload the page so the user can continue using the app as quickly as possible. + const resumeSuccessful = await Blazor.resumeCircuit(); + if (!resumeSuccessful) { + location.reload(); + } else { + reconnectModal.close(); + } + } + } catch (err) { + // We got an exception, server is currently unavailable + document.addEventListener("visibilitychange", retryWhenDocumentBecomesVisible); + } +} + +async function resume() { + try { + const successful = await Blazor.resumeCircuit(); + if (!successful) { + location.reload(); + } + } catch { + location.reload(); + } +} + +async function retryWhenDocumentBecomesVisible() { + if (document.visibilityState === "visible") { + await retry(); + } +} diff --git a/src/dotnet/QuantEngine.Web/Components/Pages/Counter.razor b/src/dotnet/QuantEngine.Web/Components/Pages/Counter.razor new file mode 100644 index 0000000..1a4f8e7 --- /dev/null +++ b/src/dotnet/QuantEngine.Web/Components/Pages/Counter.razor @@ -0,0 +1,19 @@ +@page "/counter" +@rendermode InteractiveServer + +Counter + +

Counter

+ +

Current count: @currentCount

+ + + +@code { + private int currentCount = 0; + + private void IncrementCount() + { + currentCount++; + } +} diff --git a/src/dotnet/QuantEngine.Web/Components/Pages/Dashboard.razor b/src/dotnet/QuantEngine.Web/Components/Pages/Dashboard.razor new file mode 100644 index 0000000..3d33f37 --- /dev/null +++ b/src/dotnet/QuantEngine.Web/Components/Pages/Dashboard.razor @@ -0,0 +1,227 @@ +@page "/" +@using QuantEngine.Core.Models +@using QuantEngine.Core.Interfaces +@inject IWorkspaceRepository WorkspaceRepo +@inject NavigationManager NavManager + +Quant Engine - Administration Dashboard + +
+ +
+
+ 📈 +

Quant Engine

+ Active Workspace +
+
+ + PostgreSQL: Connected +
+
+ + +
+ + + + +
+
+
+

⚙️ System Config (Settings)

+ +
+ +
+ + + + + + + + + + + + + @if (settings != null && settings.Any()) + { + @foreach (var s in settings) + { + + + + + + + + + } + } + else + { + + + + } + +
OrdinalKeyValue (JSON)NoteUpdated AtActions
@s.Ordinal@s.Key@s.ValueJson@s.Note@s.UpdatedAt +
+ + +
+
No configuration settings found.
+
+
+
+
+ + + @if (showModal) + { + + } +
+ +@code { + private List settings = new(); + private List locks = new(); + private List approvals = new(); + + private bool showModal = false; + private bool isEditMode = false; + private Setting modalSetting = new(); + + protected override async Task OnInitializedAsync() + { + await LoadData(); + } + + private async Task LoadData() + { + settings = (await WorkspaceRepo.GetSettingsAsync()).ToList(); + locks = (await WorkspaceRepo.GetLocksAsync()).ToList(); + approvals = (await WorkspaceRepo.GetApprovalsAsync()).ToList(); + } + + private void ShowAddSettingModal() + { + isEditMode = false; + modalSetting = new Setting + { + Ordinal = settings.Count + 1, + UpdatedAt = DateTime.UtcNow.AddHours(9).ToString("o") + }; + showModal = true; + } + + private void EditSetting(Setting s) + { + isEditMode = true; + modalSetting = new Setting + { + Ordinal = s.Ordinal, + Key = s.Key, + ValueJson = s.ValueJson, + Note = s.Note, + UpdatedAt = DateTime.UtcNow.AddHours(9).ToString("o") + }; + showModal = true; + } + + private async Task SaveSetting() + { + if (string.IsNullOrWhiteSpace(modalSetting.Key)) return; + + modalSetting.UpdatedAt = DateTime.UtcNow.AddHours(9).ToString("o"); + await WorkspaceRepo.UpsertSettingAsync(modalSetting); + showModal = false; + await LoadData(); + } + + private async Task DeleteSetting(string key) + { + await WorkspaceRepo.DeleteSettingAsync(key); + await LoadData(); + } + + private void CloseModal() + { + showModal = false; + } +} diff --git a/src/dotnet/QuantEngine.Web/Components/Pages/Error.razor b/src/dotnet/QuantEngine.Web/Components/Pages/Error.razor new file mode 100644 index 0000000..576cc2d --- /dev/null +++ b/src/dotnet/QuantEngine.Web/Components/Pages/Error.razor @@ -0,0 +1,36 @@ +@page "/Error" +@using System.Diagnostics + +Error + +

Error.

+

An error occurred while processing your request.

+ +@if (ShowRequestId) +{ +

+ Request ID: @RequestId +

+} + +

Development Mode

+

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

+

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

+ +@code{ + [CascadingParameter] + private HttpContext? HttpContext { get; set; } + + private string? RequestId { get; set; } + private bool ShowRequestId => !string.IsNullOrEmpty(RequestId); + + protected override void OnInitialized() => + RequestId = Activity.Current?.Id ?? HttpContext?.TraceIdentifier; +} diff --git a/src/dotnet/QuantEngine.Web/Components/Pages/Home.razor b/src/dotnet/QuantEngine.Web/Components/Pages/Home.razor new file mode 100644 index 0000000..9001e0b --- /dev/null +++ b/src/dotnet/QuantEngine.Web/Components/Pages/Home.razor @@ -0,0 +1,7 @@ +@page "/" + +Home + +

Hello, world!

+ +Welcome to your new app. diff --git a/src/dotnet/QuantEngine.Web/Components/Pages/NotFound.razor b/src/dotnet/QuantEngine.Web/Components/Pages/NotFound.razor new file mode 100644 index 0000000..917ada1 --- /dev/null +++ b/src/dotnet/QuantEngine.Web/Components/Pages/NotFound.razor @@ -0,0 +1,5 @@ +@page "/not-found" +@layout MainLayout + +

Not Found

+

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

\ No newline at end of file diff --git a/src/dotnet/QuantEngine.Web/Components/Pages/Weather.razor b/src/dotnet/QuantEngine.Web/Components/Pages/Weather.razor new file mode 100644 index 0000000..f437e5e --- /dev/null +++ b/src/dotnet/QuantEngine.Web/Components/Pages/Weather.razor @@ -0,0 +1,64 @@ +@page "/weather" +@attribute [StreamRendering] + +Weather + +

Weather

+ +

This component demonstrates showing data.

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

Loading...

+} +else +{ + + + + + + + + + + + @foreach (var forecast in forecasts) + { + + + + + + + } + +
DateTemp. (C)Temp. (F)Summary
@forecast.Date.ToShortDateString()@forecast.TemperatureC@forecast.TemperatureF@forecast.Summary
+} + +@code { + private WeatherForecast[]? forecasts; + + protected override async Task OnInitializedAsync() + { + // Simulate asynchronous loading to demonstrate streaming rendering + await Task.Delay(500); + + var startDate = DateOnly.FromDateTime(DateTime.Now); + var summaries = new[] { "Freezing", "Bracing", "Chilly", "Cool", "Mild", "Warm", "Balmy", "Hot", "Sweltering", "Scorching" }; + forecasts = Enumerable.Range(1, 5).Select(index => new WeatherForecast + { + Date = startDate.AddDays(index), + TemperatureC = Random.Shared.Next(-20, 55), + Summary = summaries[Random.Shared.Next(summaries.Length)] + }).ToArray(); + } + + private class WeatherForecast + { + public DateOnly Date { get; set; } + public int TemperatureC { get; set; } + public string? Summary { get; set; } + public int TemperatureF => 32 + (int)(TemperatureC / 0.5556); + } +} diff --git a/src/dotnet/QuantEngine.Web/Components/Routes.razor b/src/dotnet/QuantEngine.Web/Components/Routes.razor new file mode 100644 index 0000000..105855d --- /dev/null +++ b/src/dotnet/QuantEngine.Web/Components/Routes.razor @@ -0,0 +1,6 @@ + + + + + + diff --git a/src/dotnet/QuantEngine.Web/Components/_Imports.razor b/src/dotnet/QuantEngine.Web/Components/_Imports.razor new file mode 100644 index 0000000..9cd9282 --- /dev/null +++ b/src/dotnet/QuantEngine.Web/Components/_Imports.razor @@ -0,0 +1,11 @@ +@using System.Net.Http +@using System.Net.Http.Json +@using Microsoft.AspNetCore.Components.Forms +@using Microsoft.AspNetCore.Components.Routing +@using Microsoft.AspNetCore.Components.Web +@using static Microsoft.AspNetCore.Components.Web.RenderMode +@using Microsoft.AspNetCore.Components.Web.Virtualization +@using Microsoft.JSInterop +@using QuantEngine.Web +@using QuantEngine.Web.Components +@using QuantEngine.Web.Components.Layout diff --git a/src/dotnet/QuantEngine.Web/Program.cs b/src/dotnet/QuantEngine.Web/Program.cs new file mode 100644 index 0000000..10eaed5 --- /dev/null +++ b/src/dotnet/QuantEngine.Web/Program.cs @@ -0,0 +1,39 @@ +using QuantEngine.Web.Components; +using QuantEngine.Infrastructure.Data; +using QuantEngine.Infrastructure.Repositories; +using QuantEngine.Core.Interfaces; + +var builder = WebApplication.CreateBuilder(args); + +// Add services to the container. +builder.Services.AddRazorComponents() + .AddInteractiveServerComponents(); + +// PostgreSQL Dapper Setup +var connectionString = "Host=178.104.200.7;Database=giteadb;Username=gitea;Password=C8RFlZ9fdQrBA1vyLhLDS4v70I8dJfRS2ERJW4+zsS4=;Search Path=quantengine;"; +builder.Services.AddSingleton(new DbConnectionFactory(connectionString)); +builder.Services.AddScoped(); +builder.Services.AddHttpClient(); + +var app = builder.Build(); + +// Enable reverse proxy subpath mapping +app.UsePathBase("/quant"); + +// Configure the HTTP request pipeline. +if (!app.Environment.IsDevelopment()) +{ + app.UseExceptionHandler("/Error", createScopeForErrors: true); + app.UseHsts(); +} +app.UseStatusCodePagesWithReExecute("/not-found", createScopeForStatusCodePages: true); +app.UseHttpsRedirection(); + +app.UseAntiforgery(); + +app.MapStaticAssets(); +app.MapRazorComponents() + .AddInteractiveServerRenderMode(); + +app.Run(); + diff --git a/src/dotnet/QuantEngine.Web/Properties/launchSettings.json b/src/dotnet/QuantEngine.Web/Properties/launchSettings.json new file mode 100644 index 0000000..5e3d151 --- /dev/null +++ b/src/dotnet/QuantEngine.Web/Properties/launchSettings.json @@ -0,0 +1,23 @@ +{ + "$schema": "https://json.schemastore.org/launchsettings.json", + "profiles": { + "http": { + "commandName": "Project", + "dotnetRunMessages": true, + "launchBrowser": true, + "applicationUrl": "http://localhost:5265", + "environmentVariables": { + "ASPNETCORE_ENVIRONMENT": "Development" + } + }, + "https": { + "commandName": "Project", + "dotnetRunMessages": true, + "launchBrowser": true, + "applicationUrl": "https://localhost:7112;http://localhost:5265", + "environmentVariables": { + "ASPNETCORE_ENVIRONMENT": "Development" + } + } + } + } diff --git a/src/dotnet/QuantEngine.Web/QuantEngine.Web.csproj b/src/dotnet/QuantEngine.Web/QuantEngine.Web.csproj new file mode 100644 index 0000000..e589eb3 --- /dev/null +++ b/src/dotnet/QuantEngine.Web/QuantEngine.Web.csproj @@ -0,0 +1,16 @@ + + + + + + + + + + net10.0 + enable + enable + true + + + diff --git a/src/dotnet/QuantEngine.Web/appsettings.Development.json b/src/dotnet/QuantEngine.Web/appsettings.Development.json new file mode 100644 index 0000000..0c208ae --- /dev/null +++ b/src/dotnet/QuantEngine.Web/appsettings.Development.json @@ -0,0 +1,8 @@ +{ + "Logging": { + "LogLevel": { + "Default": "Information", + "Microsoft.AspNetCore": "Warning" + } + } +} diff --git a/src/dotnet/QuantEngine.Web/appsettings.json b/src/dotnet/QuantEngine.Web/appsettings.json new file mode 100644 index 0000000..10f68b8 --- /dev/null +++ b/src/dotnet/QuantEngine.Web/appsettings.json @@ -0,0 +1,9 @@ +{ + "Logging": { + "LogLevel": { + "Default": "Information", + "Microsoft.AspNetCore": "Warning" + } + }, + "AllowedHosts": "*" +} diff --git a/src/dotnet/QuantEngine.Web/bin/Debug/net10.0/Dapper.dll b/src/dotnet/QuantEngine.Web/bin/Debug/net10.0/Dapper.dll new file mode 100644 index 0000000..84d2de0 Binary files /dev/null and b/src/dotnet/QuantEngine.Web/bin/Debug/net10.0/Dapper.dll differ diff --git a/src/dotnet/QuantEngine.Web/bin/Debug/net10.0/Npgsql.dll b/src/dotnet/QuantEngine.Web/bin/Debug/net10.0/Npgsql.dll new file mode 100644 index 0000000..184db8d Binary files /dev/null and b/src/dotnet/QuantEngine.Web/bin/Debug/net10.0/Npgsql.dll differ diff --git a/src/dotnet/QuantEngine.Web/bin/Debug/net10.0/QuantEngine.Application.dll b/src/dotnet/QuantEngine.Web/bin/Debug/net10.0/QuantEngine.Application.dll new file mode 100644 index 0000000..f2eab53 Binary files /dev/null and b/src/dotnet/QuantEngine.Web/bin/Debug/net10.0/QuantEngine.Application.dll differ diff --git a/src/dotnet/QuantEngine.Web/bin/Debug/net10.0/QuantEngine.Application.pdb b/src/dotnet/QuantEngine.Web/bin/Debug/net10.0/QuantEngine.Application.pdb new file mode 100644 index 0000000..598efce Binary files /dev/null and b/src/dotnet/QuantEngine.Web/bin/Debug/net10.0/QuantEngine.Application.pdb differ diff --git a/src/dotnet/QuantEngine.Web/bin/Debug/net10.0/QuantEngine.Core.dll b/src/dotnet/QuantEngine.Web/bin/Debug/net10.0/QuantEngine.Core.dll new file mode 100644 index 0000000..6423906 Binary files /dev/null and b/src/dotnet/QuantEngine.Web/bin/Debug/net10.0/QuantEngine.Core.dll differ diff --git a/src/dotnet/QuantEngine.Web/bin/Debug/net10.0/QuantEngine.Core.pdb b/src/dotnet/QuantEngine.Web/bin/Debug/net10.0/QuantEngine.Core.pdb new file mode 100644 index 0000000..72dafcd Binary files /dev/null and b/src/dotnet/QuantEngine.Web/bin/Debug/net10.0/QuantEngine.Core.pdb differ diff --git a/src/dotnet/QuantEngine.Web/bin/Debug/net10.0/QuantEngine.Infrastructure.dll b/src/dotnet/QuantEngine.Web/bin/Debug/net10.0/QuantEngine.Infrastructure.dll new file mode 100644 index 0000000..2efbdb6 Binary files /dev/null and b/src/dotnet/QuantEngine.Web/bin/Debug/net10.0/QuantEngine.Infrastructure.dll differ diff --git a/src/dotnet/QuantEngine.Web/bin/Debug/net10.0/QuantEngine.Infrastructure.pdb b/src/dotnet/QuantEngine.Web/bin/Debug/net10.0/QuantEngine.Infrastructure.pdb new file mode 100644 index 0000000..5655454 Binary files /dev/null and b/src/dotnet/QuantEngine.Web/bin/Debug/net10.0/QuantEngine.Infrastructure.pdb differ diff --git a/src/dotnet/QuantEngine.Web/bin/Debug/net10.0/QuantEngine.Web.deps.json b/src/dotnet/QuantEngine.Web/bin/Debug/net10.0/QuantEngine.Web.deps.json new file mode 100644 index 0000000..96f2cd8 --- /dev/null +++ b/src/dotnet/QuantEngine.Web/bin/Debug/net10.0/QuantEngine.Web.deps.json @@ -0,0 +1,106 @@ +{ + "runtimeTarget": { + "name": ".NETCoreApp,Version=v10.0", + "signature": "" + }, + "compilationOptions": {}, + "targets": { + ".NETCoreApp,Version=v10.0": { + "QuantEngine.Web/1.0.0": { + "dependencies": { + "QuantEngine.Application": "1.0.0", + "QuantEngine.Core": "1.0.0", + "QuantEngine.Infrastructure": "1.0.0" + }, + "runtime": { + "QuantEngine.Web.dll": {} + } + }, + "Dapper/2.1.79": { + "runtime": { + "lib/net10.0/Dapper.dll": { + "assemblyVersion": "2.0.0.0", + "fileVersion": "2.1.79.29349" + } + } + }, + "Npgsql/10.0.3": { + "runtime": { + "lib/net10.0/Npgsql.dll": { + "assemblyVersion": "10.0.3.0", + "fileVersion": "10.0.3.0" + } + } + }, + "QuantEngine.Application/1.0.0": { + "dependencies": { + "QuantEngine.Core": "1.0.0" + }, + "runtime": { + "QuantEngine.Application.dll": { + "assemblyVersion": "1.0.0.0", + "fileVersion": "1.0.0.0" + } + } + }, + "QuantEngine.Core/1.0.0": { + "runtime": { + "QuantEngine.Core.dll": { + "assemblyVersion": "1.0.0.0", + "fileVersion": "1.0.0.0" + } + } + }, + "QuantEngine.Infrastructure/1.0.0": { + "dependencies": { + "Dapper": "2.1.79", + "Npgsql": "10.0.3", + "QuantEngine.Application": "1.0.0", + "QuantEngine.Core": "1.0.0" + }, + "runtime": { + "QuantEngine.Infrastructure.dll": { + "assemblyVersion": "1.0.0.0", + "fileVersion": "1.0.0.0" + } + } + } + } + }, + "libraries": { + "QuantEngine.Web/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + }, + "Dapper/2.1.79": { + "type": "package", + "serviceable": true, + "sha512": "sha512-8YijbzgTfmqmQOnVNorYM6K++pxqnW3nJ4aC1sRHzxUA2CcuoJ9gsTem3kgBnPRMc38zZHl4Esb6hAezXIEEuw==", + "path": "dapper/2.1.79", + "hashPath": "dapper.2.1.79.nupkg.sha512" + }, + "Npgsql/10.0.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-7nb5YzXuvWWJxB0J8DiyL3we+X4FOctZrt0fIBnucOIaIevFEEwGQVZKtiu9olXdlNAK1eNgqSral6r/jlhI4w==", + "path": "npgsql/10.0.3", + "hashPath": "npgsql.10.0.3.nupkg.sha512" + }, + "QuantEngine.Application/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + }, + "QuantEngine.Core/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + }, + "QuantEngine.Infrastructure/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + } + } +} \ No newline at end of file diff --git a/src/dotnet/QuantEngine.Web/bin/Debug/net10.0/QuantEngine.Web.dll b/src/dotnet/QuantEngine.Web/bin/Debug/net10.0/QuantEngine.Web.dll new file mode 100644 index 0000000..2823bb9 Binary files /dev/null and b/src/dotnet/QuantEngine.Web/bin/Debug/net10.0/QuantEngine.Web.dll differ diff --git a/src/dotnet/QuantEngine.Web/bin/Debug/net10.0/QuantEngine.Web.exe b/src/dotnet/QuantEngine.Web/bin/Debug/net10.0/QuantEngine.Web.exe new file mode 100644 index 0000000..6cc01ed Binary files /dev/null and b/src/dotnet/QuantEngine.Web/bin/Debug/net10.0/QuantEngine.Web.exe differ diff --git a/src/dotnet/QuantEngine.Web/bin/Debug/net10.0/QuantEngine.Web.pdb b/src/dotnet/QuantEngine.Web/bin/Debug/net10.0/QuantEngine.Web.pdb new file mode 100644 index 0000000..d364e2b Binary files /dev/null and b/src/dotnet/QuantEngine.Web/bin/Debug/net10.0/QuantEngine.Web.pdb differ diff --git a/src/dotnet/QuantEngine.Web/bin/Debug/net10.0/QuantEngine.Web.runtimeconfig.json b/src/dotnet/QuantEngine.Web/bin/Debug/net10.0/QuantEngine.Web.runtimeconfig.json new file mode 100644 index 0000000..8b09022 --- /dev/null +++ b/src/dotnet/QuantEngine.Web/bin/Debug/net10.0/QuantEngine.Web.runtimeconfig.json @@ -0,0 +1,20 @@ +{ + "runtimeOptions": { + "tfm": "net10.0", + "frameworks": [ + { + "name": "Microsoft.NETCore.App", + "version": "10.0.0" + }, + { + "name": "Microsoft.AspNetCore.App", + "version": "10.0.0" + } + ], + "configProperties": { + "System.GC.Server": true, + "System.Runtime.Serialization.EnableUnsafeBinaryFormatterSerialization": false, + "Microsoft.AspNetCore.Components.Endpoints.NavigationManager.DisableThrowNavigationException": true + } + } +} \ No newline at end of file diff --git a/src/dotnet/QuantEngine.Web/bin/Debug/net10.0/QuantEngine.Web.staticwebassets.endpoints.json b/src/dotnet/QuantEngine.Web/bin/Debug/net10.0/QuantEngine.Web.staticwebassets.endpoints.json new file mode 100644 index 0000000..f857f6e --- /dev/null +++ b/src/dotnet/QuantEngine.Web/bin/Debug/net10.0/QuantEngine.Web.staticwebassets.endpoints.json @@ -0,0 +1 @@ +{"Version":1,"ManifestType":"Build","Endpoints":[{"Route":"Components/Layout/ReconnectModal.13ja33weya.razor.js","AssetFile":"Components/Layout/ReconnectModal.razor.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"2364"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"4zGYCWZ4pfXdYacNs7XaH1BXGvludoT6JCkX9NZucgI=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:34:32 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"13ja33weya"},{"Name":"integrity","Value":"sha256-4zGYCWZ4pfXdYacNs7XaH1BXGvludoT6JCkX9NZucgI="},{"Name":"label","Value":"Components/Layout/ReconnectModal.razor.js"},{"Name":"script-type","Value":"module"}]},{"Route":"Components/Layout/ReconnectModal.13ja33weya.razor.js","AssetFile":"Components/Layout/ReconnectModal.razor.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.001386962552"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"720"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"kQLxn+TSoZvHHUJJnDORp3qKU0F+kzVxLQB9TB0aEoY=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"13ja33weya"},{"Name":"integrity","Value":"sha256-4zGYCWZ4pfXdYacNs7XaH1BXGvludoT6JCkX9NZucgI="},{"Name":"label","Value":"Components/Layout/ReconnectModal.razor.js"},{"Name":"original-resource","Value":"\"4zGYCWZ4pfXdYacNs7XaH1BXGvludoT6JCkX9NZucgI=\""},{"Name":"script-type","Value":"module"}]},{"Route":"Components/Layout/ReconnectModal.13ja33weya.razor.js.gz","AssetFile":"Components/Layout/ReconnectModal.razor.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"720"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"kQLxn+TSoZvHHUJJnDORp3qKU0F+kzVxLQB9TB0aEoY=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"13ja33weya"},{"Name":"integrity","Value":"sha256-kQLxn+TSoZvHHUJJnDORp3qKU0F+kzVxLQB9TB0aEoY="},{"Name":"label","Value":"Components/Layout/ReconnectModal.razor.js.gz"}]},{"Route":"Components/Layout/ReconnectModal.razor.js","AssetFile":"Components/Layout/ReconnectModal.razor.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"2364"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"4zGYCWZ4pfXdYacNs7XaH1BXGvludoT6JCkX9NZucgI=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:34:32 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-4zGYCWZ4pfXdYacNs7XaH1BXGvludoT6JCkX9NZucgI="},{"Name":"script-type","Value":"module"}]},{"Route":"Components/Layout/ReconnectModal.razor.js","AssetFile":"Components/Layout/ReconnectModal.razor.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.001386962552"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"720"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"kQLxn+TSoZvHHUJJnDORp3qKU0F+kzVxLQB9TB0aEoY=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-4zGYCWZ4pfXdYacNs7XaH1BXGvludoT6JCkX9NZucgI="},{"Name":"original-resource","Value":"\"4zGYCWZ4pfXdYacNs7XaH1BXGvludoT6JCkX9NZucgI=\""},{"Name":"script-type","Value":"module"}]},{"Route":"Components/Layout/ReconnectModal.razor.js.gz","AssetFile":"Components/Layout/ReconnectModal.razor.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"720"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"kQLxn+TSoZvHHUJJnDORp3qKU0F+kzVxLQB9TB0aEoY=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-kQLxn+TSoZvHHUJJnDORp3qKU0F+kzVxLQB9TB0aEoY="}]},{"Route":"QuantEngine.Web.styles.css","AssetFile":"QuantEngine.Web.styles.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000402900886"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2481"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"eMUoaz34S9P8ffguerv/SxXWfTBS7zv7kXrquS2C5EE=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-GphsPL5Q7m5g2Ugk7RGmBY019LEDJjdfaTE9uXiHMcs="},{"Name":"original-resource","Value":"\"GphsPL5Q7m5g2Ugk7RGmBY019LEDJjdfaTE9uXiHMcs=\""}]},{"Route":"QuantEngine.Web.styles.css","AssetFile":"QuantEngine.Web.styles.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"10327"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"GphsPL5Q7m5g2Ugk7RGmBY019LEDJjdfaTE9uXiHMcs=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-GphsPL5Q7m5g2Ugk7RGmBY019LEDJjdfaTE9uXiHMcs="}]},{"Route":"QuantEngine.Web.styles.css.gz","AssetFile":"QuantEngine.Web.styles.css.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2481"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"eMUoaz34S9P8ffguerv/SxXWfTBS7zv7kXrquS2C5EE=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-eMUoaz34S9P8ffguerv/SxXWfTBS7zv7kXrquS2C5EE="}]},{"Route":"QuantEngine.Web.yi314np04p.styles.css","AssetFile":"QuantEngine.Web.styles.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000402900886"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2481"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"eMUoaz34S9P8ffguerv/SxXWfTBS7zv7kXrquS2C5EE=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"yi314np04p"},{"Name":"integrity","Value":"sha256-GphsPL5Q7m5g2Ugk7RGmBY019LEDJjdfaTE9uXiHMcs="},{"Name":"label","Value":"QuantEngine.Web.styles.css"},{"Name":"original-resource","Value":"\"GphsPL5Q7m5g2Ugk7RGmBY019LEDJjdfaTE9uXiHMcs=\""}]},{"Route":"QuantEngine.Web.yi314np04p.styles.css","AssetFile":"QuantEngine.Web.styles.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"10327"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"GphsPL5Q7m5g2Ugk7RGmBY019LEDJjdfaTE9uXiHMcs=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"yi314np04p"},{"Name":"integrity","Value":"sha256-GphsPL5Q7m5g2Ugk7RGmBY019LEDJjdfaTE9uXiHMcs="},{"Name":"label","Value":"QuantEngine.Web.styles.css"}]},{"Route":"QuantEngine.Web.yi314np04p.styles.css.gz","AssetFile":"QuantEngine.Web.styles.css.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2481"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"eMUoaz34S9P8ffguerv/SxXWfTBS7zv7kXrquS2C5EE=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"yi314np04p"},{"Name":"integrity","Value":"sha256-eMUoaz34S9P8ffguerv/SxXWfTBS7zv7kXrquS2C5EE="},{"Name":"label","Value":"QuantEngine.Web.styles.css.gz"}]},{"Route":"_framework/blazor.server.js","AssetFile":"_framework/blazor.server.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000022393909"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"44654"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"ahpIOLaxXwiWnLDSFUZfwZMfRrULpAls7jR+KeVK4ic=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Tv+kEpSEz2WDrK9B8F6f9WkB2KflgcYkRc7goTp7O9Q="},{"Name":"original-resource","Value":"\"Tv+kEpSEz2WDrK9B8F6f9WkB2KflgcYkRc7goTp7O9Q=\""}]},{"Route":"_framework/blazor.server.js","AssetFile":"_framework/blazor.server.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"164726"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"Tv+kEpSEz2WDrK9B8F6f9WkB2KflgcYkRc7goTp7O9Q=\""},{"Name":"Last-Modified","Value":"Fri, 24 Oct 2025 01:06:36 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Tv+kEpSEz2WDrK9B8F6f9WkB2KflgcYkRc7goTp7O9Q="}]},{"Route":"_framework/blazor.server.js.gz","AssetFile":"_framework/blazor.server.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"44654"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"ahpIOLaxXwiWnLDSFUZfwZMfRrULpAls7jR+KeVK4ic=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-ahpIOLaxXwiWnLDSFUZfwZMfRrULpAls7jR+KeVK4ic="}]},{"Route":"_framework/blazor.server.u1n4jc5v46.js","AssetFile":"_framework/blazor.server.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000022393909"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"44654"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"ahpIOLaxXwiWnLDSFUZfwZMfRrULpAls7jR+KeVK4ic=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"u1n4jc5v46"},{"Name":"integrity","Value":"sha256-Tv+kEpSEz2WDrK9B8F6f9WkB2KflgcYkRc7goTp7O9Q="},{"Name":"label","Value":"_framework/blazor.server.js"},{"Name":"original-resource","Value":"\"Tv+kEpSEz2WDrK9B8F6f9WkB2KflgcYkRc7goTp7O9Q=\""}]},{"Route":"_framework/blazor.server.u1n4jc5v46.js","AssetFile":"_framework/blazor.server.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"164726"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"Tv+kEpSEz2WDrK9B8F6f9WkB2KflgcYkRc7goTp7O9Q=\""},{"Name":"Last-Modified","Value":"Fri, 24 Oct 2025 01:06:36 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"u1n4jc5v46"},{"Name":"integrity","Value":"sha256-Tv+kEpSEz2WDrK9B8F6f9WkB2KflgcYkRc7goTp7O9Q="},{"Name":"label","Value":"_framework/blazor.server.js"}]},{"Route":"_framework/blazor.server.u1n4jc5v46.js.gz","AssetFile":"_framework/blazor.server.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"44654"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"ahpIOLaxXwiWnLDSFUZfwZMfRrULpAls7jR+KeVK4ic=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"u1n4jc5v46"},{"Name":"integrity","Value":"sha256-ahpIOLaxXwiWnLDSFUZfwZMfRrULpAls7jR+KeVK4ic="},{"Name":"label","Value":"_framework/blazor.server.js.gz"}]},{"Route":"_framework/blazor.web.j8lzlu28q6.js","AssetFile":"_framework/blazor.web.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000017975912"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"55629"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"VpDUbLuhAgB3D8PnpAYA58cbpiNNGy8iNBvD6LMHxhs=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"j8lzlu28q6"},{"Name":"integrity","Value":"sha256-vRwLU/ycEDb5TwHhutOGO6cpL7nIIRxLGPG7B9IvtHw="},{"Name":"label","Value":"_framework/blazor.web.js"},{"Name":"original-resource","Value":"\"vRwLU/ycEDb5TwHhutOGO6cpL7nIIRxLGPG7B9IvtHw=\""}]},{"Route":"_framework/blazor.web.j8lzlu28q6.js","AssetFile":"_framework/blazor.web.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"200101"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"vRwLU/ycEDb5TwHhutOGO6cpL7nIIRxLGPG7B9IvtHw=\""},{"Name":"Last-Modified","Value":"Fri, 24 Oct 2025 01:06:44 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"j8lzlu28q6"},{"Name":"integrity","Value":"sha256-vRwLU/ycEDb5TwHhutOGO6cpL7nIIRxLGPG7B9IvtHw="},{"Name":"label","Value":"_framework/blazor.web.js"}]},{"Route":"_framework/blazor.web.j8lzlu28q6.js.gz","AssetFile":"_framework/blazor.web.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"55629"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"VpDUbLuhAgB3D8PnpAYA58cbpiNNGy8iNBvD6LMHxhs=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"j8lzlu28q6"},{"Name":"integrity","Value":"sha256-VpDUbLuhAgB3D8PnpAYA58cbpiNNGy8iNBvD6LMHxhs="},{"Name":"label","Value":"_framework/blazor.web.js.gz"}]},{"Route":"_framework/blazor.web.js","AssetFile":"_framework/blazor.web.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000017975912"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"55629"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"VpDUbLuhAgB3D8PnpAYA58cbpiNNGy8iNBvD6LMHxhs=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-vRwLU/ycEDb5TwHhutOGO6cpL7nIIRxLGPG7B9IvtHw="},{"Name":"original-resource","Value":"\"vRwLU/ycEDb5TwHhutOGO6cpL7nIIRxLGPG7B9IvtHw=\""}]},{"Route":"_framework/blazor.web.js","AssetFile":"_framework/blazor.web.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"200101"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"vRwLU/ycEDb5TwHhutOGO6cpL7nIIRxLGPG7B9IvtHw=\""},{"Name":"Last-Modified","Value":"Fri, 24 Oct 2025 01:06:44 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-vRwLU/ycEDb5TwHhutOGO6cpL7nIIRxLGPG7B9IvtHw="}]},{"Route":"_framework/blazor.web.js.gz","AssetFile":"_framework/blazor.web.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"55629"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"VpDUbLuhAgB3D8PnpAYA58cbpiNNGy8iNBvD6LMHxhs=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-VpDUbLuhAgB3D8PnpAYA58cbpiNNGy8iNBvD6LMHxhs="}]},{"Route":"app.4c8rkwezul.css","AssetFile":"app.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000536480687"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1863"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"gnkzj8DwujHnit2MwKgV6YdKLWzKFbNT467LEBsdMTs=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:51:47 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"4c8rkwezul"},{"Name":"integrity","Value":"sha256-9BYQ1DEYdSZH7MBG7AQ28+OVGYKziE5nCfTTJOiedPU="},{"Name":"label","Value":"app.css"},{"Name":"original-resource","Value":"\"9BYQ1DEYdSZH7MBG7AQ28+OVGYKziE5nCfTTJOiedPU=\""}]},{"Route":"app.4c8rkwezul.css","AssetFile":"app.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"6554"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"9BYQ1DEYdSZH7MBG7AQ28+OVGYKziE5nCfTTJOiedPU=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:50:05 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"4c8rkwezul"},{"Name":"integrity","Value":"sha256-9BYQ1DEYdSZH7MBG7AQ28+OVGYKziE5nCfTTJOiedPU="},{"Name":"label","Value":"app.css"}]},{"Route":"app.4c8rkwezul.css.gz","AssetFile":"app.css.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1863"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"gnkzj8DwujHnit2MwKgV6YdKLWzKFbNT467LEBsdMTs=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:51:47 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"4c8rkwezul"},{"Name":"integrity","Value":"sha256-gnkzj8DwujHnit2MwKgV6YdKLWzKFbNT467LEBsdMTs="},{"Name":"label","Value":"app.css.gz"}]},{"Route":"app.css","AssetFile":"app.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000536480687"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1863"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"gnkzj8DwujHnit2MwKgV6YdKLWzKFbNT467LEBsdMTs=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:51:47 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-9BYQ1DEYdSZH7MBG7AQ28+OVGYKziE5nCfTTJOiedPU="},{"Name":"original-resource","Value":"\"9BYQ1DEYdSZH7MBG7AQ28+OVGYKziE5nCfTTJOiedPU=\""}]},{"Route":"app.css","AssetFile":"app.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"6554"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"9BYQ1DEYdSZH7MBG7AQ28+OVGYKziE5nCfTTJOiedPU=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:50:05 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-9BYQ1DEYdSZH7MBG7AQ28+OVGYKziE5nCfTTJOiedPU="}]},{"Route":"app.css.gz","AssetFile":"app.css.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1863"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"gnkzj8DwujHnit2MwKgV6YdKLWzKFbNT467LEBsdMTs=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:51:47 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-gnkzj8DwujHnit2MwKgV6YdKLWzKFbNT467LEBsdMTs="}]},{"Route":"favicon.ifv42okdf2.png","AssetFile":"favicon.png","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"1148"},{"Name":"Content-Type","Value":"image/png"},{"Name":"ETag","Value":"\"4mWsDy3aHl36ZbGt8zByK7Pvd4kRUoNgTYzRnwmPHwg=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:34:31 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ifv42okdf2"},{"Name":"integrity","Value":"sha256-4mWsDy3aHl36ZbGt8zByK7Pvd4kRUoNgTYzRnwmPHwg="},{"Name":"label","Value":"favicon.png"}]},{"Route":"favicon.png","AssetFile":"favicon.png","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=3600, must-revalidate"},{"Name":"Content-Length","Value":"1148"},{"Name":"Content-Type","Value":"image/png"},{"Name":"ETag","Value":"\"4mWsDy3aHl36ZbGt8zByK7Pvd4kRUoNgTYzRnwmPHwg=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:34:31 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-4mWsDy3aHl36ZbGt8zByK7Pvd4kRUoNgTYzRnwmPHwg="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.bqjiyaj88i.css","AssetFile":"lib/bootstrap/dist/css/bootstrap-grid.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000148235992"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"6745"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"jhvPrvWZn8BbeR49W+r+MLNcnTeFyaSXxry9n1ctwy4=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"bqjiyaj88i"},{"Name":"integrity","Value":"sha256-Yy5/hBqRmmU2MJ1TKwP2aXoTO6+OjzrLmJIsC2Wy4H8="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-grid.css"},{"Name":"original-resource","Value":"\"Yy5/hBqRmmU2MJ1TKwP2aXoTO6+OjzrLmJIsC2Wy4H8=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.bqjiyaj88i.css","AssetFile":"lib/bootstrap/dist/css/bootstrap-grid.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"70329"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"Yy5/hBqRmmU2MJ1TKwP2aXoTO6+OjzrLmJIsC2Wy4H8=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:34:31 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"bqjiyaj88i"},{"Name":"integrity","Value":"sha256-Yy5/hBqRmmU2MJ1TKwP2aXoTO6+OjzrLmJIsC2Wy4H8="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-grid.css"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.bqjiyaj88i.css.gz","AssetFile":"lib/bootstrap/dist/css/bootstrap-grid.css.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"6745"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"jhvPrvWZn8BbeR49W+r+MLNcnTeFyaSXxry9n1ctwy4=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"bqjiyaj88i"},{"Name":"integrity","Value":"sha256-jhvPrvWZn8BbeR49W+r+MLNcnTeFyaSXxry9n1ctwy4="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-grid.css.gz"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.css","AssetFile":"lib/bootstrap/dist/css/bootstrap-grid.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000148235992"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"6745"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"jhvPrvWZn8BbeR49W+r+MLNcnTeFyaSXxry9n1ctwy4=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Yy5/hBqRmmU2MJ1TKwP2aXoTO6+OjzrLmJIsC2Wy4H8="},{"Name":"original-resource","Value":"\"Yy5/hBqRmmU2MJ1TKwP2aXoTO6+OjzrLmJIsC2Wy4H8=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.css","AssetFile":"lib/bootstrap/dist/css/bootstrap-grid.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"70329"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"Yy5/hBqRmmU2MJ1TKwP2aXoTO6+OjzrLmJIsC2Wy4H8=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:34:31 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Yy5/hBqRmmU2MJ1TKwP2aXoTO6+OjzrLmJIsC2Wy4H8="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.css.c2jlpeoesf.map","AssetFile":"lib/bootstrap/dist/css/bootstrap-grid.css.map.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000030492453"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"32794"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"ALPf6qsZMu+Ui8l8jPJJF3MhTcq6uwrQhRWeWJL4ixU=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"c2jlpeoesf"},{"Name":"integrity","Value":"sha256-xAT+n25FE5hvOjj2fG4YdOwr1bl4IlAJBNg6PbhLT2E="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-grid.css.map"},{"Name":"original-resource","Value":"\"xAT+n25FE5hvOjj2fG4YdOwr1bl4IlAJBNg6PbhLT2E=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.css.c2jlpeoesf.map","AssetFile":"lib/bootstrap/dist/css/bootstrap-grid.css.map","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"203221"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"xAT+n25FE5hvOjj2fG4YdOwr1bl4IlAJBNg6PbhLT2E=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:34:31 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"c2jlpeoesf"},{"Name":"integrity","Value":"sha256-xAT+n25FE5hvOjj2fG4YdOwr1bl4IlAJBNg6PbhLT2E="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-grid.css.map"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.css.c2jlpeoesf.map.gz","AssetFile":"lib/bootstrap/dist/css/bootstrap-grid.css.map.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"32794"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"ALPf6qsZMu+Ui8l8jPJJF3MhTcq6uwrQhRWeWJL4ixU=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"c2jlpeoesf"},{"Name":"integrity","Value":"sha256-ALPf6qsZMu+Ui8l8jPJJF3MhTcq6uwrQhRWeWJL4ixU="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-grid.css.map.gz"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.css.gz","AssetFile":"lib/bootstrap/dist/css/bootstrap-grid.css.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"6745"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"jhvPrvWZn8BbeR49W+r+MLNcnTeFyaSXxry9n1ctwy4=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-jhvPrvWZn8BbeR49W+r+MLNcnTeFyaSXxry9n1ctwy4="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.css.map","AssetFile":"lib/bootstrap/dist/css/bootstrap-grid.css.map.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000030492453"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"32794"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"ALPf6qsZMu+Ui8l8jPJJF3MhTcq6uwrQhRWeWJL4ixU=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-xAT+n25FE5hvOjj2fG4YdOwr1bl4IlAJBNg6PbhLT2E="},{"Name":"original-resource","Value":"\"xAT+n25FE5hvOjj2fG4YdOwr1bl4IlAJBNg6PbhLT2E=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.css.map","AssetFile":"lib/bootstrap/dist/css/bootstrap-grid.css.map","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"203221"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"xAT+n25FE5hvOjj2fG4YdOwr1bl4IlAJBNg6PbhLT2E=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:34:31 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-xAT+n25FE5hvOjj2fG4YdOwr1bl4IlAJBNg6PbhLT2E="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.css.map.gz","AssetFile":"lib/bootstrap/dist/css/bootstrap-grid.css.map.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"32794"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"ALPf6qsZMu+Ui8l8jPJJF3MhTcq6uwrQhRWeWJL4ixU=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-ALPf6qsZMu+Ui8l8jPJJF3MhTcq6uwrQhRWeWJL4ixU="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.min.css","AssetFile":"lib/bootstrap/dist/css/bootstrap-grid.min.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000167504188"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"5969"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"y2vSlIdcL+ImKFhcBMT5ujdAP1cyOZlHZK434Aiu0KA=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-5nDHMGiyfZHl3UXePuhLDQR9ncPfBR1HJeZLXyJNV24="},{"Name":"original-resource","Value":"\"5nDHMGiyfZHl3UXePuhLDQR9ncPfBR1HJeZLXyJNV24=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.min.css","AssetFile":"lib/bootstrap/dist/css/bootstrap-grid.min.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"51795"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"5nDHMGiyfZHl3UXePuhLDQR9ncPfBR1HJeZLXyJNV24=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:34:31 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-5nDHMGiyfZHl3UXePuhLDQR9ncPfBR1HJeZLXyJNV24="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.min.css.aexeepp0ev.map","AssetFile":"lib/bootstrap/dist/css/bootstrap-grid.min.css.map.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000072343196"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"13822"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"UTpk2w6Qfw+RUZtUsUuWDVrQXTEdgzIWiLHb7gDcZZc=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"aexeepp0ev"},{"Name":"integrity","Value":"sha256-kgL+xwVmM8IOs15lnoHt9daR2LRMiBG/cYgUPcKQOY4="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-grid.min.css.map"},{"Name":"original-resource","Value":"\"kgL+xwVmM8IOs15lnoHt9daR2LRMiBG/cYgUPcKQOY4=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.min.css.aexeepp0ev.map","AssetFile":"lib/bootstrap/dist/css/bootstrap-grid.min.css.map","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"115986"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"kgL+xwVmM8IOs15lnoHt9daR2LRMiBG/cYgUPcKQOY4=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:34:31 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"aexeepp0ev"},{"Name":"integrity","Value":"sha256-kgL+xwVmM8IOs15lnoHt9daR2LRMiBG/cYgUPcKQOY4="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-grid.min.css.map"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.min.css.aexeepp0ev.map.gz","AssetFile":"lib/bootstrap/dist/css/bootstrap-grid.min.css.map.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"13822"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"UTpk2w6Qfw+RUZtUsUuWDVrQXTEdgzIWiLHb7gDcZZc=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"aexeepp0ev"},{"Name":"integrity","Value":"sha256-UTpk2w6Qfw+RUZtUsUuWDVrQXTEdgzIWiLHb7gDcZZc="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-grid.min.css.map.gz"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.min.css.gz","AssetFile":"lib/bootstrap/dist/css/bootstrap-grid.min.css.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"5969"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"y2vSlIdcL+ImKFhcBMT5ujdAP1cyOZlHZK434Aiu0KA=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-y2vSlIdcL+ImKFhcBMT5ujdAP1cyOZlHZK434Aiu0KA="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.min.css.map","AssetFile":"lib/bootstrap/dist/css/bootstrap-grid.min.css.map.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000072343196"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"13822"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"UTpk2w6Qfw+RUZtUsUuWDVrQXTEdgzIWiLHb7gDcZZc=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-kgL+xwVmM8IOs15lnoHt9daR2LRMiBG/cYgUPcKQOY4="},{"Name":"original-resource","Value":"\"kgL+xwVmM8IOs15lnoHt9daR2LRMiBG/cYgUPcKQOY4=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.min.css.map","AssetFile":"lib/bootstrap/dist/css/bootstrap-grid.min.css.map","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"115986"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"kgL+xwVmM8IOs15lnoHt9daR2LRMiBG/cYgUPcKQOY4=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:34:31 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-kgL+xwVmM8IOs15lnoHt9daR2LRMiBG/cYgUPcKQOY4="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.min.css.map.gz","AssetFile":"lib/bootstrap/dist/css/bootstrap-grid.min.css.map.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"13822"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"UTpk2w6Qfw+RUZtUsUuWDVrQXTEdgzIWiLHb7gDcZZc=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-UTpk2w6Qfw+RUZtUsUuWDVrQXTEdgzIWiLHb7gDcZZc="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.min.erw9l3u2r3.css","AssetFile":"lib/bootstrap/dist/css/bootstrap-grid.min.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000167504188"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"5969"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"y2vSlIdcL+ImKFhcBMT5ujdAP1cyOZlHZK434Aiu0KA=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"erw9l3u2r3"},{"Name":"integrity","Value":"sha256-5nDHMGiyfZHl3UXePuhLDQR9ncPfBR1HJeZLXyJNV24="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-grid.min.css"},{"Name":"original-resource","Value":"\"5nDHMGiyfZHl3UXePuhLDQR9ncPfBR1HJeZLXyJNV24=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.min.erw9l3u2r3.css","AssetFile":"lib/bootstrap/dist/css/bootstrap-grid.min.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"51795"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"5nDHMGiyfZHl3UXePuhLDQR9ncPfBR1HJeZLXyJNV24=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:34:31 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"erw9l3u2r3"},{"Name":"integrity","Value":"sha256-5nDHMGiyfZHl3UXePuhLDQR9ncPfBR1HJeZLXyJNV24="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-grid.min.css"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.min.erw9l3u2r3.css.gz","AssetFile":"lib/bootstrap/dist/css/bootstrap-grid.min.css.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"5969"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"y2vSlIdcL+ImKFhcBMT5ujdAP1cyOZlHZK434Aiu0KA=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"erw9l3u2r3"},{"Name":"integrity","Value":"sha256-y2vSlIdcL+ImKFhcBMT5ujdAP1cyOZlHZK434Aiu0KA="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-grid.min.css.gz"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.rtl.css","AssetFile":"lib/bootstrap/dist/css/bootstrap-grid.rtl.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000148148148"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"6749"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"P5V7Xl3ceCLw6wDeOyAezE6gOa9re3B7gTUN/H/cDsY=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-CZxoF8zjaLlyVkcvVCDlc8CeQR1w1RMrvgYx30cs8kM="},{"Name":"original-resource","Value":"\"CZxoF8zjaLlyVkcvVCDlc8CeQR1w1RMrvgYx30cs8kM=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.rtl.css","AssetFile":"lib/bootstrap/dist/css/bootstrap-grid.rtl.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"70403"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"CZxoF8zjaLlyVkcvVCDlc8CeQR1w1RMrvgYx30cs8kM=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:34:31 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-CZxoF8zjaLlyVkcvVCDlc8CeQR1w1RMrvgYx30cs8kM="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.rtl.css.ausgxo2sd3.map","AssetFile":"lib/bootstrap/dist/css/bootstrap-grid.rtl.css.map.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000030493383"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"32793"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"cWfRgogdfOCr54Ae/lxY515FP4TJyUwc4Ae6uejBPI0=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ausgxo2sd3"},{"Name":"integrity","Value":"sha256-/siQUA8yX830j+cL4amKHY3yBtn3n8z3Eg+VZ15f90k="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-grid.rtl.css.map"},{"Name":"original-resource","Value":"\"/siQUA8yX830j+cL4amKHY3yBtn3n8z3Eg+VZ15f90k=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.rtl.css.ausgxo2sd3.map","AssetFile":"lib/bootstrap/dist/css/bootstrap-grid.rtl.css.map","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"203225"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"/siQUA8yX830j+cL4amKHY3yBtn3n8z3Eg+VZ15f90k=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:34:31 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ausgxo2sd3"},{"Name":"integrity","Value":"sha256-/siQUA8yX830j+cL4amKHY3yBtn3n8z3Eg+VZ15f90k="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-grid.rtl.css.map"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.rtl.css.ausgxo2sd3.map.gz","AssetFile":"lib/bootstrap/dist/css/bootstrap-grid.rtl.css.map.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"32793"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"cWfRgogdfOCr54Ae/lxY515FP4TJyUwc4Ae6uejBPI0=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ausgxo2sd3"},{"Name":"integrity","Value":"sha256-cWfRgogdfOCr54Ae/lxY515FP4TJyUwc4Ae6uejBPI0="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-grid.rtl.css.map.gz"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.rtl.css.gz","AssetFile":"lib/bootstrap/dist/css/bootstrap-grid.rtl.css.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"6749"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"P5V7Xl3ceCLw6wDeOyAezE6gOa9re3B7gTUN/H/cDsY=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-P5V7Xl3ceCLw6wDeOyAezE6gOa9re3B7gTUN/H/cDsY="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.rtl.css.map","AssetFile":"lib/bootstrap/dist/css/bootstrap-grid.rtl.css.map.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000030493383"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"32793"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"cWfRgogdfOCr54Ae/lxY515FP4TJyUwc4Ae6uejBPI0=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-/siQUA8yX830j+cL4amKHY3yBtn3n8z3Eg+VZ15f90k="},{"Name":"original-resource","Value":"\"/siQUA8yX830j+cL4amKHY3yBtn3n8z3Eg+VZ15f90k=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.rtl.css.map","AssetFile":"lib/bootstrap/dist/css/bootstrap-grid.rtl.css.map","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"203225"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"/siQUA8yX830j+cL4amKHY3yBtn3n8z3Eg+VZ15f90k=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:34:31 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-/siQUA8yX830j+cL4amKHY3yBtn3n8z3Eg+VZ15f90k="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.rtl.css.map.gz","AssetFile":"lib/bootstrap/dist/css/bootstrap-grid.rtl.css.map.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"32793"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"cWfRgogdfOCr54Ae/lxY515FP4TJyUwc4Ae6uejBPI0=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-cWfRgogdfOCr54Ae/lxY515FP4TJyUwc4Ae6uejBPI0="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.rtl.d7shbmvgxk.css","AssetFile":"lib/bootstrap/dist/css/bootstrap-grid.rtl.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000148148148"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"6749"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"P5V7Xl3ceCLw6wDeOyAezE6gOa9re3B7gTUN/H/cDsY=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"d7shbmvgxk"},{"Name":"integrity","Value":"sha256-CZxoF8zjaLlyVkcvVCDlc8CeQR1w1RMrvgYx30cs8kM="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-grid.rtl.css"},{"Name":"original-resource","Value":"\"CZxoF8zjaLlyVkcvVCDlc8CeQR1w1RMrvgYx30cs8kM=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.rtl.d7shbmvgxk.css","AssetFile":"lib/bootstrap/dist/css/bootstrap-grid.rtl.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"70403"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"CZxoF8zjaLlyVkcvVCDlc8CeQR1w1RMrvgYx30cs8kM=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:34:31 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"d7shbmvgxk"},{"Name":"integrity","Value":"sha256-CZxoF8zjaLlyVkcvVCDlc8CeQR1w1RMrvgYx30cs8kM="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-grid.rtl.css"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.rtl.d7shbmvgxk.css.gz","AssetFile":"lib/bootstrap/dist/css/bootstrap-grid.rtl.css.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"6749"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"P5V7Xl3ceCLw6wDeOyAezE6gOa9re3B7gTUN/H/cDsY=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"d7shbmvgxk"},{"Name":"integrity","Value":"sha256-P5V7Xl3ceCLw6wDeOyAezE6gOa9re3B7gTUN/H/cDsY="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-grid.rtl.css.gz"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css","AssetFile":"lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000167448091"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"5971"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"ujhFfu7SIw4cL8FWI0ezmD29C7bGSesJvlEcySm5beY=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-vMxTcvkC4Ly7LiAT3G8yEy9EpTr7Fge4SczWp07/p3k="},{"Name":"original-resource","Value":"\"vMxTcvkC4Ly7LiAT3G8yEy9EpTr7Fge4SczWp07/p3k=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css","AssetFile":"lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"51870"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"vMxTcvkC4Ly7LiAT3G8yEy9EpTr7Fge4SczWp07/p3k=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:34:31 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-vMxTcvkC4Ly7LiAT3G8yEy9EpTr7Fge4SczWp07/p3k="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.cosvhxvwiu.map","AssetFile":"lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.map.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000072306580"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"13829"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"yZDV5sXfkOihH9inqXh6D0ZmlFp3/eRZrXuPmmaGXhA=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"cosvhxvwiu"},{"Name":"integrity","Value":"sha256-7GdOlw7U/wgyaeUtFmxPz5/MphdvVSPtVOOlTn9c33Q="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.map"},{"Name":"original-resource","Value":"\"7GdOlw7U/wgyaeUtFmxPz5/MphdvVSPtVOOlTn9c33Q=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.cosvhxvwiu.map","AssetFile":"lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.map","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"116063"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"7GdOlw7U/wgyaeUtFmxPz5/MphdvVSPtVOOlTn9c33Q=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:34:31 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"cosvhxvwiu"},{"Name":"integrity","Value":"sha256-7GdOlw7U/wgyaeUtFmxPz5/MphdvVSPtVOOlTn9c33Q="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.map"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.cosvhxvwiu.map.gz","AssetFile":"lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.map.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"13829"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"yZDV5sXfkOihH9inqXh6D0ZmlFp3/eRZrXuPmmaGXhA=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"cosvhxvwiu"},{"Name":"integrity","Value":"sha256-yZDV5sXfkOihH9inqXh6D0ZmlFp3/eRZrXuPmmaGXhA="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.map.gz"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.gz","AssetFile":"lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"5971"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"ujhFfu7SIw4cL8FWI0ezmD29C7bGSesJvlEcySm5beY=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-ujhFfu7SIw4cL8FWI0ezmD29C7bGSesJvlEcySm5beY="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.map","AssetFile":"lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.map.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000072306580"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"13829"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"yZDV5sXfkOihH9inqXh6D0ZmlFp3/eRZrXuPmmaGXhA=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-7GdOlw7U/wgyaeUtFmxPz5/MphdvVSPtVOOlTn9c33Q="},{"Name":"original-resource","Value":"\"7GdOlw7U/wgyaeUtFmxPz5/MphdvVSPtVOOlTn9c33Q=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.map","AssetFile":"lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.map","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"116063"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"7GdOlw7U/wgyaeUtFmxPz5/MphdvVSPtVOOlTn9c33Q=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:34:31 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-7GdOlw7U/wgyaeUtFmxPz5/MphdvVSPtVOOlTn9c33Q="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.map.gz","AssetFile":"lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.map.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"13829"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"yZDV5sXfkOihH9inqXh6D0ZmlFp3/eRZrXuPmmaGXhA=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-yZDV5sXfkOihH9inqXh6D0ZmlFp3/eRZrXuPmmaGXhA="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.rtl.min.k8d9w2qqmf.css","AssetFile":"lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000167448091"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"5971"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"ujhFfu7SIw4cL8FWI0ezmD29C7bGSesJvlEcySm5beY=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"k8d9w2qqmf"},{"Name":"integrity","Value":"sha256-vMxTcvkC4Ly7LiAT3G8yEy9EpTr7Fge4SczWp07/p3k="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css"},{"Name":"original-resource","Value":"\"vMxTcvkC4Ly7LiAT3G8yEy9EpTr7Fge4SczWp07/p3k=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.rtl.min.k8d9w2qqmf.css","AssetFile":"lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"51870"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"vMxTcvkC4Ly7LiAT3G8yEy9EpTr7Fge4SczWp07/p3k=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:34:31 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"k8d9w2qqmf"},{"Name":"integrity","Value":"sha256-vMxTcvkC4Ly7LiAT3G8yEy9EpTr7Fge4SczWp07/p3k="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.rtl.min.k8d9w2qqmf.css.gz","AssetFile":"lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"5971"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"ujhFfu7SIw4cL8FWI0ezmD29C7bGSesJvlEcySm5beY=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"k8d9w2qqmf"},{"Name":"integrity","Value":"sha256-ujhFfu7SIw4cL8FWI0ezmD29C7bGSesJvlEcySm5beY="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.gz"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.css","AssetFile":"lib/bootstrap/dist/css/bootstrap-reboot.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000295770482"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"3380"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"+EIaQ03ZHgfVopnrJFjz7ZgQSAO9GeMOK+bzccTIQyE=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-lo9YI82OF03vojdu+XOR3+DRrLIpMhpzZNmHbM5CDMA="},{"Name":"original-resource","Value":"\"lo9YI82OF03vojdu+XOR3+DRrLIpMhpzZNmHbM5CDMA=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.css","AssetFile":"lib/bootstrap/dist/css/bootstrap-reboot.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"12065"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"lo9YI82OF03vojdu+XOR3+DRrLIpMhpzZNmHbM5CDMA=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:34:31 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-lo9YI82OF03vojdu+XOR3+DRrLIpMhpzZNmHbM5CDMA="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.css.fvhpjtyr6v.map","AssetFile":"lib/bootstrap/dist/css/bootstrap-reboot.css.map.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000038725167"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"25822"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"uuPRBE+KJ7rhQC/ul/m33YS7RxoQPGY3ZcuTz6+ooTc=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"fvhpjtyr6v"},{"Name":"integrity","Value":"sha256-RXJ/QZiBfHXoPtXR2EgC+bFo2pe3GtbZO722RtiLGzQ="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-reboot.css.map"},{"Name":"original-resource","Value":"\"RXJ/QZiBfHXoPtXR2EgC+bFo2pe3GtbZO722RtiLGzQ=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.css.fvhpjtyr6v.map","AssetFile":"lib/bootstrap/dist/css/bootstrap-reboot.css.map","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"129371"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"RXJ/QZiBfHXoPtXR2EgC+bFo2pe3GtbZO722RtiLGzQ=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:34:31 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"fvhpjtyr6v"},{"Name":"integrity","Value":"sha256-RXJ/QZiBfHXoPtXR2EgC+bFo2pe3GtbZO722RtiLGzQ="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-reboot.css.map"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.css.fvhpjtyr6v.map.gz","AssetFile":"lib/bootstrap/dist/css/bootstrap-reboot.css.map.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"25822"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"uuPRBE+KJ7rhQC/ul/m33YS7RxoQPGY3ZcuTz6+ooTc=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"fvhpjtyr6v"},{"Name":"integrity","Value":"sha256-uuPRBE+KJ7rhQC/ul/m33YS7RxoQPGY3ZcuTz6+ooTc="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-reboot.css.map.gz"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.css.gz","AssetFile":"lib/bootstrap/dist/css/bootstrap-reboot.css.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"3380"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"+EIaQ03ZHgfVopnrJFjz7ZgQSAO9GeMOK+bzccTIQyE=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-+EIaQ03ZHgfVopnrJFjz7ZgQSAO9GeMOK+bzccTIQyE="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.css.map","AssetFile":"lib/bootstrap/dist/css/bootstrap-reboot.css.map.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000038725167"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"25822"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"uuPRBE+KJ7rhQC/ul/m33YS7RxoQPGY3ZcuTz6+ooTc=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-RXJ/QZiBfHXoPtXR2EgC+bFo2pe3GtbZO722RtiLGzQ="},{"Name":"original-resource","Value":"\"RXJ/QZiBfHXoPtXR2EgC+bFo2pe3GtbZO722RtiLGzQ=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.css.map","AssetFile":"lib/bootstrap/dist/css/bootstrap-reboot.css.map","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"129371"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"RXJ/QZiBfHXoPtXR2EgC+bFo2pe3GtbZO722RtiLGzQ=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:34:31 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-RXJ/QZiBfHXoPtXR2EgC+bFo2pe3GtbZO722RtiLGzQ="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.css.map.gz","AssetFile":"lib/bootstrap/dist/css/bootstrap-reboot.css.map.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"25822"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"uuPRBE+KJ7rhQC/ul/m33YS7RxoQPGY3ZcuTz6+ooTc=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-uuPRBE+KJ7rhQC/ul/m33YS7RxoQPGY3ZcuTz6+ooTc="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.min.b7pk76d08c.css","AssetFile":"lib/bootstrap/dist/css/bootstrap-reboot.min.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000311138768"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"3213"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"Z9B/f6Ax/2JeBbNo3F1oaFvmOzRvs3yS0nnykt272Wc=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"b7pk76d08c"},{"Name":"integrity","Value":"sha256-l8vt5oozv958eMd9TFsPAWgl9JJK9YKfbVSs8mchQ84="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-reboot.min.css"},{"Name":"original-resource","Value":"\"l8vt5oozv958eMd9TFsPAWgl9JJK9YKfbVSs8mchQ84=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.min.b7pk76d08c.css","AssetFile":"lib/bootstrap/dist/css/bootstrap-reboot.min.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"10126"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"l8vt5oozv958eMd9TFsPAWgl9JJK9YKfbVSs8mchQ84=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:34:31 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"b7pk76d08c"},{"Name":"integrity","Value":"sha256-l8vt5oozv958eMd9TFsPAWgl9JJK9YKfbVSs8mchQ84="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-reboot.min.css"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.min.b7pk76d08c.css.gz","AssetFile":"lib/bootstrap/dist/css/bootstrap-reboot.min.css.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"3213"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"Z9B/f6Ax/2JeBbNo3F1oaFvmOzRvs3yS0nnykt272Wc=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"b7pk76d08c"},{"Name":"integrity","Value":"sha256-Z9B/f6Ax/2JeBbNo3F1oaFvmOzRvs3yS0nnykt272Wc="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-reboot.min.css.gz"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.min.css","AssetFile":"lib/bootstrap/dist/css/bootstrap-reboot.min.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000311138768"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"3213"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"Z9B/f6Ax/2JeBbNo3F1oaFvmOzRvs3yS0nnykt272Wc=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-l8vt5oozv958eMd9TFsPAWgl9JJK9YKfbVSs8mchQ84="},{"Name":"original-resource","Value":"\"l8vt5oozv958eMd9TFsPAWgl9JJK9YKfbVSs8mchQ84=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.min.css","AssetFile":"lib/bootstrap/dist/css/bootstrap-reboot.min.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"10126"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"l8vt5oozv958eMd9TFsPAWgl9JJK9YKfbVSs8mchQ84=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:34:31 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-l8vt5oozv958eMd9TFsPAWgl9JJK9YKfbVSs8mchQ84="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.min.css.fsbi9cje9m.map","AssetFile":"lib/bootstrap/dist/css/bootstrap-reboot.min.css.map.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000079447049"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"12586"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"88yfwCB1JJrw5DzTwttuDUNRg1MC/QUUovOQTnyxGHA=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"fsbi9cje9m"},{"Name":"integrity","Value":"sha256-0eqVT62kqRLJh9oTqLeIH4UnQskqVjib8hl2fXxl4lg="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-reboot.min.css.map"},{"Name":"original-resource","Value":"\"0eqVT62kqRLJh9oTqLeIH4UnQskqVjib8hl2fXxl4lg=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.min.css.fsbi9cje9m.map","AssetFile":"lib/bootstrap/dist/css/bootstrap-reboot.min.css.map","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"51369"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"0eqVT62kqRLJh9oTqLeIH4UnQskqVjib8hl2fXxl4lg=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:34:31 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"fsbi9cje9m"},{"Name":"integrity","Value":"sha256-0eqVT62kqRLJh9oTqLeIH4UnQskqVjib8hl2fXxl4lg="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-reboot.min.css.map"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.min.css.fsbi9cje9m.map.gz","AssetFile":"lib/bootstrap/dist/css/bootstrap-reboot.min.css.map.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"12586"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"88yfwCB1JJrw5DzTwttuDUNRg1MC/QUUovOQTnyxGHA=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"fsbi9cje9m"},{"Name":"integrity","Value":"sha256-88yfwCB1JJrw5DzTwttuDUNRg1MC/QUUovOQTnyxGHA="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-reboot.min.css.map.gz"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.min.css.gz","AssetFile":"lib/bootstrap/dist/css/bootstrap-reboot.min.css.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"3213"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"Z9B/f6Ax/2JeBbNo3F1oaFvmOzRvs3yS0nnykt272Wc=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Z9B/f6Ax/2JeBbNo3F1oaFvmOzRvs3yS0nnykt272Wc="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.min.css.map","AssetFile":"lib/bootstrap/dist/css/bootstrap-reboot.min.css.map.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000079447049"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"12586"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"88yfwCB1JJrw5DzTwttuDUNRg1MC/QUUovOQTnyxGHA=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-0eqVT62kqRLJh9oTqLeIH4UnQskqVjib8hl2fXxl4lg="},{"Name":"original-resource","Value":"\"0eqVT62kqRLJh9oTqLeIH4UnQskqVjib8hl2fXxl4lg=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.min.css.map","AssetFile":"lib/bootstrap/dist/css/bootstrap-reboot.min.css.map","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"51369"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"0eqVT62kqRLJh9oTqLeIH4UnQskqVjib8hl2fXxl4lg=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:34:31 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-0eqVT62kqRLJh9oTqLeIH4UnQskqVjib8hl2fXxl4lg="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.min.css.map.gz","AssetFile":"lib/bootstrap/dist/css/bootstrap-reboot.min.css.map.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"12586"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"88yfwCB1JJrw5DzTwttuDUNRg1MC/QUUovOQTnyxGHA=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-88yfwCB1JJrw5DzTwttuDUNRg1MC/QUUovOQTnyxGHA="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.css","AssetFile":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000296912114"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"3367"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"bhwmNaLC/7dOUfZxpXsnreiNsp2lbllRXrZLXndYFgA=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-V8psnHoJS/MPlCXWwc/J3tGtp9c3gGFRmqsIQgpn+Gg="},{"Name":"original-resource","Value":"\"V8psnHoJS/MPlCXWwc/J3tGtp9c3gGFRmqsIQgpn+Gg=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.css","AssetFile":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"12058"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"V8psnHoJS/MPlCXWwc/J3tGtp9c3gGFRmqsIQgpn+Gg=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:34:31 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-V8psnHoJS/MPlCXWwc/J3tGtp9c3gGFRmqsIQgpn+Gg="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.ee0r1s7dh0.map","AssetFile":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.map.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000038708678"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"25833"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"sl2J4PyaPSvjqR/Hna2zAWkp1RoiFiSsNBf28UxmegA=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ee0r1s7dh0"},{"Name":"integrity","Value":"sha256-OoQVwh7Arp7bVoK2ZiTx2S//KrnPrSPzPZ93CqCMhe8="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.map"},{"Name":"original-resource","Value":"\"OoQVwh7Arp7bVoK2ZiTx2S//KrnPrSPzPZ93CqCMhe8=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.ee0r1s7dh0.map","AssetFile":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.map","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"129386"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"OoQVwh7Arp7bVoK2ZiTx2S//KrnPrSPzPZ93CqCMhe8=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:34:31 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ee0r1s7dh0"},{"Name":"integrity","Value":"sha256-OoQVwh7Arp7bVoK2ZiTx2S//KrnPrSPzPZ93CqCMhe8="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.map"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.ee0r1s7dh0.map.gz","AssetFile":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.map.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"25833"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"sl2J4PyaPSvjqR/Hna2zAWkp1RoiFiSsNBf28UxmegA=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ee0r1s7dh0"},{"Name":"integrity","Value":"sha256-sl2J4PyaPSvjqR/Hna2zAWkp1RoiFiSsNBf28UxmegA="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.map.gz"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.gz","AssetFile":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"3367"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"bhwmNaLC/7dOUfZxpXsnreiNsp2lbllRXrZLXndYFgA=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-bhwmNaLC/7dOUfZxpXsnreiNsp2lbllRXrZLXndYFgA="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.map","AssetFile":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.map.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000038708678"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"25833"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"sl2J4PyaPSvjqR/Hna2zAWkp1RoiFiSsNBf28UxmegA=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-OoQVwh7Arp7bVoK2ZiTx2S//KrnPrSPzPZ93CqCMhe8="},{"Name":"original-resource","Value":"\"OoQVwh7Arp7bVoK2ZiTx2S//KrnPrSPzPZ93CqCMhe8=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.map","AssetFile":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.map","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"129386"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"OoQVwh7Arp7bVoK2ZiTx2S//KrnPrSPzPZ93CqCMhe8=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:34:31 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-OoQVwh7Arp7bVoK2ZiTx2S//KrnPrSPzPZ93CqCMhe8="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.map.gz","AssetFile":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.map.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"25833"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"sl2J4PyaPSvjqR/Hna2zAWkp1RoiFiSsNBf28UxmegA=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-sl2J4PyaPSvjqR/Hna2zAWkp1RoiFiSsNBf28UxmegA="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css","AssetFile":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000307976594"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"3246"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"qNJnRAEMymFdtmi8gvc2VbVtDDk/UjeSnp+VQ10+cl0=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-/8jh8hcEMFKyS6goWqnNu7t3EzZPCGdQZgO6sCkI8tI="},{"Name":"original-resource","Value":"\"/8jh8hcEMFKyS6goWqnNu7t3EzZPCGdQZgO6sCkI8tI=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css","AssetFile":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"10198"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"/8jh8hcEMFKyS6goWqnNu7t3EzZPCGdQZgO6sCkI8tI=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:34:31 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-/8jh8hcEMFKyS6goWqnNu7t3EzZPCGdQZgO6sCkI8tI="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.gz","AssetFile":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"3246"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"qNJnRAEMymFdtmi8gvc2VbVtDDk/UjeSnp+VQ10+cl0=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-qNJnRAEMymFdtmi8gvc2VbVtDDk/UjeSnp+VQ10+cl0="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.jd9uben2k1.map","AssetFile":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.map.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000066242713"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"15095"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"M4FJKHpyw4IJV5nzbfV0Vwvv60A8wkjnquz6IK029pA=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"jd9uben2k1"},{"Name":"integrity","Value":"sha256-910zw+rMdcg0Ls48ATp65vEn8rd5HvPxOKm2x3/CBII="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.map"},{"Name":"original-resource","Value":"\"910zw+rMdcg0Ls48ATp65vEn8rd5HvPxOKm2x3/CBII=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.jd9uben2k1.map","AssetFile":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.map","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"63943"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"910zw+rMdcg0Ls48ATp65vEn8rd5HvPxOKm2x3/CBII=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:34:31 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"jd9uben2k1"},{"Name":"integrity","Value":"sha256-910zw+rMdcg0Ls48ATp65vEn8rd5HvPxOKm2x3/CBII="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.map"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.jd9uben2k1.map.gz","AssetFile":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.map.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"15095"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"M4FJKHpyw4IJV5nzbfV0Vwvv60A8wkjnquz6IK029pA=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"jd9uben2k1"},{"Name":"integrity","Value":"sha256-M4FJKHpyw4IJV5nzbfV0Vwvv60A8wkjnquz6IK029pA="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.map.gz"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.map","AssetFile":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.map.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000066242713"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"15095"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"M4FJKHpyw4IJV5nzbfV0Vwvv60A8wkjnquz6IK029pA=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-910zw+rMdcg0Ls48ATp65vEn8rd5HvPxOKm2x3/CBII="},{"Name":"original-resource","Value":"\"910zw+rMdcg0Ls48ATp65vEn8rd5HvPxOKm2x3/CBII=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.map","AssetFile":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.map","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"63943"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"910zw+rMdcg0Ls48ATp65vEn8rd5HvPxOKm2x3/CBII=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:34:31 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-910zw+rMdcg0Ls48ATp65vEn8rd5HvPxOKm2x3/CBII="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.map.gz","AssetFile":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.map.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"15095"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"M4FJKHpyw4IJV5nzbfV0Vwvv60A8wkjnquz6IK029pA=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-M4FJKHpyw4IJV5nzbfV0Vwvv60A8wkjnquz6IK029pA="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.dxx9fxp4il.css","AssetFile":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000307976594"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"3246"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"qNJnRAEMymFdtmi8gvc2VbVtDDk/UjeSnp+VQ10+cl0=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"dxx9fxp4il"},{"Name":"integrity","Value":"sha256-/8jh8hcEMFKyS6goWqnNu7t3EzZPCGdQZgO6sCkI8tI="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css"},{"Name":"original-resource","Value":"\"/8jh8hcEMFKyS6goWqnNu7t3EzZPCGdQZgO6sCkI8tI=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.dxx9fxp4il.css","AssetFile":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"10198"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"/8jh8hcEMFKyS6goWqnNu7t3EzZPCGdQZgO6sCkI8tI=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:34:31 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"dxx9fxp4il"},{"Name":"integrity","Value":"sha256-/8jh8hcEMFKyS6goWqnNu7t3EzZPCGdQZgO6sCkI8tI="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.dxx9fxp4il.css.gz","AssetFile":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"3246"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"qNJnRAEMymFdtmi8gvc2VbVtDDk/UjeSnp+VQ10+cl0=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"dxx9fxp4il"},{"Name":"integrity","Value":"sha256-qNJnRAEMymFdtmi8gvc2VbVtDDk/UjeSnp+VQ10+cl0="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.gz"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.rzd6atqjts.css","AssetFile":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000296912114"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"3367"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"bhwmNaLC/7dOUfZxpXsnreiNsp2lbllRXrZLXndYFgA=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"rzd6atqjts"},{"Name":"integrity","Value":"sha256-V8psnHoJS/MPlCXWwc/J3tGtp9c3gGFRmqsIQgpn+Gg="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.css"},{"Name":"original-resource","Value":"\"V8psnHoJS/MPlCXWwc/J3tGtp9c3gGFRmqsIQgpn+Gg=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.rzd6atqjts.css","AssetFile":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"12058"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"V8psnHoJS/MPlCXWwc/J3tGtp9c3gGFRmqsIQgpn+Gg=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:34:31 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"rzd6atqjts"},{"Name":"integrity","Value":"sha256-V8psnHoJS/MPlCXWwc/J3tGtp9c3gGFRmqsIQgpn+Gg="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.css"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.rzd6atqjts.css.gz","AssetFile":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"3367"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"bhwmNaLC/7dOUfZxpXsnreiNsp2lbllRXrZLXndYFgA=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"rzd6atqjts"},{"Name":"integrity","Value":"sha256-bhwmNaLC/7dOUfZxpXsnreiNsp2lbllRXrZLXndYFgA="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.gz"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.ub07r2b239.css","AssetFile":"lib/bootstrap/dist/css/bootstrap-reboot.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000295770482"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"3380"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"+EIaQ03ZHgfVopnrJFjz7ZgQSAO9GeMOK+bzccTIQyE=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ub07r2b239"},{"Name":"integrity","Value":"sha256-lo9YI82OF03vojdu+XOR3+DRrLIpMhpzZNmHbM5CDMA="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-reboot.css"},{"Name":"original-resource","Value":"\"lo9YI82OF03vojdu+XOR3+DRrLIpMhpzZNmHbM5CDMA=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.ub07r2b239.css","AssetFile":"lib/bootstrap/dist/css/bootstrap-reboot.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"12065"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"lo9YI82OF03vojdu+XOR3+DRrLIpMhpzZNmHbM5CDMA=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:34:31 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ub07r2b239"},{"Name":"integrity","Value":"sha256-lo9YI82OF03vojdu+XOR3+DRrLIpMhpzZNmHbM5CDMA="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-reboot.css"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.ub07r2b239.css.gz","AssetFile":"lib/bootstrap/dist/css/bootstrap-reboot.css.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"3380"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"+EIaQ03ZHgfVopnrJFjz7ZgQSAO9GeMOK+bzccTIQyE=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ub07r2b239"},{"Name":"integrity","Value":"sha256-+EIaQ03ZHgfVopnrJFjz7ZgQSAO9GeMOK+bzccTIQyE="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-reboot.css.gz"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.css","AssetFile":"lib/bootstrap/dist/css/bootstrap-utilities.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000083388926"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"11991"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"8+5oxr92QYcYeV3zAk8RS4XmZo6Y5i3ZmbiJXj9KVQo=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-2BubgNUPlQSF/0wLFcRXQ/Yjzk9vsUbDAeK2QM+h+yo="},{"Name":"original-resource","Value":"\"2BubgNUPlQSF/0wLFcRXQ/Yjzk9vsUbDAeK2QM+h+yo=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.css","AssetFile":"lib/bootstrap/dist/css/bootstrap-utilities.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"107823"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"2BubgNUPlQSF/0wLFcRXQ/Yjzk9vsUbDAeK2QM+h+yo=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:34:31 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-2BubgNUPlQSF/0wLFcRXQ/Yjzk9vsUbDAeK2QM+h+yo="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.css.gz","AssetFile":"lib/bootstrap/dist/css/bootstrap-utilities.css.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"11991"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"8+5oxr92QYcYeV3zAk8RS4XmZo6Y5i3ZmbiJXj9KVQo=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-8+5oxr92QYcYeV3zAk8RS4XmZo6Y5i3ZmbiJXj9KVQo="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.css.map","AssetFile":"lib/bootstrap/dist/css/bootstrap-utilities.css.map.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000022662890"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"44124"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"G+vjiEeP6kST5cIl0dMgkpqYVHtGzW2FoEEhPm8uXFQ=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Nfjrc4Ur9Fv2oBEswQWIyBnNDP99q+LhL+z9553O0cY="},{"Name":"original-resource","Value":"\"Nfjrc4Ur9Fv2oBEswQWIyBnNDP99q+LhL+z9553O0cY=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.css.map","AssetFile":"lib/bootstrap/dist/css/bootstrap-utilities.css.map","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"267535"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"Nfjrc4Ur9Fv2oBEswQWIyBnNDP99q+LhL+z9553O0cY=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:34:31 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Nfjrc4Ur9Fv2oBEswQWIyBnNDP99q+LhL+z9553O0cY="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.css.map.gz","AssetFile":"lib/bootstrap/dist/css/bootstrap-utilities.css.map.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"44124"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"G+vjiEeP6kST5cIl0dMgkpqYVHtGzW2FoEEhPm8uXFQ=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-G+vjiEeP6kST5cIl0dMgkpqYVHtGzW2FoEEhPm8uXFQ="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.css.r4e9w2rdcm.map","AssetFile":"lib/bootstrap/dist/css/bootstrap-utilities.css.map.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000022662890"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"44124"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"G+vjiEeP6kST5cIl0dMgkpqYVHtGzW2FoEEhPm8uXFQ=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"r4e9w2rdcm"},{"Name":"integrity","Value":"sha256-Nfjrc4Ur9Fv2oBEswQWIyBnNDP99q+LhL+z9553O0cY="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-utilities.css.map"},{"Name":"original-resource","Value":"\"Nfjrc4Ur9Fv2oBEswQWIyBnNDP99q+LhL+z9553O0cY=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.css.r4e9w2rdcm.map","AssetFile":"lib/bootstrap/dist/css/bootstrap-utilities.css.map","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"267535"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"Nfjrc4Ur9Fv2oBEswQWIyBnNDP99q+LhL+z9553O0cY=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:34:31 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"r4e9w2rdcm"},{"Name":"integrity","Value":"sha256-Nfjrc4Ur9Fv2oBEswQWIyBnNDP99q+LhL+z9553O0cY="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-utilities.css.map"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.css.r4e9w2rdcm.map.gz","AssetFile":"lib/bootstrap/dist/css/bootstrap-utilities.css.map.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"44124"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"G+vjiEeP6kST5cIl0dMgkpqYVHtGzW2FoEEhPm8uXFQ=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"r4e9w2rdcm"},{"Name":"integrity","Value":"sha256-G+vjiEeP6kST5cIl0dMgkpqYVHtGzW2FoEEhPm8uXFQ="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-utilities.css.map.gz"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.khv3u5hwcm.css","AssetFile":"lib/bootstrap/dist/css/bootstrap-utilities.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000083388926"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"11991"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"8+5oxr92QYcYeV3zAk8RS4XmZo6Y5i3ZmbiJXj9KVQo=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"khv3u5hwcm"},{"Name":"integrity","Value":"sha256-2BubgNUPlQSF/0wLFcRXQ/Yjzk9vsUbDAeK2QM+h+yo="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-utilities.css"},{"Name":"original-resource","Value":"\"2BubgNUPlQSF/0wLFcRXQ/Yjzk9vsUbDAeK2QM+h+yo=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.khv3u5hwcm.css","AssetFile":"lib/bootstrap/dist/css/bootstrap-utilities.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"107823"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"2BubgNUPlQSF/0wLFcRXQ/Yjzk9vsUbDAeK2QM+h+yo=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:34:31 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"khv3u5hwcm"},{"Name":"integrity","Value":"sha256-2BubgNUPlQSF/0wLFcRXQ/Yjzk9vsUbDAeK2QM+h+yo="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-utilities.css"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.khv3u5hwcm.css.gz","AssetFile":"lib/bootstrap/dist/css/bootstrap-utilities.css.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"11991"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"8+5oxr92QYcYeV3zAk8RS4XmZo6Y5i3ZmbiJXj9KVQo=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"khv3u5hwcm"},{"Name":"integrity","Value":"sha256-8+5oxr92QYcYeV3zAk8RS4XmZo6Y5i3ZmbiJXj9KVQo="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-utilities.css.gz"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.min.css","AssetFile":"lib/bootstrap/dist/css/bootstrap-utilities.min.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000090383225"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"11063"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"xp5LPZ0vlqmxQrG+KjPm7ijhhJ+gD7VeH35lOUwBTWM=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-KyE9xbKO9CuYx0HXpIKgsWIvXkAfITtiQ172j26wmRs="},{"Name":"original-resource","Value":"\"KyE9xbKO9CuYx0HXpIKgsWIvXkAfITtiQ172j26wmRs=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.min.css","AssetFile":"lib/bootstrap/dist/css/bootstrap-utilities.min.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"85352"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"KyE9xbKO9CuYx0HXpIKgsWIvXkAfITtiQ172j26wmRs=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:34:31 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-KyE9xbKO9CuYx0HXpIKgsWIvXkAfITtiQ172j26wmRs="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.min.css.c2oey78nd0.map","AssetFile":"lib/bootstrap/dist/css/bootstrap-utilities.min.css.map.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000041062703"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"24352"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"TQK1gkY5TwZe0PcEU9oPCPHWKcNR7OXqgO0AeBYCb3U=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"c2oey78nd0"},{"Name":"integrity","Value":"sha256-rHDmip4JZzuaGOcSQ1QSQrIbG0Eb3Zja9whqSF1zYIU="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-utilities.min.css.map"},{"Name":"original-resource","Value":"\"rHDmip4JZzuaGOcSQ1QSQrIbG0Eb3Zja9whqSF1zYIU=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.min.css.c2oey78nd0.map","AssetFile":"lib/bootstrap/dist/css/bootstrap-utilities.min.css.map","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"180381"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"rHDmip4JZzuaGOcSQ1QSQrIbG0Eb3Zja9whqSF1zYIU=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:34:31 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"c2oey78nd0"},{"Name":"integrity","Value":"sha256-rHDmip4JZzuaGOcSQ1QSQrIbG0Eb3Zja9whqSF1zYIU="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-utilities.min.css.map"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.min.css.c2oey78nd0.map.gz","AssetFile":"lib/bootstrap/dist/css/bootstrap-utilities.min.css.map.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"24352"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"TQK1gkY5TwZe0PcEU9oPCPHWKcNR7OXqgO0AeBYCb3U=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"c2oey78nd0"},{"Name":"integrity","Value":"sha256-TQK1gkY5TwZe0PcEU9oPCPHWKcNR7OXqgO0AeBYCb3U="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-utilities.min.css.map.gz"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.min.css.gz","AssetFile":"lib/bootstrap/dist/css/bootstrap-utilities.min.css.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"11063"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"xp5LPZ0vlqmxQrG+KjPm7ijhhJ+gD7VeH35lOUwBTWM=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-xp5LPZ0vlqmxQrG+KjPm7ijhhJ+gD7VeH35lOUwBTWM="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.min.css.map","AssetFile":"lib/bootstrap/dist/css/bootstrap-utilities.min.css.map.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000041062703"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"24352"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"TQK1gkY5TwZe0PcEU9oPCPHWKcNR7OXqgO0AeBYCb3U=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-rHDmip4JZzuaGOcSQ1QSQrIbG0Eb3Zja9whqSF1zYIU="},{"Name":"original-resource","Value":"\"rHDmip4JZzuaGOcSQ1QSQrIbG0Eb3Zja9whqSF1zYIU=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.min.css.map","AssetFile":"lib/bootstrap/dist/css/bootstrap-utilities.min.css.map","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"180381"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"rHDmip4JZzuaGOcSQ1QSQrIbG0Eb3Zja9whqSF1zYIU=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:34:31 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-rHDmip4JZzuaGOcSQ1QSQrIbG0Eb3Zja9whqSF1zYIU="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.min.css.map.gz","AssetFile":"lib/bootstrap/dist/css/bootstrap-utilities.min.css.map.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"24352"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"TQK1gkY5TwZe0PcEU9oPCPHWKcNR7OXqgO0AeBYCb3U=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-TQK1gkY5TwZe0PcEU9oPCPHWKcNR7OXqgO0AeBYCb3U="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.min.lcd1t2u6c8.css","AssetFile":"lib/bootstrap/dist/css/bootstrap-utilities.min.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000090383225"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"11063"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"xp5LPZ0vlqmxQrG+KjPm7ijhhJ+gD7VeH35lOUwBTWM=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"lcd1t2u6c8"},{"Name":"integrity","Value":"sha256-KyE9xbKO9CuYx0HXpIKgsWIvXkAfITtiQ172j26wmRs="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-utilities.min.css"},{"Name":"original-resource","Value":"\"KyE9xbKO9CuYx0HXpIKgsWIvXkAfITtiQ172j26wmRs=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.min.lcd1t2u6c8.css","AssetFile":"lib/bootstrap/dist/css/bootstrap-utilities.min.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"85352"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"KyE9xbKO9CuYx0HXpIKgsWIvXkAfITtiQ172j26wmRs=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:34:31 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"lcd1t2u6c8"},{"Name":"integrity","Value":"sha256-KyE9xbKO9CuYx0HXpIKgsWIvXkAfITtiQ172j26wmRs="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-utilities.min.css"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.min.lcd1t2u6c8.css.gz","AssetFile":"lib/bootstrap/dist/css/bootstrap-utilities.min.css.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"11063"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"xp5LPZ0vlqmxQrG+KjPm7ijhhJ+gD7VeH35lOUwBTWM=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"lcd1t2u6c8"},{"Name":"integrity","Value":"sha256-xp5LPZ0vlqmxQrG+KjPm7ijhhJ+gD7VeH35lOUwBTWM="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-utilities.min.css.gz"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.css","AssetFile":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000083794201"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"11933"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"QAnDcxiLhrclwEVeKtd/GREdZNbXO2rZP5agorcS5EM=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-H6wkBbSwjua2veJoThJo4uy161jp+DOiZTloUlcZ6qQ="},{"Name":"original-resource","Value":"\"H6wkBbSwjua2veJoThJo4uy161jp+DOiZTloUlcZ6qQ=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.css","AssetFile":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"107691"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"H6wkBbSwjua2veJoThJo4uy161jp+DOiZTloUlcZ6qQ=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:34:31 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-H6wkBbSwjua2veJoThJo4uy161jp+DOiZTloUlcZ6qQ="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.gz","AssetFile":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"11933"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"QAnDcxiLhrclwEVeKtd/GREdZNbXO2rZP5agorcS5EM=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-QAnDcxiLhrclwEVeKtd/GREdZNbXO2rZP5agorcS5EM="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.j5mq2jizvt.map","AssetFile":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.map.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000022676765"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"44097"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"e4SKSeUBYAMQYk9aT6NqaEr3vUfkTqZB8L0KIC7EPak=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"j5mq2jizvt"},{"Name":"integrity","Value":"sha256-p0BVq5Ve/dohBIdfbrZsoQNu02JSsKh1g0wbyiQiUaU="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.map"},{"Name":"original-resource","Value":"\"p0BVq5Ve/dohBIdfbrZsoQNu02JSsKh1g0wbyiQiUaU=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.j5mq2jizvt.map","AssetFile":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.map","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"267476"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"p0BVq5Ve/dohBIdfbrZsoQNu02JSsKh1g0wbyiQiUaU=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:34:31 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"j5mq2jizvt"},{"Name":"integrity","Value":"sha256-p0BVq5Ve/dohBIdfbrZsoQNu02JSsKh1g0wbyiQiUaU="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.map"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.j5mq2jizvt.map.gz","AssetFile":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.map.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"44097"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"e4SKSeUBYAMQYk9aT6NqaEr3vUfkTqZB8L0KIC7EPak=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"j5mq2jizvt"},{"Name":"integrity","Value":"sha256-e4SKSeUBYAMQYk9aT6NqaEr3vUfkTqZB8L0KIC7EPak="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.map.gz"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.map","AssetFile":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.map.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000022676765"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"44097"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"e4SKSeUBYAMQYk9aT6NqaEr3vUfkTqZB8L0KIC7EPak=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-p0BVq5Ve/dohBIdfbrZsoQNu02JSsKh1g0wbyiQiUaU="},{"Name":"original-resource","Value":"\"p0BVq5Ve/dohBIdfbrZsoQNu02JSsKh1g0wbyiQiUaU=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.map","AssetFile":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.map","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"267476"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"p0BVq5Ve/dohBIdfbrZsoQNu02JSsKh1g0wbyiQiUaU=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:34:31 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-p0BVq5Ve/dohBIdfbrZsoQNu02JSsKh1g0wbyiQiUaU="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.map.gz","AssetFile":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.map.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"44097"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"e4SKSeUBYAMQYk9aT6NqaEr3vUfkTqZB8L0KIC7EPak=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-e4SKSeUBYAMQYk9aT6NqaEr3vUfkTqZB8L0KIC7EPak="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.06098lyss8.css","AssetFile":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000090522314"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"11046"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"hXLxKxNQS6hkMWOc1Po5uxTK8ovzNg0xvRC9wMKOZiM=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"06098lyss8"},{"Name":"integrity","Value":"sha256-GAUum6FjwQ8HrXGaoFRnHTqQQLpljXGavT7mBX8E9qU="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css"},{"Name":"original-resource","Value":"\"GAUum6FjwQ8HrXGaoFRnHTqQQLpljXGavT7mBX8E9qU=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.06098lyss8.css","AssetFile":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"85281"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"GAUum6FjwQ8HrXGaoFRnHTqQQLpljXGavT7mBX8E9qU=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:34:31 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"06098lyss8"},{"Name":"integrity","Value":"sha256-GAUum6FjwQ8HrXGaoFRnHTqQQLpljXGavT7mBX8E9qU="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.06098lyss8.css.gz","AssetFile":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"11046"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"hXLxKxNQS6hkMWOc1Po5uxTK8ovzNg0xvRC9wMKOZiM=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"06098lyss8"},{"Name":"integrity","Value":"sha256-hXLxKxNQS6hkMWOc1Po5uxTK8ovzNg0xvRC9wMKOZiM="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.gz"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css","AssetFile":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000090522314"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"11046"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"hXLxKxNQS6hkMWOc1Po5uxTK8ovzNg0xvRC9wMKOZiM=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-GAUum6FjwQ8HrXGaoFRnHTqQQLpljXGavT7mBX8E9qU="},{"Name":"original-resource","Value":"\"GAUum6FjwQ8HrXGaoFRnHTqQQLpljXGavT7mBX8E9qU=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css","AssetFile":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"85281"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"GAUum6FjwQ8HrXGaoFRnHTqQQLpljXGavT7mBX8E9qU=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:34:31 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-GAUum6FjwQ8HrXGaoFRnHTqQQLpljXGavT7mBX8E9qU="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.gz","AssetFile":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"11046"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"hXLxKxNQS6hkMWOc1Po5uxTK8ovzNg0xvRC9wMKOZiM=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-hXLxKxNQS6hkMWOc1Po5uxTK8ovzNg0xvRC9wMKOZiM="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.map","AssetFile":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.map.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000041137027"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"24308"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"cHE9/Oryzx3rvDz6rg6kwVAGdOFlXOCmBgU/SG5fJjA=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-o8XK32mcY/FfcOQ1D2HJvVuZ0YTXSURZDLXCK0fnQeA="},{"Name":"original-resource","Value":"\"o8XK32mcY/FfcOQ1D2HJvVuZ0YTXSURZDLXCK0fnQeA=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.map","AssetFile":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.map","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"180217"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"o8XK32mcY/FfcOQ1D2HJvVuZ0YTXSURZDLXCK0fnQeA=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:34:31 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-o8XK32mcY/FfcOQ1D2HJvVuZ0YTXSURZDLXCK0fnQeA="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.map.gz","AssetFile":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.map.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"24308"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"cHE9/Oryzx3rvDz6rg6kwVAGdOFlXOCmBgU/SG5fJjA=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-cHE9/Oryzx3rvDz6rg6kwVAGdOFlXOCmBgU/SG5fJjA="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.nvvlpmu67g.map","AssetFile":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.map.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000041137027"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"24308"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"cHE9/Oryzx3rvDz6rg6kwVAGdOFlXOCmBgU/SG5fJjA=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"nvvlpmu67g"},{"Name":"integrity","Value":"sha256-o8XK32mcY/FfcOQ1D2HJvVuZ0YTXSURZDLXCK0fnQeA="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.map"},{"Name":"original-resource","Value":"\"o8XK32mcY/FfcOQ1D2HJvVuZ0YTXSURZDLXCK0fnQeA=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.nvvlpmu67g.map","AssetFile":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.map","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"180217"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"o8XK32mcY/FfcOQ1D2HJvVuZ0YTXSURZDLXCK0fnQeA=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:34:31 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"nvvlpmu67g"},{"Name":"integrity","Value":"sha256-o8XK32mcY/FfcOQ1D2HJvVuZ0YTXSURZDLXCK0fnQeA="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.map"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.nvvlpmu67g.map.gz","AssetFile":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.map.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"24308"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"cHE9/Oryzx3rvDz6rg6kwVAGdOFlXOCmBgU/SG5fJjA=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"nvvlpmu67g"},{"Name":"integrity","Value":"sha256-cHE9/Oryzx3rvDz6rg6kwVAGdOFlXOCmBgU/SG5fJjA="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.map.gz"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.tdbxkamptv.css","AssetFile":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000083794201"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"11933"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"QAnDcxiLhrclwEVeKtd/GREdZNbXO2rZP5agorcS5EM=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"tdbxkamptv"},{"Name":"integrity","Value":"sha256-H6wkBbSwjua2veJoThJo4uy161jp+DOiZTloUlcZ6qQ="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.css"},{"Name":"original-resource","Value":"\"H6wkBbSwjua2veJoThJo4uy161jp+DOiZTloUlcZ6qQ=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.tdbxkamptv.css","AssetFile":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"107691"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"H6wkBbSwjua2veJoThJo4uy161jp+DOiZTloUlcZ6qQ=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:34:31 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"tdbxkamptv"},{"Name":"integrity","Value":"sha256-H6wkBbSwjua2veJoThJo4uy161jp+DOiZTloUlcZ6qQ="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.css"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.tdbxkamptv.css.gz","AssetFile":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"11933"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"QAnDcxiLhrclwEVeKtd/GREdZNbXO2rZP5agorcS5EM=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"tdbxkamptv"},{"Name":"integrity","Value":"sha256-QAnDcxiLhrclwEVeKtd/GREdZNbXO2rZP5agorcS5EM="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.gz"}]},{"Route":"lib/bootstrap/dist/css/bootstrap.css","AssetFile":"lib/bootstrap/dist/css/bootstrap.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000030067050"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"33258"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"pt+WNxTLLUqq6vRWwSTT2gtyBZCFg8ZA7nmeS+5+Z/s=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-GKEF18s44B5e0MolXAkpkqLiEbOVlKf6VyYr/G/E6pw="},{"Name":"original-resource","Value":"\"GKEF18s44B5e0MolXAkpkqLiEbOVlKf6VyYr/G/E6pw=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap.css","AssetFile":"lib/bootstrap/dist/css/bootstrap.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"281046"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"GKEF18s44B5e0MolXAkpkqLiEbOVlKf6VyYr/G/E6pw=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:34:31 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-GKEF18s44B5e0MolXAkpkqLiEbOVlKf6VyYr/G/E6pw="}]},{"Route":"lib/bootstrap/dist/css/bootstrap.css.gz","AssetFile":"lib/bootstrap/dist/css/bootstrap.css.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"33258"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"pt+WNxTLLUqq6vRWwSTT2gtyBZCFg8ZA7nmeS+5+Z/s=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-pt+WNxTLLUqq6vRWwSTT2gtyBZCFg8ZA7nmeS+5+Z/s="}]},{"Route":"lib/bootstrap/dist/css/bootstrap.css.map","AssetFile":"lib/bootstrap/dist/css/bootstrap.css.map.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000008694367"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"115016"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"8MRqubXMeZHymG3Y+Uqns/oONNVcvUoxMPBYRNZmiNs=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-KzNVR3p7UZGba94dnCtlc6jXjK5urSPiZ/eNnKTmDkw="},{"Name":"original-resource","Value":"\"KzNVR3p7UZGba94dnCtlc6jXjK5urSPiZ/eNnKTmDkw=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap.css.map","AssetFile":"lib/bootstrap/dist/css/bootstrap.css.map","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"679755"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"KzNVR3p7UZGba94dnCtlc6jXjK5urSPiZ/eNnKTmDkw=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:34:31 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-KzNVR3p7UZGba94dnCtlc6jXjK5urSPiZ/eNnKTmDkw="}]},{"Route":"lib/bootstrap/dist/css/bootstrap.css.map.gz","AssetFile":"lib/bootstrap/dist/css/bootstrap.css.map.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"115016"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"8MRqubXMeZHymG3Y+Uqns/oONNVcvUoxMPBYRNZmiNs=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-8MRqubXMeZHymG3Y+Uqns/oONNVcvUoxMPBYRNZmiNs="}]},{"Route":"lib/bootstrap/dist/css/bootstrap.css.pj5nd1wqec.map","AssetFile":"lib/bootstrap/dist/css/bootstrap.css.map.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000008694367"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"115016"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"8MRqubXMeZHymG3Y+Uqns/oONNVcvUoxMPBYRNZmiNs=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"pj5nd1wqec"},{"Name":"integrity","Value":"sha256-KzNVR3p7UZGba94dnCtlc6jXjK5urSPiZ/eNnKTmDkw="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap.css.map"},{"Name":"original-resource","Value":"\"KzNVR3p7UZGba94dnCtlc6jXjK5urSPiZ/eNnKTmDkw=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap.css.pj5nd1wqec.map","AssetFile":"lib/bootstrap/dist/css/bootstrap.css.map","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"679755"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"KzNVR3p7UZGba94dnCtlc6jXjK5urSPiZ/eNnKTmDkw=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:34:31 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"pj5nd1wqec"},{"Name":"integrity","Value":"sha256-KzNVR3p7UZGba94dnCtlc6jXjK5urSPiZ/eNnKTmDkw="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap.css.map"}]},{"Route":"lib/bootstrap/dist/css/bootstrap.css.pj5nd1wqec.map.gz","AssetFile":"lib/bootstrap/dist/css/bootstrap.css.map.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"115016"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"8MRqubXMeZHymG3Y+Uqns/oONNVcvUoxMPBYRNZmiNs=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"pj5nd1wqec"},{"Name":"integrity","Value":"sha256-8MRqubXMeZHymG3Y+Uqns/oONNVcvUoxMPBYRNZmiNs="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap.css.map.gz"}]},{"Route":"lib/bootstrap/dist/css/bootstrap.min.46ein0sx1k.css","AssetFile":"lib/bootstrap/dist/css/bootstrap.min.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000032288270"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"30970"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"ct6gh3bWPabPIUEmUcCXl7mxgr/V6roHfypeQaXerHU=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"46ein0sx1k"},{"Name":"integrity","Value":"sha256-PI8n5gCcz9cQqQXm3PEtDuPG8qx9oFsFctPg0S5zb8g="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap.min.css"},{"Name":"original-resource","Value":"\"PI8n5gCcz9cQqQXm3PEtDuPG8qx9oFsFctPg0S5zb8g=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap.min.46ein0sx1k.css","AssetFile":"lib/bootstrap/dist/css/bootstrap.min.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"232803"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"PI8n5gCcz9cQqQXm3PEtDuPG8qx9oFsFctPg0S5zb8g=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:34:31 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"46ein0sx1k"},{"Name":"integrity","Value":"sha256-PI8n5gCcz9cQqQXm3PEtDuPG8qx9oFsFctPg0S5zb8g="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap.min.css"}]},{"Route":"lib/bootstrap/dist/css/bootstrap.min.46ein0sx1k.css.gz","AssetFile":"lib/bootstrap/dist/css/bootstrap.min.css.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"30970"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"ct6gh3bWPabPIUEmUcCXl7mxgr/V6roHfypeQaXerHU=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"46ein0sx1k"},{"Name":"integrity","Value":"sha256-ct6gh3bWPabPIUEmUcCXl7mxgr/V6roHfypeQaXerHU="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap.min.css.gz"}]},{"Route":"lib/bootstrap/dist/css/bootstrap.min.css","AssetFile":"lib/bootstrap/dist/css/bootstrap.min.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000032288270"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"30970"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"ct6gh3bWPabPIUEmUcCXl7mxgr/V6roHfypeQaXerHU=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-PI8n5gCcz9cQqQXm3PEtDuPG8qx9oFsFctPg0S5zb8g="},{"Name":"original-resource","Value":"\"PI8n5gCcz9cQqQXm3PEtDuPG8qx9oFsFctPg0S5zb8g=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap.min.css","AssetFile":"lib/bootstrap/dist/css/bootstrap.min.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"232803"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"PI8n5gCcz9cQqQXm3PEtDuPG8qx9oFsFctPg0S5zb8g=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:34:31 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-PI8n5gCcz9cQqQXm3PEtDuPG8qx9oFsFctPg0S5zb8g="}]},{"Route":"lib/bootstrap/dist/css/bootstrap.min.css.gz","AssetFile":"lib/bootstrap/dist/css/bootstrap.min.css.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"30970"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"ct6gh3bWPabPIUEmUcCXl7mxgr/V6roHfypeQaXerHU=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-ct6gh3bWPabPIUEmUcCXl7mxgr/V6roHfypeQaXerHU="}]},{"Route":"lib/bootstrap/dist/css/bootstrap.min.css.map","AssetFile":"lib/bootstrap/dist/css/bootstrap.min.css.map.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000010890399"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"91823"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"9CI2KGakklFWR2ih9heBHyKNfnUGsALtlWASIJRc25A=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-8SM4U2NQpCLGTQLW5D/x3qSTwxVq2CP+GXYc3V1WwFs="},{"Name":"original-resource","Value":"\"8SM4U2NQpCLGTQLW5D/x3qSTwxVq2CP+GXYc3V1WwFs=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap.min.css.map","AssetFile":"lib/bootstrap/dist/css/bootstrap.min.css.map","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"589892"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"8SM4U2NQpCLGTQLW5D/x3qSTwxVq2CP+GXYc3V1WwFs=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:34:31 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-8SM4U2NQpCLGTQLW5D/x3qSTwxVq2CP+GXYc3V1WwFs="}]},{"Route":"lib/bootstrap/dist/css/bootstrap.min.css.map.gz","AssetFile":"lib/bootstrap/dist/css/bootstrap.min.css.map.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"91823"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"9CI2KGakklFWR2ih9heBHyKNfnUGsALtlWASIJRc25A=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-9CI2KGakklFWR2ih9heBHyKNfnUGsALtlWASIJRc25A="}]},{"Route":"lib/bootstrap/dist/css/bootstrap.min.css.v0zj4ognzu.map","AssetFile":"lib/bootstrap/dist/css/bootstrap.min.css.map.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000010890399"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"91823"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"9CI2KGakklFWR2ih9heBHyKNfnUGsALtlWASIJRc25A=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"v0zj4ognzu"},{"Name":"integrity","Value":"sha256-8SM4U2NQpCLGTQLW5D/x3qSTwxVq2CP+GXYc3V1WwFs="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap.min.css.map"},{"Name":"original-resource","Value":"\"8SM4U2NQpCLGTQLW5D/x3qSTwxVq2CP+GXYc3V1WwFs=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap.min.css.v0zj4ognzu.map","AssetFile":"lib/bootstrap/dist/css/bootstrap.min.css.map","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"589892"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"8SM4U2NQpCLGTQLW5D/x3qSTwxVq2CP+GXYc3V1WwFs=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:34:31 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"v0zj4ognzu"},{"Name":"integrity","Value":"sha256-8SM4U2NQpCLGTQLW5D/x3qSTwxVq2CP+GXYc3V1WwFs="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap.min.css.map"}]},{"Route":"lib/bootstrap/dist/css/bootstrap.min.css.v0zj4ognzu.map.gz","AssetFile":"lib/bootstrap/dist/css/bootstrap.min.css.map.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"91823"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"9CI2KGakklFWR2ih9heBHyKNfnUGsALtlWASIJRc25A=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"v0zj4ognzu"},{"Name":"integrity","Value":"sha256-9CI2KGakklFWR2ih9heBHyKNfnUGsALtlWASIJRc25A="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap.min.css.map.gz"}]},{"Route":"lib/bootstrap/dist/css/bootstrap.rtl.37tfw0ft22.css","AssetFile":"lib/bootstrap/dist/css/bootstrap.rtl.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000030203268"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"33108"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"fs1OjihDYC1UL3EjGsC/xVxgtu8ombjnF8kOmQxQ+Mo=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"37tfw0ft22"},{"Name":"integrity","Value":"sha256-j5E4XIj1p1kNnDi0x1teX9RXoh1/FNlPvCML9YmRh2Q="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap.rtl.css"},{"Name":"original-resource","Value":"\"j5E4XIj1p1kNnDi0x1teX9RXoh1/FNlPvCML9YmRh2Q=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap.rtl.37tfw0ft22.css","AssetFile":"lib/bootstrap/dist/css/bootstrap.rtl.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"280259"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"j5E4XIj1p1kNnDi0x1teX9RXoh1/FNlPvCML9YmRh2Q=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:34:31 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"37tfw0ft22"},{"Name":"integrity","Value":"sha256-j5E4XIj1p1kNnDi0x1teX9RXoh1/FNlPvCML9YmRh2Q="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap.rtl.css"}]},{"Route":"lib/bootstrap/dist/css/bootstrap.rtl.37tfw0ft22.css.gz","AssetFile":"lib/bootstrap/dist/css/bootstrap.rtl.css.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"33108"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"fs1OjihDYC1UL3EjGsC/xVxgtu8ombjnF8kOmQxQ+Mo=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"37tfw0ft22"},{"Name":"integrity","Value":"sha256-fs1OjihDYC1UL3EjGsC/xVxgtu8ombjnF8kOmQxQ+Mo="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap.rtl.css.gz"}]},{"Route":"lib/bootstrap/dist/css/bootstrap.rtl.css","AssetFile":"lib/bootstrap/dist/css/bootstrap.rtl.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000030203268"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"33108"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"fs1OjihDYC1UL3EjGsC/xVxgtu8ombjnF8kOmQxQ+Mo=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-j5E4XIj1p1kNnDi0x1teX9RXoh1/FNlPvCML9YmRh2Q="},{"Name":"original-resource","Value":"\"j5E4XIj1p1kNnDi0x1teX9RXoh1/FNlPvCML9YmRh2Q=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap.rtl.css","AssetFile":"lib/bootstrap/dist/css/bootstrap.rtl.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"280259"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"j5E4XIj1p1kNnDi0x1teX9RXoh1/FNlPvCML9YmRh2Q=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:34:31 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-j5E4XIj1p1kNnDi0x1teX9RXoh1/FNlPvCML9YmRh2Q="}]},{"Route":"lib/bootstrap/dist/css/bootstrap.rtl.css.gz","AssetFile":"lib/bootstrap/dist/css/bootstrap.rtl.css.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"33108"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"fs1OjihDYC1UL3EjGsC/xVxgtu8ombjnF8kOmQxQ+Mo=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-fs1OjihDYC1UL3EjGsC/xVxgtu8ombjnF8kOmQxQ+Mo="}]},{"Route":"lib/bootstrap/dist/css/bootstrap.rtl.css.hrwsygsryq.map","AssetFile":"lib/bootstrap/dist/css/bootstrap.rtl.css.map.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000008698678"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"114959"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"u1Hpz3sxsOpr+ltBsyKbue1Mz8VL9c8goySlIAwPCh8=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"hrwsygsryq"},{"Name":"integrity","Value":"sha256-3bYWUiiVYMZfv2wq5JnXIsHlQKgSKs/VcRivgjgZ1ho="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap.rtl.css.map"},{"Name":"original-resource","Value":"\"3bYWUiiVYMZfv2wq5JnXIsHlQKgSKs/VcRivgjgZ1ho=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap.rtl.css.hrwsygsryq.map","AssetFile":"lib/bootstrap/dist/css/bootstrap.rtl.css.map","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"679615"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"3bYWUiiVYMZfv2wq5JnXIsHlQKgSKs/VcRivgjgZ1ho=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:34:31 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"hrwsygsryq"},{"Name":"integrity","Value":"sha256-3bYWUiiVYMZfv2wq5JnXIsHlQKgSKs/VcRivgjgZ1ho="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap.rtl.css.map"}]},{"Route":"lib/bootstrap/dist/css/bootstrap.rtl.css.hrwsygsryq.map.gz","AssetFile":"lib/bootstrap/dist/css/bootstrap.rtl.css.map.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"114959"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"u1Hpz3sxsOpr+ltBsyKbue1Mz8VL9c8goySlIAwPCh8=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"hrwsygsryq"},{"Name":"integrity","Value":"sha256-u1Hpz3sxsOpr+ltBsyKbue1Mz8VL9c8goySlIAwPCh8="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap.rtl.css.map.gz"}]},{"Route":"lib/bootstrap/dist/css/bootstrap.rtl.css.map","AssetFile":"lib/bootstrap/dist/css/bootstrap.rtl.css.map.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000008698678"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"114959"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"u1Hpz3sxsOpr+ltBsyKbue1Mz8VL9c8goySlIAwPCh8=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-3bYWUiiVYMZfv2wq5JnXIsHlQKgSKs/VcRivgjgZ1ho="},{"Name":"original-resource","Value":"\"3bYWUiiVYMZfv2wq5JnXIsHlQKgSKs/VcRivgjgZ1ho=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap.rtl.css.map","AssetFile":"lib/bootstrap/dist/css/bootstrap.rtl.css.map","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"679615"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"3bYWUiiVYMZfv2wq5JnXIsHlQKgSKs/VcRivgjgZ1ho=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:34:31 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-3bYWUiiVYMZfv2wq5JnXIsHlQKgSKs/VcRivgjgZ1ho="}]},{"Route":"lib/bootstrap/dist/css/bootstrap.rtl.css.map.gz","AssetFile":"lib/bootstrap/dist/css/bootstrap.rtl.css.map.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"114959"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"u1Hpz3sxsOpr+ltBsyKbue1Mz8VL9c8goySlIAwPCh8=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-u1Hpz3sxsOpr+ltBsyKbue1Mz8VL9c8goySlIAwPCh8="}]},{"Route":"lib/bootstrap/dist/css/bootstrap.rtl.min.css","AssetFile":"lib/bootstrap/dist/css/bootstrap.rtl.min.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000032265350"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"30992"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"WwwE+3A7x1trge8XZeN9oKwkvd6mA0Oad5mAbTfmMtQ=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-h5lE7Nm8SkeIpBHHYxN99spP3VuGFKl5NZgsocil7zk="},{"Name":"original-resource","Value":"\"h5lE7Nm8SkeIpBHHYxN99spP3VuGFKl5NZgsocil7zk=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap.rtl.min.css","AssetFile":"lib/bootstrap/dist/css/bootstrap.rtl.min.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"232911"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"h5lE7Nm8SkeIpBHHYxN99spP3VuGFKl5NZgsocil7zk=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:34:31 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-h5lE7Nm8SkeIpBHHYxN99spP3VuGFKl5NZgsocil7zk="}]},{"Route":"lib/bootstrap/dist/css/bootstrap.rtl.min.css.ft3s53vfgj.map","AssetFile":"lib/bootstrap/dist/css/bootstrap.rtl.min.css.map.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000010903223"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"91715"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"j64rFxRLhZHmUPsE/gjIPruUNUfXs1ivjm1eS9HMeoo=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ft3s53vfgj"},{"Name":"integrity","Value":"sha256-rTzXlnepcb/vgFAiB+U7ODQAfOlJLfM3gY6IU7eIANk="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap.rtl.min.css.map"},{"Name":"original-resource","Value":"\"rTzXlnepcb/vgFAiB+U7ODQAfOlJLfM3gY6IU7eIANk=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap.rtl.min.css.ft3s53vfgj.map","AssetFile":"lib/bootstrap/dist/css/bootstrap.rtl.min.css.map","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"589087"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"rTzXlnepcb/vgFAiB+U7ODQAfOlJLfM3gY6IU7eIANk=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:34:31 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ft3s53vfgj"},{"Name":"integrity","Value":"sha256-rTzXlnepcb/vgFAiB+U7ODQAfOlJLfM3gY6IU7eIANk="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap.rtl.min.css.map"}]},{"Route":"lib/bootstrap/dist/css/bootstrap.rtl.min.css.ft3s53vfgj.map.gz","AssetFile":"lib/bootstrap/dist/css/bootstrap.rtl.min.css.map.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"91715"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"j64rFxRLhZHmUPsE/gjIPruUNUfXs1ivjm1eS9HMeoo=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ft3s53vfgj"},{"Name":"integrity","Value":"sha256-j64rFxRLhZHmUPsE/gjIPruUNUfXs1ivjm1eS9HMeoo="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap.rtl.min.css.map.gz"}]},{"Route":"lib/bootstrap/dist/css/bootstrap.rtl.min.css.gz","AssetFile":"lib/bootstrap/dist/css/bootstrap.rtl.min.css.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"30992"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"WwwE+3A7x1trge8XZeN9oKwkvd6mA0Oad5mAbTfmMtQ=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-WwwE+3A7x1trge8XZeN9oKwkvd6mA0Oad5mAbTfmMtQ="}]},{"Route":"lib/bootstrap/dist/css/bootstrap.rtl.min.css.map","AssetFile":"lib/bootstrap/dist/css/bootstrap.rtl.min.css.map.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000010903223"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"91715"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"j64rFxRLhZHmUPsE/gjIPruUNUfXs1ivjm1eS9HMeoo=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-rTzXlnepcb/vgFAiB+U7ODQAfOlJLfM3gY6IU7eIANk="},{"Name":"original-resource","Value":"\"rTzXlnepcb/vgFAiB+U7ODQAfOlJLfM3gY6IU7eIANk=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap.rtl.min.css.map","AssetFile":"lib/bootstrap/dist/css/bootstrap.rtl.min.css.map","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"589087"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"rTzXlnepcb/vgFAiB+U7ODQAfOlJLfM3gY6IU7eIANk=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:34:31 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-rTzXlnepcb/vgFAiB+U7ODQAfOlJLfM3gY6IU7eIANk="}]},{"Route":"lib/bootstrap/dist/css/bootstrap.rtl.min.css.map.gz","AssetFile":"lib/bootstrap/dist/css/bootstrap.rtl.min.css.map.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"91715"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"j64rFxRLhZHmUPsE/gjIPruUNUfXs1ivjm1eS9HMeoo=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-j64rFxRLhZHmUPsE/gjIPruUNUfXs1ivjm1eS9HMeoo="}]},{"Route":"lib/bootstrap/dist/css/bootstrap.rtl.min.pk9g2wxc8p.css","AssetFile":"lib/bootstrap/dist/css/bootstrap.rtl.min.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000032265350"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"30992"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"WwwE+3A7x1trge8XZeN9oKwkvd6mA0Oad5mAbTfmMtQ=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"pk9g2wxc8p"},{"Name":"integrity","Value":"sha256-h5lE7Nm8SkeIpBHHYxN99spP3VuGFKl5NZgsocil7zk="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap.rtl.min.css"},{"Name":"original-resource","Value":"\"h5lE7Nm8SkeIpBHHYxN99spP3VuGFKl5NZgsocil7zk=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap.rtl.min.pk9g2wxc8p.css","AssetFile":"lib/bootstrap/dist/css/bootstrap.rtl.min.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"232911"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"h5lE7Nm8SkeIpBHHYxN99spP3VuGFKl5NZgsocil7zk=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:34:31 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"pk9g2wxc8p"},{"Name":"integrity","Value":"sha256-h5lE7Nm8SkeIpBHHYxN99spP3VuGFKl5NZgsocil7zk="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap.rtl.min.css"}]},{"Route":"lib/bootstrap/dist/css/bootstrap.rtl.min.pk9g2wxc8p.css.gz","AssetFile":"lib/bootstrap/dist/css/bootstrap.rtl.min.css.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"30992"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"WwwE+3A7x1trge8XZeN9oKwkvd6mA0Oad5mAbTfmMtQ=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"pk9g2wxc8p"},{"Name":"integrity","Value":"sha256-WwwE+3A7x1trge8XZeN9oKwkvd6mA0Oad5mAbTfmMtQ="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap.rtl.min.css.gz"}]},{"Route":"lib/bootstrap/dist/css/bootstrap.s35ty4nyc5.css","AssetFile":"lib/bootstrap/dist/css/bootstrap.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000030067050"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"33258"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"pt+WNxTLLUqq6vRWwSTT2gtyBZCFg8ZA7nmeS+5+Z/s=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"s35ty4nyc5"},{"Name":"integrity","Value":"sha256-GKEF18s44B5e0MolXAkpkqLiEbOVlKf6VyYr/G/E6pw="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap.css"},{"Name":"original-resource","Value":"\"GKEF18s44B5e0MolXAkpkqLiEbOVlKf6VyYr/G/E6pw=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap.s35ty4nyc5.css","AssetFile":"lib/bootstrap/dist/css/bootstrap.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"281046"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"GKEF18s44B5e0MolXAkpkqLiEbOVlKf6VyYr/G/E6pw=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:34:31 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"s35ty4nyc5"},{"Name":"integrity","Value":"sha256-GKEF18s44B5e0MolXAkpkqLiEbOVlKf6VyYr/G/E6pw="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap.css"}]},{"Route":"lib/bootstrap/dist/css/bootstrap.s35ty4nyc5.css.gz","AssetFile":"lib/bootstrap/dist/css/bootstrap.css.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"33258"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"pt+WNxTLLUqq6vRWwSTT2gtyBZCFg8ZA7nmeS+5+Z/s=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"s35ty4nyc5"},{"Name":"integrity","Value":"sha256-pt+WNxTLLUqq6vRWwSTT2gtyBZCFg8ZA7nmeS+5+Z/s="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap.css.gz"}]},{"Route":"lib/bootstrap/dist/js/bootstrap.bundle.6cfz1n2cew.js","AssetFile":"lib/bootstrap/dist/js/bootstrap.bundle.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000022545881"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"44353"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"FwlVZHaqt/fCokCRPrJXpP3g8Xz8yowIwHYza63e5sA=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"6cfz1n2cew"},{"Name":"integrity","Value":"sha256-mkoRoV24jV+rCPWcHDR5awPx8VuzzJKN0ibhxZ9/WaM="},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.bundle.js"},{"Name":"original-resource","Value":"\"mkoRoV24jV+rCPWcHDR5awPx8VuzzJKN0ibhxZ9/WaM=\""}]},{"Route":"lib/bootstrap/dist/js/bootstrap.bundle.6cfz1n2cew.js","AssetFile":"lib/bootstrap/dist/js/bootstrap.bundle.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"207819"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"mkoRoV24jV+rCPWcHDR5awPx8VuzzJKN0ibhxZ9/WaM=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:34:31 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"6cfz1n2cew"},{"Name":"integrity","Value":"sha256-mkoRoV24jV+rCPWcHDR5awPx8VuzzJKN0ibhxZ9/WaM="},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.bundle.js"}]},{"Route":"lib/bootstrap/dist/js/bootstrap.bundle.6cfz1n2cew.js.gz","AssetFile":"lib/bootstrap/dist/js/bootstrap.bundle.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"44353"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"FwlVZHaqt/fCokCRPrJXpP3g8Xz8yowIwHYza63e5sA=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"6cfz1n2cew"},{"Name":"integrity","Value":"sha256-FwlVZHaqt/fCokCRPrJXpP3g8Xz8yowIwHYza63e5sA="},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.bundle.js.gz"}]},{"Route":"lib/bootstrap/dist/js/bootstrap.bundle.js","AssetFile":"lib/bootstrap/dist/js/bootstrap.bundle.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000022545881"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"44353"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"FwlVZHaqt/fCokCRPrJXpP3g8Xz8yowIwHYza63e5sA=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-mkoRoV24jV+rCPWcHDR5awPx8VuzzJKN0ibhxZ9/WaM="},{"Name":"original-resource","Value":"\"mkoRoV24jV+rCPWcHDR5awPx8VuzzJKN0ibhxZ9/WaM=\""}]},{"Route":"lib/bootstrap/dist/js/bootstrap.bundle.js","AssetFile":"lib/bootstrap/dist/js/bootstrap.bundle.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"207819"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"mkoRoV24jV+rCPWcHDR5awPx8VuzzJKN0ibhxZ9/WaM=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:34:31 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-mkoRoV24jV+rCPWcHDR5awPx8VuzzJKN0ibhxZ9/WaM="}]},{"Route":"lib/bootstrap/dist/js/bootstrap.bundle.js.6pdc2jztkx.map","AssetFile":"lib/bootstrap/dist/js/bootstrap.bundle.js.map.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000010860947"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"92072"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"1e0S5mPPo/9Qad4mnR2UVH1bu8Tevi6r+JvHAAykgfg=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"6pdc2jztkx"},{"Name":"integrity","Value":"sha256-Wq4aWW1rQdJ+6oAgy1JQc9IBjHL9T3MKfXTBNqOv02c="},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.bundle.js.map"},{"Name":"original-resource","Value":"\"Wq4aWW1rQdJ+6oAgy1JQc9IBjHL9T3MKfXTBNqOv02c=\""}]},{"Route":"lib/bootstrap/dist/js/bootstrap.bundle.js.6pdc2jztkx.map","AssetFile":"lib/bootstrap/dist/js/bootstrap.bundle.js.map","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"444579"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"Wq4aWW1rQdJ+6oAgy1JQc9IBjHL9T3MKfXTBNqOv02c=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:34:31 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"6pdc2jztkx"},{"Name":"integrity","Value":"sha256-Wq4aWW1rQdJ+6oAgy1JQc9IBjHL9T3MKfXTBNqOv02c="},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.bundle.js.map"}]},{"Route":"lib/bootstrap/dist/js/bootstrap.bundle.js.6pdc2jztkx.map.gz","AssetFile":"lib/bootstrap/dist/js/bootstrap.bundle.js.map.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"92072"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"1e0S5mPPo/9Qad4mnR2UVH1bu8Tevi6r+JvHAAykgfg=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"6pdc2jztkx"},{"Name":"integrity","Value":"sha256-1e0S5mPPo/9Qad4mnR2UVH1bu8Tevi6r+JvHAAykgfg="},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.bundle.js.map.gz"}]},{"Route":"lib/bootstrap/dist/js/bootstrap.bundle.js.gz","AssetFile":"lib/bootstrap/dist/js/bootstrap.bundle.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"44353"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"FwlVZHaqt/fCokCRPrJXpP3g8Xz8yowIwHYza63e5sA=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-FwlVZHaqt/fCokCRPrJXpP3g8Xz8yowIwHYza63e5sA="}]},{"Route":"lib/bootstrap/dist/js/bootstrap.bundle.js.map","AssetFile":"lib/bootstrap/dist/js/bootstrap.bundle.js.map.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000010860947"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"92072"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"1e0S5mPPo/9Qad4mnR2UVH1bu8Tevi6r+JvHAAykgfg=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Wq4aWW1rQdJ+6oAgy1JQc9IBjHL9T3MKfXTBNqOv02c="},{"Name":"original-resource","Value":"\"Wq4aWW1rQdJ+6oAgy1JQc9IBjHL9T3MKfXTBNqOv02c=\""}]},{"Route":"lib/bootstrap/dist/js/bootstrap.bundle.js.map","AssetFile":"lib/bootstrap/dist/js/bootstrap.bundle.js.map","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"444579"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"Wq4aWW1rQdJ+6oAgy1JQc9IBjHL9T3MKfXTBNqOv02c=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:34:31 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Wq4aWW1rQdJ+6oAgy1JQc9IBjHL9T3MKfXTBNqOv02c="}]},{"Route":"lib/bootstrap/dist/js/bootstrap.bundle.js.map.gz","AssetFile":"lib/bootstrap/dist/js/bootstrap.bundle.js.map.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"92072"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"1e0S5mPPo/9Qad4mnR2UVH1bu8Tevi6r+JvHAAykgfg=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-1e0S5mPPo/9Qad4mnR2UVH1bu8Tevi6r+JvHAAykgfg="}]},{"Route":"lib/bootstrap/dist/js/bootstrap.bundle.min.493y06b0oq.js","AssetFile":"lib/bootstrap/dist/js/bootstrap.bundle.min.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000041692725"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"23984"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"PUb7rj1jLHgIo7Hwm3lvukBcGKDry7n7W2fa1xrz+zY=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"493y06b0oq"},{"Name":"integrity","Value":"sha256-CDOy6cOibCWEdsRiZuaHf8dSGGJRYuBGC+mjoJimHGw="},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.bundle.min.js"},{"Name":"original-resource","Value":"\"CDOy6cOibCWEdsRiZuaHf8dSGGJRYuBGC+mjoJimHGw=\""}]},{"Route":"lib/bootstrap/dist/js/bootstrap.bundle.min.493y06b0oq.js","AssetFile":"lib/bootstrap/dist/js/bootstrap.bundle.min.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"80721"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"CDOy6cOibCWEdsRiZuaHf8dSGGJRYuBGC+mjoJimHGw=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:34:31 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"493y06b0oq"},{"Name":"integrity","Value":"sha256-CDOy6cOibCWEdsRiZuaHf8dSGGJRYuBGC+mjoJimHGw="},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.bundle.min.js"}]},{"Route":"lib/bootstrap/dist/js/bootstrap.bundle.min.493y06b0oq.js.gz","AssetFile":"lib/bootstrap/dist/js/bootstrap.bundle.min.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"23984"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"PUb7rj1jLHgIo7Hwm3lvukBcGKDry7n7W2fa1xrz+zY=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"493y06b0oq"},{"Name":"integrity","Value":"sha256-PUb7rj1jLHgIo7Hwm3lvukBcGKDry7n7W2fa1xrz+zY="},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.bundle.min.js.gz"}]},{"Route":"lib/bootstrap/dist/js/bootstrap.bundle.min.js","AssetFile":"lib/bootstrap/dist/js/bootstrap.bundle.min.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000041692725"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"23984"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"PUb7rj1jLHgIo7Hwm3lvukBcGKDry7n7W2fa1xrz+zY=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-CDOy6cOibCWEdsRiZuaHf8dSGGJRYuBGC+mjoJimHGw="},{"Name":"original-resource","Value":"\"CDOy6cOibCWEdsRiZuaHf8dSGGJRYuBGC+mjoJimHGw=\""}]},{"Route":"lib/bootstrap/dist/js/bootstrap.bundle.min.js","AssetFile":"lib/bootstrap/dist/js/bootstrap.bundle.min.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"80721"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"CDOy6cOibCWEdsRiZuaHf8dSGGJRYuBGC+mjoJimHGw=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:34:31 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-CDOy6cOibCWEdsRiZuaHf8dSGGJRYuBGC+mjoJimHGw="}]},{"Route":"lib/bootstrap/dist/js/bootstrap.bundle.min.js.gz","AssetFile":"lib/bootstrap/dist/js/bootstrap.bundle.min.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"23984"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"PUb7rj1jLHgIo7Hwm3lvukBcGKDry7n7W2fa1xrz+zY=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-PUb7rj1jLHgIo7Hwm3lvukBcGKDry7n7W2fa1xrz+zY="}]},{"Route":"lib/bootstrap/dist/js/bootstrap.bundle.min.js.iovd86k7lj.map","AssetFile":"lib/bootstrap/dist/js/bootstrap.bundle.min.js.map.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000011499276"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"86961"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"u2o8ZZaXgiYQGBSiviq197ts6elMTLIFCM5h/r+YzpI=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"iovd86k7lj"},{"Name":"integrity","Value":"sha256-Xj4HYxZBQ7qqHKBwa2EAugRS+RHWzpcTtI49vgezUSU="},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.bundle.min.js.map"},{"Name":"original-resource","Value":"\"Xj4HYxZBQ7qqHKBwa2EAugRS+RHWzpcTtI49vgezUSU=\""}]},{"Route":"lib/bootstrap/dist/js/bootstrap.bundle.min.js.iovd86k7lj.map","AssetFile":"lib/bootstrap/dist/js/bootstrap.bundle.min.js.map","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"332090"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"Xj4HYxZBQ7qqHKBwa2EAugRS+RHWzpcTtI49vgezUSU=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:34:32 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"iovd86k7lj"},{"Name":"integrity","Value":"sha256-Xj4HYxZBQ7qqHKBwa2EAugRS+RHWzpcTtI49vgezUSU="},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.bundle.min.js.map"}]},{"Route":"lib/bootstrap/dist/js/bootstrap.bundle.min.js.iovd86k7lj.map.gz","AssetFile":"lib/bootstrap/dist/js/bootstrap.bundle.min.js.map.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"86961"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"u2o8ZZaXgiYQGBSiviq197ts6elMTLIFCM5h/r+YzpI=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"iovd86k7lj"},{"Name":"integrity","Value":"sha256-u2o8ZZaXgiYQGBSiviq197ts6elMTLIFCM5h/r+YzpI="},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.bundle.min.js.map.gz"}]},{"Route":"lib/bootstrap/dist/js/bootstrap.bundle.min.js.map","AssetFile":"lib/bootstrap/dist/js/bootstrap.bundle.min.js.map.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000011499276"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"86961"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"u2o8ZZaXgiYQGBSiviq197ts6elMTLIFCM5h/r+YzpI=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Xj4HYxZBQ7qqHKBwa2EAugRS+RHWzpcTtI49vgezUSU="},{"Name":"original-resource","Value":"\"Xj4HYxZBQ7qqHKBwa2EAugRS+RHWzpcTtI49vgezUSU=\""}]},{"Route":"lib/bootstrap/dist/js/bootstrap.bundle.min.js.map","AssetFile":"lib/bootstrap/dist/js/bootstrap.bundle.min.js.map","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"332090"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"Xj4HYxZBQ7qqHKBwa2EAugRS+RHWzpcTtI49vgezUSU=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:34:32 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Xj4HYxZBQ7qqHKBwa2EAugRS+RHWzpcTtI49vgezUSU="}]},{"Route":"lib/bootstrap/dist/js/bootstrap.bundle.min.js.map.gz","AssetFile":"lib/bootstrap/dist/js/bootstrap.bundle.min.js.map.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"86961"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"u2o8ZZaXgiYQGBSiviq197ts6elMTLIFCM5h/r+YzpI=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-u2o8ZZaXgiYQGBSiviq197ts6elMTLIFCM5h/r+YzpI="}]},{"Route":"lib/bootstrap/dist/js/bootstrap.esm.js","AssetFile":"lib/bootstrap/dist/js/bootstrap.esm.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000034659642"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"28851"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"wol+HTj/xiv1aZ5rAh91hRF83nnYHIOeqPJDujYZBV4=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-exiXZNJDwucXfuje3CbXPbuS6+Ery3z9sP+pgmvh8nA="},{"Name":"original-resource","Value":"\"exiXZNJDwucXfuje3CbXPbuS6+Ery3z9sP+pgmvh8nA=\""}]},{"Route":"lib/bootstrap/dist/js/bootstrap.esm.js","AssetFile":"lib/bootstrap/dist/js/bootstrap.esm.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"135829"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"exiXZNJDwucXfuje3CbXPbuS6+Ery3z9sP+pgmvh8nA=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:34:32 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-exiXZNJDwucXfuje3CbXPbuS6+Ery3z9sP+pgmvh8nA="}]},{"Route":"lib/bootstrap/dist/js/bootstrap.esm.js.gz","AssetFile":"lib/bootstrap/dist/js/bootstrap.esm.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"28851"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"wol+HTj/xiv1aZ5rAh91hRF83nnYHIOeqPJDujYZBV4=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-wol+HTj/xiv1aZ5rAh91hRF83nnYHIOeqPJDujYZBV4="}]},{"Route":"lib/bootstrap/dist/js/bootstrap.esm.js.kbrnm935zg.map","AssetFile":"lib/bootstrap/dist/js/bootstrap.esm.js.map.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000015592110"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"64134"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"FEVLoM8EBjBfNDxtN98NEdEJHpCjMxcAkjqPlv3oXEc=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"kbrnm935zg"},{"Name":"integrity","Value":"sha256-EPRLgpqWkahLxEn6CUjdM76RIYIw1xdHwTbeHssuj/4="},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.esm.js.map"},{"Name":"original-resource","Value":"\"EPRLgpqWkahLxEn6CUjdM76RIYIw1xdHwTbeHssuj/4=\""}]},{"Route":"lib/bootstrap/dist/js/bootstrap.esm.js.kbrnm935zg.map","AssetFile":"lib/bootstrap/dist/js/bootstrap.esm.js.map","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"305438"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"EPRLgpqWkahLxEn6CUjdM76RIYIw1xdHwTbeHssuj/4=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:34:32 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"kbrnm935zg"},{"Name":"integrity","Value":"sha256-EPRLgpqWkahLxEn6CUjdM76RIYIw1xdHwTbeHssuj/4="},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.esm.js.map"}]},{"Route":"lib/bootstrap/dist/js/bootstrap.esm.js.kbrnm935zg.map.gz","AssetFile":"lib/bootstrap/dist/js/bootstrap.esm.js.map.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"64134"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"FEVLoM8EBjBfNDxtN98NEdEJHpCjMxcAkjqPlv3oXEc=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"kbrnm935zg"},{"Name":"integrity","Value":"sha256-FEVLoM8EBjBfNDxtN98NEdEJHpCjMxcAkjqPlv3oXEc="},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.esm.js.map.gz"}]},{"Route":"lib/bootstrap/dist/js/bootstrap.esm.js.map","AssetFile":"lib/bootstrap/dist/js/bootstrap.esm.js.map.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000015592110"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"64134"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"FEVLoM8EBjBfNDxtN98NEdEJHpCjMxcAkjqPlv3oXEc=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-EPRLgpqWkahLxEn6CUjdM76RIYIw1xdHwTbeHssuj/4="},{"Name":"original-resource","Value":"\"EPRLgpqWkahLxEn6CUjdM76RIYIw1xdHwTbeHssuj/4=\""}]},{"Route":"lib/bootstrap/dist/js/bootstrap.esm.js.map","AssetFile":"lib/bootstrap/dist/js/bootstrap.esm.js.map","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"305438"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"EPRLgpqWkahLxEn6CUjdM76RIYIw1xdHwTbeHssuj/4=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:34:32 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-EPRLgpqWkahLxEn6CUjdM76RIYIw1xdHwTbeHssuj/4="}]},{"Route":"lib/bootstrap/dist/js/bootstrap.esm.js.map.gz","AssetFile":"lib/bootstrap/dist/js/bootstrap.esm.js.map.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"64134"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"FEVLoM8EBjBfNDxtN98NEdEJHpCjMxcAkjqPlv3oXEc=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-FEVLoM8EBjBfNDxtN98NEdEJHpCjMxcAkjqPlv3oXEc="}]},{"Route":"lib/bootstrap/dist/js/bootstrap.esm.min.jj8uyg4cgr.js","AssetFile":"lib/bootstrap/dist/js/bootstrap.esm.min.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000053659584"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"18635"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"WmNnoBgejwchZUYVA3o03QOAGOuMRS778DeXvhP6suo=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"jj8uyg4cgr"},{"Name":"integrity","Value":"sha256-QZdFT1ZNdly4rmgUBtXmXFS9BU1FTa+sPe6h794sFRQ="},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.esm.min.js"},{"Name":"original-resource","Value":"\"QZdFT1ZNdly4rmgUBtXmXFS9BU1FTa+sPe6h794sFRQ=\""}]},{"Route":"lib/bootstrap/dist/js/bootstrap.esm.min.jj8uyg4cgr.js","AssetFile":"lib/bootstrap/dist/js/bootstrap.esm.min.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"73935"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"QZdFT1ZNdly4rmgUBtXmXFS9BU1FTa+sPe6h794sFRQ=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:34:32 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"jj8uyg4cgr"},{"Name":"integrity","Value":"sha256-QZdFT1ZNdly4rmgUBtXmXFS9BU1FTa+sPe6h794sFRQ="},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.esm.min.js"}]},{"Route":"lib/bootstrap/dist/js/bootstrap.esm.min.jj8uyg4cgr.js.gz","AssetFile":"lib/bootstrap/dist/js/bootstrap.esm.min.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"18635"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"WmNnoBgejwchZUYVA3o03QOAGOuMRS778DeXvhP6suo=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"jj8uyg4cgr"},{"Name":"integrity","Value":"sha256-WmNnoBgejwchZUYVA3o03QOAGOuMRS778DeXvhP6suo="},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.esm.min.js.gz"}]},{"Route":"lib/bootstrap/dist/js/bootstrap.esm.min.js","AssetFile":"lib/bootstrap/dist/js/bootstrap.esm.min.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000053659584"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"18635"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"WmNnoBgejwchZUYVA3o03QOAGOuMRS778DeXvhP6suo=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-QZdFT1ZNdly4rmgUBtXmXFS9BU1FTa+sPe6h794sFRQ="},{"Name":"original-resource","Value":"\"QZdFT1ZNdly4rmgUBtXmXFS9BU1FTa+sPe6h794sFRQ=\""}]},{"Route":"lib/bootstrap/dist/js/bootstrap.esm.min.js","AssetFile":"lib/bootstrap/dist/js/bootstrap.esm.min.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"73935"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"QZdFT1ZNdly4rmgUBtXmXFS9BU1FTa+sPe6h794sFRQ=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:34:32 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-QZdFT1ZNdly4rmgUBtXmXFS9BU1FTa+sPe6h794sFRQ="}]},{"Route":"lib/bootstrap/dist/js/bootstrap.esm.min.js.gz","AssetFile":"lib/bootstrap/dist/js/bootstrap.esm.min.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"18635"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"WmNnoBgejwchZUYVA3o03QOAGOuMRS778DeXvhP6suo=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-WmNnoBgejwchZUYVA3o03QOAGOuMRS778DeXvhP6suo="}]},{"Route":"lib/bootstrap/dist/js/bootstrap.esm.min.js.map","AssetFile":"lib/bootstrap/dist/js/bootstrap.esm.min.js.map.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000017645709"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"56670"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"j6u/zn+GRIVR7DjCioj3tkq2zAKNpSIfRdlNSkhuWuM=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Tsbv8z6VlNgVET8xvz/yLo/v5iJHTAj2J4hkhjP1rHM="},{"Name":"original-resource","Value":"\"Tsbv8z6VlNgVET8xvz/yLo/v5iJHTAj2J4hkhjP1rHM=\""}]},{"Route":"lib/bootstrap/dist/js/bootstrap.esm.min.js.map","AssetFile":"lib/bootstrap/dist/js/bootstrap.esm.min.js.map","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"222455"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"Tsbv8z6VlNgVET8xvz/yLo/v5iJHTAj2J4hkhjP1rHM=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:34:32 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Tsbv8z6VlNgVET8xvz/yLo/v5iJHTAj2J4hkhjP1rHM="}]},{"Route":"lib/bootstrap/dist/js/bootstrap.esm.min.js.map.gz","AssetFile":"lib/bootstrap/dist/js/bootstrap.esm.min.js.map.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"56670"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"j6u/zn+GRIVR7DjCioj3tkq2zAKNpSIfRdlNSkhuWuM=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-j6u/zn+GRIVR7DjCioj3tkq2zAKNpSIfRdlNSkhuWuM="}]},{"Route":"lib/bootstrap/dist/js/bootstrap.esm.min.js.y7v9cxd14o.map","AssetFile":"lib/bootstrap/dist/js/bootstrap.esm.min.js.map.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000017645709"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"56670"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"j6u/zn+GRIVR7DjCioj3tkq2zAKNpSIfRdlNSkhuWuM=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"y7v9cxd14o"},{"Name":"integrity","Value":"sha256-Tsbv8z6VlNgVET8xvz/yLo/v5iJHTAj2J4hkhjP1rHM="},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.esm.min.js.map"},{"Name":"original-resource","Value":"\"Tsbv8z6VlNgVET8xvz/yLo/v5iJHTAj2J4hkhjP1rHM=\""}]},{"Route":"lib/bootstrap/dist/js/bootstrap.esm.min.js.y7v9cxd14o.map","AssetFile":"lib/bootstrap/dist/js/bootstrap.esm.min.js.map","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"222455"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"Tsbv8z6VlNgVET8xvz/yLo/v5iJHTAj2J4hkhjP1rHM=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:34:32 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"y7v9cxd14o"},{"Name":"integrity","Value":"sha256-Tsbv8z6VlNgVET8xvz/yLo/v5iJHTAj2J4hkhjP1rHM="},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.esm.min.js.map"}]},{"Route":"lib/bootstrap/dist/js/bootstrap.esm.min.js.y7v9cxd14o.map.gz","AssetFile":"lib/bootstrap/dist/js/bootstrap.esm.min.js.map.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"56670"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"j6u/zn+GRIVR7DjCioj3tkq2zAKNpSIfRdlNSkhuWuM=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"y7v9cxd14o"},{"Name":"integrity","Value":"sha256-j6u/zn+GRIVR7DjCioj3tkq2zAKNpSIfRdlNSkhuWuM="},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.esm.min.js.map.gz"}]},{"Route":"lib/bootstrap/dist/js/bootstrap.esm.vr1egmr9el.js","AssetFile":"lib/bootstrap/dist/js/bootstrap.esm.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000034659642"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"28851"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"wol+HTj/xiv1aZ5rAh91hRF83nnYHIOeqPJDujYZBV4=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"vr1egmr9el"},{"Name":"integrity","Value":"sha256-exiXZNJDwucXfuje3CbXPbuS6+Ery3z9sP+pgmvh8nA="},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.esm.js"},{"Name":"original-resource","Value":"\"exiXZNJDwucXfuje3CbXPbuS6+Ery3z9sP+pgmvh8nA=\""}]},{"Route":"lib/bootstrap/dist/js/bootstrap.esm.vr1egmr9el.js","AssetFile":"lib/bootstrap/dist/js/bootstrap.esm.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"135829"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"exiXZNJDwucXfuje3CbXPbuS6+Ery3z9sP+pgmvh8nA=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:34:32 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"vr1egmr9el"},{"Name":"integrity","Value":"sha256-exiXZNJDwucXfuje3CbXPbuS6+Ery3z9sP+pgmvh8nA="},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.esm.js"}]},{"Route":"lib/bootstrap/dist/js/bootstrap.esm.vr1egmr9el.js.gz","AssetFile":"lib/bootstrap/dist/js/bootstrap.esm.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"28851"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"wol+HTj/xiv1aZ5rAh91hRF83nnYHIOeqPJDujYZBV4=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"vr1egmr9el"},{"Name":"integrity","Value":"sha256-wol+HTj/xiv1aZ5rAh91hRF83nnYHIOeqPJDujYZBV4="},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.esm.js.gz"}]},{"Route":"lib/bootstrap/dist/js/bootstrap.js","AssetFile":"lib/bootstrap/dist/js/bootstrap.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000033819203"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"29568"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"vxTpQ/skdGaK1fWKJ6bpuKiCsKR5FwPOZXzuVrUcz58=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-+UW802wgVfnjaSbdwyHLlU7AVplb0WToOlvN1CnzIac="},{"Name":"original-resource","Value":"\"+UW802wgVfnjaSbdwyHLlU7AVplb0WToOlvN1CnzIac=\""}]},{"Route":"lib/bootstrap/dist/js/bootstrap.js","AssetFile":"lib/bootstrap/dist/js/bootstrap.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"145401"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"+UW802wgVfnjaSbdwyHLlU7AVplb0WToOlvN1CnzIac=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:34:32 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-+UW802wgVfnjaSbdwyHLlU7AVplb0WToOlvN1CnzIac="}]},{"Route":"lib/bootstrap/dist/js/bootstrap.js.gz","AssetFile":"lib/bootstrap/dist/js/bootstrap.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"29568"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"vxTpQ/skdGaK1fWKJ6bpuKiCsKR5FwPOZXzuVrUcz58=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-vxTpQ/skdGaK1fWKJ6bpuKiCsKR5FwPOZXzuVrUcz58="}]},{"Route":"lib/bootstrap/dist/js/bootstrap.js.h1s4sie4z3.map","AssetFile":"lib/bootstrap/dist/js/bootstrap.js.map.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000015519516"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"64434"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"6GxMyK5YAexwvliYNqeiH6oCqjjSdf0iOFokuntpNcU=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"h1s4sie4z3"},{"Name":"integrity","Value":"sha256-9Wr7Hxe8gCJDoIHh5xP29ldXvC3kN2GkifQj9c8vYx4="},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.js.map"},{"Name":"original-resource","Value":"\"9Wr7Hxe8gCJDoIHh5xP29ldXvC3kN2GkifQj9c8vYx4=\""}]},{"Route":"lib/bootstrap/dist/js/bootstrap.js.h1s4sie4z3.map","AssetFile":"lib/bootstrap/dist/js/bootstrap.js.map","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"306606"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"9Wr7Hxe8gCJDoIHh5xP29ldXvC3kN2GkifQj9c8vYx4=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:34:32 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"h1s4sie4z3"},{"Name":"integrity","Value":"sha256-9Wr7Hxe8gCJDoIHh5xP29ldXvC3kN2GkifQj9c8vYx4="},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.js.map"}]},{"Route":"lib/bootstrap/dist/js/bootstrap.js.h1s4sie4z3.map.gz","AssetFile":"lib/bootstrap/dist/js/bootstrap.js.map.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"64434"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"6GxMyK5YAexwvliYNqeiH6oCqjjSdf0iOFokuntpNcU=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"h1s4sie4z3"},{"Name":"integrity","Value":"sha256-6GxMyK5YAexwvliYNqeiH6oCqjjSdf0iOFokuntpNcU="},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.js.map.gz"}]},{"Route":"lib/bootstrap/dist/js/bootstrap.js.map","AssetFile":"lib/bootstrap/dist/js/bootstrap.js.map.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000015519516"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"64434"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"6GxMyK5YAexwvliYNqeiH6oCqjjSdf0iOFokuntpNcU=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-9Wr7Hxe8gCJDoIHh5xP29ldXvC3kN2GkifQj9c8vYx4="},{"Name":"original-resource","Value":"\"9Wr7Hxe8gCJDoIHh5xP29ldXvC3kN2GkifQj9c8vYx4=\""}]},{"Route":"lib/bootstrap/dist/js/bootstrap.js.map","AssetFile":"lib/bootstrap/dist/js/bootstrap.js.map","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"306606"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"9Wr7Hxe8gCJDoIHh5xP29ldXvC3kN2GkifQj9c8vYx4=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:34:32 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-9Wr7Hxe8gCJDoIHh5xP29ldXvC3kN2GkifQj9c8vYx4="}]},{"Route":"lib/bootstrap/dist/js/bootstrap.js.map.gz","AssetFile":"lib/bootstrap/dist/js/bootstrap.js.map.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"64434"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"6GxMyK5YAexwvliYNqeiH6oCqjjSdf0iOFokuntpNcU=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-6GxMyK5YAexwvliYNqeiH6oCqjjSdf0iOFokuntpNcU="}]},{"Route":"lib/bootstrap/dist/js/bootstrap.min.63fj8s7r0e.js","AssetFile":"lib/bootstrap/dist/js/bootstrap.min.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000060106990"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"16636"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"bIPgOT88ycSklHWxEzFQVPvNsgNbss3QQbyTqHho4PA=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"63fj8s7r0e"},{"Name":"integrity","Value":"sha256-3gQJhtmj7YnV1fmtbVcnAV6eI4ws0Tr48bVZCThtCGQ="},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.min.js"},{"Name":"original-resource","Value":"\"3gQJhtmj7YnV1fmtbVcnAV6eI4ws0Tr48bVZCThtCGQ=\""}]},{"Route":"lib/bootstrap/dist/js/bootstrap.min.63fj8s7r0e.js","AssetFile":"lib/bootstrap/dist/js/bootstrap.min.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"60635"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"3gQJhtmj7YnV1fmtbVcnAV6eI4ws0Tr48bVZCThtCGQ=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:34:32 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"63fj8s7r0e"},{"Name":"integrity","Value":"sha256-3gQJhtmj7YnV1fmtbVcnAV6eI4ws0Tr48bVZCThtCGQ="},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.min.js"}]},{"Route":"lib/bootstrap/dist/js/bootstrap.min.63fj8s7r0e.js.gz","AssetFile":"lib/bootstrap/dist/js/bootstrap.min.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"16636"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"bIPgOT88ycSklHWxEzFQVPvNsgNbss3QQbyTqHho4PA=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"63fj8s7r0e"},{"Name":"integrity","Value":"sha256-bIPgOT88ycSklHWxEzFQVPvNsgNbss3QQbyTqHho4PA="},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.min.js.gz"}]},{"Route":"lib/bootstrap/dist/js/bootstrap.min.js","AssetFile":"lib/bootstrap/dist/js/bootstrap.min.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000060106990"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"16636"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"bIPgOT88ycSklHWxEzFQVPvNsgNbss3QQbyTqHho4PA=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-3gQJhtmj7YnV1fmtbVcnAV6eI4ws0Tr48bVZCThtCGQ="},{"Name":"original-resource","Value":"\"3gQJhtmj7YnV1fmtbVcnAV6eI4ws0Tr48bVZCThtCGQ=\""}]},{"Route":"lib/bootstrap/dist/js/bootstrap.min.js","AssetFile":"lib/bootstrap/dist/js/bootstrap.min.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"60635"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"3gQJhtmj7YnV1fmtbVcnAV6eI4ws0Tr48bVZCThtCGQ=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:34:32 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-3gQJhtmj7YnV1fmtbVcnAV6eI4ws0Tr48bVZCThtCGQ="}]},{"Route":"lib/bootstrap/dist/js/bootstrap.min.js.0j3bgjxly4.map","AssetFile":"lib/bootstrap/dist/js/bootstrap.min.js.map.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000017904782"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"55850"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"jqz3zWDVmly0HcVfO6RQ1Ew/6DCbF9EVmEe2DJdcW6Y=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"0j3bgjxly4"},{"Name":"integrity","Value":"sha256-ZI01e/ns473GKvACG4McggJdxvFfFIw4xspwQiG8Ye4="},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.min.js.map"},{"Name":"original-resource","Value":"\"ZI01e/ns473GKvACG4McggJdxvFfFIw4xspwQiG8Ye4=\""}]},{"Route":"lib/bootstrap/dist/js/bootstrap.min.js.0j3bgjxly4.map","AssetFile":"lib/bootstrap/dist/js/bootstrap.min.js.map","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"220561"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"ZI01e/ns473GKvACG4McggJdxvFfFIw4xspwQiG8Ye4=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:34:32 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"0j3bgjxly4"},{"Name":"integrity","Value":"sha256-ZI01e/ns473GKvACG4McggJdxvFfFIw4xspwQiG8Ye4="},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.min.js.map"}]},{"Route":"lib/bootstrap/dist/js/bootstrap.min.js.0j3bgjxly4.map.gz","AssetFile":"lib/bootstrap/dist/js/bootstrap.min.js.map.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"55850"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"jqz3zWDVmly0HcVfO6RQ1Ew/6DCbF9EVmEe2DJdcW6Y=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"0j3bgjxly4"},{"Name":"integrity","Value":"sha256-jqz3zWDVmly0HcVfO6RQ1Ew/6DCbF9EVmEe2DJdcW6Y="},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.min.js.map.gz"}]},{"Route":"lib/bootstrap/dist/js/bootstrap.min.js.gz","AssetFile":"lib/bootstrap/dist/js/bootstrap.min.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"16636"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"bIPgOT88ycSklHWxEzFQVPvNsgNbss3QQbyTqHho4PA=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-bIPgOT88ycSklHWxEzFQVPvNsgNbss3QQbyTqHho4PA="}]},{"Route":"lib/bootstrap/dist/js/bootstrap.min.js.map","AssetFile":"lib/bootstrap/dist/js/bootstrap.min.js.map.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000017904782"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"55850"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"jqz3zWDVmly0HcVfO6RQ1Ew/6DCbF9EVmEe2DJdcW6Y=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-ZI01e/ns473GKvACG4McggJdxvFfFIw4xspwQiG8Ye4="},{"Name":"original-resource","Value":"\"ZI01e/ns473GKvACG4McggJdxvFfFIw4xspwQiG8Ye4=\""}]},{"Route":"lib/bootstrap/dist/js/bootstrap.min.js.map","AssetFile":"lib/bootstrap/dist/js/bootstrap.min.js.map","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"220561"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"ZI01e/ns473GKvACG4McggJdxvFfFIw4xspwQiG8Ye4=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:34:32 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-ZI01e/ns473GKvACG4McggJdxvFfFIw4xspwQiG8Ye4="}]},{"Route":"lib/bootstrap/dist/js/bootstrap.min.js.map.gz","AssetFile":"lib/bootstrap/dist/js/bootstrap.min.js.map.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"55850"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"jqz3zWDVmly0HcVfO6RQ1Ew/6DCbF9EVmEe2DJdcW6Y=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-jqz3zWDVmly0HcVfO6RQ1Ew/6DCbF9EVmEe2DJdcW6Y="}]},{"Route":"lib/bootstrap/dist/js/bootstrap.notf2xhcfb.js","AssetFile":"lib/bootstrap/dist/js/bootstrap.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000033819203"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"29568"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"vxTpQ/skdGaK1fWKJ6bpuKiCsKR5FwPOZXzuVrUcz58=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"notf2xhcfb"},{"Name":"integrity","Value":"sha256-+UW802wgVfnjaSbdwyHLlU7AVplb0WToOlvN1CnzIac="},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.js"},{"Name":"original-resource","Value":"\"+UW802wgVfnjaSbdwyHLlU7AVplb0WToOlvN1CnzIac=\""}]},{"Route":"lib/bootstrap/dist/js/bootstrap.notf2xhcfb.js","AssetFile":"lib/bootstrap/dist/js/bootstrap.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"145401"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"+UW802wgVfnjaSbdwyHLlU7AVplb0WToOlvN1CnzIac=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:34:32 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"notf2xhcfb"},{"Name":"integrity","Value":"sha256-+UW802wgVfnjaSbdwyHLlU7AVplb0WToOlvN1CnzIac="},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.js"}]},{"Route":"lib/bootstrap/dist/js/bootstrap.notf2xhcfb.js.gz","AssetFile":"lib/bootstrap/dist/js/bootstrap.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"29568"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"vxTpQ/skdGaK1fWKJ6bpuKiCsKR5FwPOZXzuVrUcz58=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"notf2xhcfb"},{"Name":"integrity","Value":"sha256-vxTpQ/skdGaK1fWKJ6bpuKiCsKR5FwPOZXzuVrUcz58="},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.js.gz"}]}]} \ No newline at end of file diff --git a/src/dotnet/QuantEngine.Web/bin/Debug/net10.0/QuantEngine.Web.staticwebassets.runtime.json b/src/dotnet/QuantEngine.Web/bin/Debug/net10.0/QuantEngine.Web.staticwebassets.runtime.json new file mode 100644 index 0000000..351d696 --- /dev/null +++ b/src/dotnet/QuantEngine.Web/bin/Debug/net10.0/QuantEngine.Web.staticwebassets.runtime.json @@ -0,0 +1 @@ +{"ContentRoots":["C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\","C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Debug\\net10.0\\compressed\\","C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Debug\\net10.0\\scopedcss\\bundle\\","C:\\Users\\kjh20\\.nuget\\packages\\microsoft.aspnetcore.app.internal.assets\\10.0.0\\_framework\\","C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\"],"Root":{"Children":{"app.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"app.css"},"Patterns":null},"app.css.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"q2w3mddmwi-{0}-4c8rkwezul-4c8rkwezul.gz"},"Patterns":null},"favicon.png":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"favicon.png"},"Patterns":null},"QuantEngine.Web.styles.css":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"QuantEngine.Web.styles.css"},"Patterns":null},"QuantEngine.Web.styles.css.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"b7jn6yc0gz-{0}-yi314np04p-yi314np04p.gz"},"Patterns":null},"_framework":{"Children":{"blazor.server.js":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"blazor.server.js"},"Patterns":null},"blazor.server.js.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"dym80g6kqp-{0}-u1n4jc5v46-u1n4jc5v46.gz"},"Patterns":null},"blazor.web.js":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"blazor.web.js"},"Patterns":null},"blazor.web.js.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"nr5locadir-{0}-j8lzlu28q6-j8lzlu28q6.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"Components":{"Children":{"Layout":{"Children":{"ReconnectModal.razor.js":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"Components/Layout/ReconnectModal.razor.js"},"Patterns":null},"ReconnectModal.razor.js.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"t9yb5ynpxl-{0}-13ja33weya-13ja33weya.gz"},"Patterns":null}},"Asset":null,"Patterns":null}},"Asset":null,"Patterns":null},"lib":{"Children":{"bootstrap":{"Children":{"dist":{"Children":{"css":{"Children":{"bootstrap-grid.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap-grid.css"},"Patterns":null},"bootstrap-grid.css.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"dgr8mv739g-{0}-bqjiyaj88i-bqjiyaj88i.gz"},"Patterns":null},"bootstrap-grid.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap-grid.css.map"},"Patterns":null},"bootstrap-grid.css.map.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"l0f1c41wbh-{0}-c2jlpeoesf-c2jlpeoesf.gz"},"Patterns":null},"bootstrap-grid.min.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap-grid.min.css"},"Patterns":null},"bootstrap-grid.min.css.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"ny3xbgedo0-{0}-erw9l3u2r3-erw9l3u2r3.gz"},"Patterns":null},"bootstrap-grid.min.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap-grid.min.css.map"},"Patterns":null},"bootstrap-grid.min.css.map.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"yyzux970us-{0}-aexeepp0ev-aexeepp0ev.gz"},"Patterns":null},"bootstrap-grid.rtl.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap-grid.rtl.css"},"Patterns":null},"bootstrap-grid.rtl.css.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"s8tfmvcl6l-{0}-d7shbmvgxk-d7shbmvgxk.gz"},"Patterns":null},"bootstrap-grid.rtl.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap-grid.rtl.css.map"},"Patterns":null},"bootstrap-grid.rtl.css.map.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"buy0lgnna4-{0}-ausgxo2sd3-ausgxo2sd3.gz"},"Patterns":null},"bootstrap-grid.rtl.min.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css"},"Patterns":null},"bootstrap-grid.rtl.min.css.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"rftpckz71e-{0}-k8d9w2qqmf-k8d9w2qqmf.gz"},"Patterns":null},"bootstrap-grid.rtl.min.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.map"},"Patterns":null},"bootstrap-grid.rtl.min.css.map.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"1xufxwh45d-{0}-cosvhxvwiu-cosvhxvwiu.gz"},"Patterns":null},"bootstrap-reboot.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap-reboot.css"},"Patterns":null},"bootstrap-reboot.css.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"110gjqadz3-{0}-ub07r2b239-ub07r2b239.gz"},"Patterns":null},"bootstrap-reboot.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap-reboot.css.map"},"Patterns":null},"bootstrap-reboot.css.map.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"moveir2wlt-{0}-fvhpjtyr6v-fvhpjtyr6v.gz"},"Patterns":null},"bootstrap-reboot.min.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap-reboot.min.css"},"Patterns":null},"bootstrap-reboot.min.css.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"i5gc3220r3-{0}-b7pk76d08c-b7pk76d08c.gz"},"Patterns":null},"bootstrap-reboot.min.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap-reboot.min.css.map"},"Patterns":null},"bootstrap-reboot.min.css.map.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"xhunqdkvqb-{0}-fsbi9cje9m-fsbi9cje9m.gz"},"Patterns":null},"bootstrap-reboot.rtl.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.css"},"Patterns":null},"bootstrap-reboot.rtl.css.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"gomvvqnjlm-{0}-rzd6atqjts-rzd6atqjts.gz"},"Patterns":null},"bootstrap-reboot.rtl.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.map"},"Patterns":null},"bootstrap-reboot.rtl.css.map.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"c34v41vs4l-{0}-ee0r1s7dh0-ee0r1s7dh0.gz"},"Patterns":null},"bootstrap-reboot.rtl.min.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css"},"Patterns":null},"bootstrap-reboot.rtl.min.css.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"0p7lrldjgj-{0}-dxx9fxp4il-dxx9fxp4il.gz"},"Patterns":null},"bootstrap-reboot.rtl.min.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.map"},"Patterns":null},"bootstrap-reboot.rtl.min.css.map.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"0auc0xnlsy-{0}-jd9uben2k1-jd9uben2k1.gz"},"Patterns":null},"bootstrap-utilities.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap-utilities.css"},"Patterns":null},"bootstrap-utilities.css.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"pbeu27ik9w-{0}-khv3u5hwcm-khv3u5hwcm.gz"},"Patterns":null},"bootstrap-utilities.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap-utilities.css.map"},"Patterns":null},"bootstrap-utilities.css.map.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"79raj0bcrr-{0}-r4e9w2rdcm-r4e9w2rdcm.gz"},"Patterns":null},"bootstrap-utilities.min.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap-utilities.min.css"},"Patterns":null},"bootstrap-utilities.min.css.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"jqrauj2svw-{0}-lcd1t2u6c8-lcd1t2u6c8.gz"},"Patterns":null},"bootstrap-utilities.min.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap-utilities.min.css.map"},"Patterns":null},"bootstrap-utilities.min.css.map.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"pj5n2mkkzw-{0}-c2oey78nd0-c2oey78nd0.gz"},"Patterns":null},"bootstrap-utilities.rtl.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.css"},"Patterns":null},"bootstrap-utilities.rtl.css.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"dt9lb9me9i-{0}-tdbxkamptv-tdbxkamptv.gz"},"Patterns":null},"bootstrap-utilities.rtl.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.map"},"Patterns":null},"bootstrap-utilities.rtl.css.map.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"lwh7ckeki7-{0}-j5mq2jizvt-j5mq2jizvt.gz"},"Patterns":null},"bootstrap-utilities.rtl.min.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css"},"Patterns":null},"bootstrap-utilities.rtl.min.css.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"4cblaxq6jh-{0}-06098lyss8-06098lyss8.gz"},"Patterns":null},"bootstrap-utilities.rtl.min.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.map"},"Patterns":null},"bootstrap-utilities.rtl.min.css.map.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"44s2eqp64d-{0}-nvvlpmu67g-nvvlpmu67g.gz"},"Patterns":null},"bootstrap.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap.css"},"Patterns":null},"bootstrap.css.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"gcxof6xqvd-{0}-s35ty4nyc5-s35ty4nyc5.gz"},"Patterns":null},"bootstrap.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap.css.map"},"Patterns":null},"bootstrap.css.map.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"z9wv7fs72k-{0}-pj5nd1wqec-pj5nd1wqec.gz"},"Patterns":null},"bootstrap.min.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap.min.css"},"Patterns":null},"bootstrap.min.css.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"4072jq1i2h-{0}-46ein0sx1k-46ein0sx1k.gz"},"Patterns":null},"bootstrap.min.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap.min.css.map"},"Patterns":null},"bootstrap.min.css.map.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"a4eqfiv3ub-{0}-v0zj4ognzu-v0zj4ognzu.gz"},"Patterns":null},"bootstrap.rtl.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap.rtl.css"},"Patterns":null},"bootstrap.rtl.css.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"rg0bjkw6wb-{0}-37tfw0ft22-37tfw0ft22.gz"},"Patterns":null},"bootstrap.rtl.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap.rtl.css.map"},"Patterns":null},"bootstrap.rtl.css.map.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"jomvpxly64-{0}-hrwsygsryq-hrwsygsryq.gz"},"Patterns":null},"bootstrap.rtl.min.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap.rtl.min.css"},"Patterns":null},"bootstrap.rtl.min.css.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"u4l44l4mup-{0}-pk9g2wxc8p-pk9g2wxc8p.gz"},"Patterns":null},"bootstrap.rtl.min.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap.rtl.min.css.map"},"Patterns":null},"bootstrap.rtl.min.css.map.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"s45yklcy5s-{0}-ft3s53vfgj-ft3s53vfgj.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"js":{"Children":{"bootstrap.bundle.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/js/bootstrap.bundle.js"},"Patterns":null},"bootstrap.bundle.js.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"ryegp6ubqi-{0}-6cfz1n2cew-6cfz1n2cew.gz"},"Patterns":null},"bootstrap.bundle.js.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/js/bootstrap.bundle.js.map"},"Patterns":null},"bootstrap.bundle.js.map.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"gfm26p5c1q-{0}-6pdc2jztkx-6pdc2jztkx.gz"},"Patterns":null},"bootstrap.bundle.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/js/bootstrap.bundle.min.js"},"Patterns":null},"bootstrap.bundle.min.js.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"wh1z5habmz-{0}-493y06b0oq-493y06b0oq.gz"},"Patterns":null},"bootstrap.bundle.min.js.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/js/bootstrap.bundle.min.js.map"},"Patterns":null},"bootstrap.bundle.min.js.map.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"oog3rser0x-{0}-iovd86k7lj-iovd86k7lj.gz"},"Patterns":null},"bootstrap.esm.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/js/bootstrap.esm.js"},"Patterns":null},"bootstrap.esm.js.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"dd5v02aqjc-{0}-vr1egmr9el-vr1egmr9el.gz"},"Patterns":null},"bootstrap.esm.js.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/js/bootstrap.esm.js.map"},"Patterns":null},"bootstrap.esm.js.map.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"61rmegrlmv-{0}-kbrnm935zg-kbrnm935zg.gz"},"Patterns":null},"bootstrap.esm.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/js/bootstrap.esm.min.js"},"Patterns":null},"bootstrap.esm.min.js.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"0x3oeluflx-{0}-jj8uyg4cgr-jj8uyg4cgr.gz"},"Patterns":null},"bootstrap.esm.min.js.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/js/bootstrap.esm.min.js.map"},"Patterns":null},"bootstrap.esm.min.js.map.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"h7pf8rqo63-{0}-y7v9cxd14o-y7v9cxd14o.gz"},"Patterns":null},"bootstrap.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/js/bootstrap.js"},"Patterns":null},"bootstrap.js.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"a1937s5xj1-{0}-notf2xhcfb-notf2xhcfb.gz"},"Patterns":null},"bootstrap.js.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/js/bootstrap.js.map"},"Patterns":null},"bootstrap.js.map.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"a7rq2yiqop-{0}-h1s4sie4z3-h1s4sie4z3.gz"},"Patterns":null},"bootstrap.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/js/bootstrap.min.js"},"Patterns":null},"bootstrap.min.js.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"ykh8zi7pka-{0}-63fj8s7r0e-63fj8s7r0e.gz"},"Patterns":null},"bootstrap.min.js.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/js/bootstrap.min.js.map"},"Patterns":null},"bootstrap.min.js.map.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"8q9g0t5yrl-{0}-0j3bgjxly4-0j3bgjxly4.gz"},"Patterns":null}},"Asset":null,"Patterns":null}},"Asset":null,"Patterns":null}},"Asset":null,"Patterns":null}},"Asset":null,"Patterns":null}},"Asset":null,"Patterns":[{"ContentRootIndex":0,"Pattern":"**","Depth":0}]}} \ No newline at end of file diff --git a/src/dotnet/QuantEngine.Web/bin/Debug/net10.0/appsettings.Development.json b/src/dotnet/QuantEngine.Web/bin/Debug/net10.0/appsettings.Development.json new file mode 100644 index 0000000..0c208ae --- /dev/null +++ b/src/dotnet/QuantEngine.Web/bin/Debug/net10.0/appsettings.Development.json @@ -0,0 +1,8 @@ +{ + "Logging": { + "LogLevel": { + "Default": "Information", + "Microsoft.AspNetCore": "Warning" + } + } +} diff --git a/src/dotnet/QuantEngine.Web/bin/Debug/net10.0/appsettings.json b/src/dotnet/QuantEngine.Web/bin/Debug/net10.0/appsettings.json new file mode 100644 index 0000000..10f68b8 --- /dev/null +++ b/src/dotnet/QuantEngine.Web/bin/Debug/net10.0/appsettings.json @@ -0,0 +1,9 @@ +{ + "Logging": { + "LogLevel": { + "Default": "Information", + "Microsoft.AspNetCore": "Warning" + } + }, + "AllowedHosts": "*" +} diff --git a/src/dotnet/QuantEngine.Web/obj/Debug/net10.0/.NETCoreApp,Version=v10.0.AssemblyAttributes.cs b/src/dotnet/QuantEngine.Web/obj/Debug/net10.0/.NETCoreApp,Version=v10.0.AssemblyAttributes.cs new file mode 100644 index 0000000..925b135 --- /dev/null +++ b/src/dotnet/QuantEngine.Web/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/src/dotnet/QuantEngine.Web/obj/Debug/net10.0/EmbeddedAttribute.cs b/src/dotnet/QuantEngine.Web/obj/Debug/net10.0/EmbeddedAttribute.cs new file mode 100644 index 0000000..1931537 --- /dev/null +++ b/src/dotnet/QuantEngine.Web/obj/Debug/net10.0/EmbeddedAttribute.cs @@ -0,0 +1,7 @@ +// +namespace Microsoft.CodeAnalysis +{ +internal sealed partial class EmbeddedAttribute : global::System.Attribute +{ +} +} diff --git a/src/dotnet/QuantEngine.Web/obj/Debug/net10.0/QuantEng.C85672E0.Up2Date b/src/dotnet/QuantEngine.Web/obj/Debug/net10.0/QuantEng.C85672E0.Up2Date new file mode 100644 index 0000000..e69de29 diff --git a/src/dotnet/QuantEngine.Web/obj/Debug/net10.0/QuantEngine.Web.AssemblyInfo.cs b/src/dotnet/QuantEngine.Web/obj/Debug/net10.0/QuantEngine.Web.AssemblyInfo.cs new file mode 100644 index 0000000..48be43f --- /dev/null +++ b/src/dotnet/QuantEngine.Web/obj/Debug/net10.0/QuantEngine.Web.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("QuantEngine.Web")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+9abb8d3bc31eb38d5c27cbd3ca734da4eeec9609")] +[assembly: System.Reflection.AssemblyProductAttribute("QuantEngine.Web")] +[assembly: System.Reflection.AssemblyTitleAttribute("QuantEngine.Web")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] + +// MSBuild WriteCodeFragment 클래스에서 생성되었습니다. + diff --git a/src/dotnet/QuantEngine.Web/obj/Debug/net10.0/QuantEngine.Web.AssemblyInfoInputs.cache b/src/dotnet/QuantEngine.Web/obj/Debug/net10.0/QuantEngine.Web.AssemblyInfoInputs.cache new file mode 100644 index 0000000..e7c6bc5 --- /dev/null +++ b/src/dotnet/QuantEngine.Web/obj/Debug/net10.0/QuantEngine.Web.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +69636524d965e560a3a3992f665eaf8ed2d29cdf3edd5c42b638668baa82df4d diff --git a/src/dotnet/QuantEngine.Web/obj/Debug/net10.0/QuantEngine.Web.GeneratedMSBuildEditorConfig.editorconfig b/src/dotnet/QuantEngine.Web/obj/Debug/net10.0/QuantEngine.Web.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..0fb6941 --- /dev/null +++ b/src/dotnet/QuantEngine.Web/obj/Debug/net10.0/QuantEngine.Web.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,71 @@ +is_global = true +build_property.TargetFramework = net10.0 +build_property.TargetFrameworkIdentifier = .NETCoreApp +build_property.TargetFrameworkVersion = v10.0 +build_property.TargetPlatformMinVersion = +build_property.UsingMicrosoftNETSdkWeb = true +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property.EnforceExtendedAnalyzerRules = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = QuantEngine.Web +build_property.RootNamespace = QuantEngine.Web +build_property.ProjectDir = C:\Temp\data_feed\src\dotnet\QuantEngine.Web\ +build_property.EnableComHosting = +build_property.EnableGeneratedComInterfaceComImportInterop = +build_property.RazorLangVersion = 9.0 +build_property.SupportLocalizedComponentNames = +build_property.GenerateRazorMetadataSourceChecksumAttributes = +build_property.MSBuildProjectDirectory = C:\Temp\data_feed\src\dotnet\QuantEngine.Web +build_property._RazorSourceGeneratorDebug = +build_property.EffectiveAnalysisLevelStyle = 10.0 +build_property.EnableCodeStyleSeverity = + +[C:/Temp/data_feed/src/dotnet/QuantEngine.Web/Components/App.razor] +build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50c1xBcHAucmF6b3I= +build_metadata.AdditionalFiles.CssScope = + +[C:/Temp/data_feed/src/dotnet/QuantEngine.Web/Components/Pages/Counter.razor] +build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50c1xQYWdlc1xDb3VudGVyLnJhem9y +build_metadata.AdditionalFiles.CssScope = + +[C:/Temp/data_feed/src/dotnet/QuantEngine.Web/Components/Pages/Dashboard.razor] +build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50c1xQYWdlc1xEYXNoYm9hcmQucmF6b3I= +build_metadata.AdditionalFiles.CssScope = + +[C:/Temp/data_feed/src/dotnet/QuantEngine.Web/Components/Pages/Error.razor] +build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50c1xQYWdlc1xFcnJvci5yYXpvcg== +build_metadata.AdditionalFiles.CssScope = + +[C:/Temp/data_feed/src/dotnet/QuantEngine.Web/Components/Pages/Home.razor] +build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50c1xQYWdlc1xIb21lLnJhem9y +build_metadata.AdditionalFiles.CssScope = + +[C:/Temp/data_feed/src/dotnet/QuantEngine.Web/Components/Pages/NotFound.razor] +build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50c1xQYWdlc1xOb3RGb3VuZC5yYXpvcg== +build_metadata.AdditionalFiles.CssScope = + +[C:/Temp/data_feed/src/dotnet/QuantEngine.Web/Components/Pages/Weather.razor] +build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50c1xQYWdlc1xXZWF0aGVyLnJhem9y +build_metadata.AdditionalFiles.CssScope = + +[C:/Temp/data_feed/src/dotnet/QuantEngine.Web/Components/Routes.razor] +build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50c1xSb3V0ZXMucmF6b3I= +build_metadata.AdditionalFiles.CssScope = + +[C:/Temp/data_feed/src/dotnet/QuantEngine.Web/Components/_Imports.razor] +build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50c1xfSW1wb3J0cy5yYXpvcg== +build_metadata.AdditionalFiles.CssScope = + +[C:/Temp/data_feed/src/dotnet/QuantEngine.Web/Components/Layout/MainLayout.razor] +build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50c1xMYXlvdXRcTWFpbkxheW91dC5yYXpvcg== +build_metadata.AdditionalFiles.CssScope = b-d6y8adeyxc + +[C:/Temp/data_feed/src/dotnet/QuantEngine.Web/Components/Layout/NavMenu.razor] +build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50c1xMYXlvdXRcTmF2TWVudS5yYXpvcg== +build_metadata.AdditionalFiles.CssScope = b-9gr5lv177o + +[C:/Temp/data_feed/src/dotnet/QuantEngine.Web/Components/Layout/ReconnectModal.razor] +build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50c1xMYXlvdXRcUmVjb25uZWN0TW9kYWwucmF6b3I= +build_metadata.AdditionalFiles.CssScope = b-9dgxcj10me diff --git a/src/dotnet/QuantEngine.Web/obj/Debug/net10.0/QuantEngine.Web.GlobalUsings.g.cs b/src/dotnet/QuantEngine.Web/obj/Debug/net10.0/QuantEngine.Web.GlobalUsings.g.cs new file mode 100644 index 0000000..69a3c68 --- /dev/null +++ b/src/dotnet/QuantEngine.Web/obj/Debug/net10.0/QuantEngine.Web.GlobalUsings.g.cs @@ -0,0 +1,18 @@ +// +global using Microsoft.AspNetCore.Builder; +global using Microsoft.AspNetCore.Hosting; +global using Microsoft.AspNetCore.Http; +global using Microsoft.AspNetCore.Routing; +global using Microsoft.Extensions.Configuration; +global using Microsoft.Extensions.DependencyInjection; +global using Microsoft.Extensions.Hosting; +global using Microsoft.Extensions.Logging; +global using Microsoft.Extensions.Validation.Embedded; +global using System; +global using System.Collections.Generic; +global using System.IO; +global using System.Linq; +global using System.Net.Http; +global using System.Net.Http.Json; +global using System.Threading; +global using System.Threading.Tasks; diff --git a/src/dotnet/QuantEngine.Web/obj/Debug/net10.0/QuantEngine.Web.MvcApplicationPartsAssemblyInfo.cache b/src/dotnet/QuantEngine.Web/obj/Debug/net10.0/QuantEngine.Web.MvcApplicationPartsAssemblyInfo.cache new file mode 100644 index 0000000..e69de29 diff --git a/src/dotnet/QuantEngine.Web/obj/Debug/net10.0/QuantEngine.Web.assets.cache b/src/dotnet/QuantEngine.Web/obj/Debug/net10.0/QuantEngine.Web.assets.cache new file mode 100644 index 0000000..7897e31 Binary files /dev/null and b/src/dotnet/QuantEngine.Web/obj/Debug/net10.0/QuantEngine.Web.assets.cache differ diff --git a/src/dotnet/QuantEngine.Web/obj/Debug/net10.0/QuantEngine.Web.csproj.AssemblyReference.cache b/src/dotnet/QuantEngine.Web/obj/Debug/net10.0/QuantEngine.Web.csproj.AssemblyReference.cache new file mode 100644 index 0000000..a61dc16 Binary files /dev/null and b/src/dotnet/QuantEngine.Web/obj/Debug/net10.0/QuantEngine.Web.csproj.AssemblyReference.cache differ diff --git a/src/dotnet/QuantEngine.Web/obj/Debug/net10.0/QuantEngine.Web.csproj.CoreCompileInputs.cache b/src/dotnet/QuantEngine.Web/obj/Debug/net10.0/QuantEngine.Web.csproj.CoreCompileInputs.cache new file mode 100644 index 0000000..5b6bedb --- /dev/null +++ b/src/dotnet/QuantEngine.Web/obj/Debug/net10.0/QuantEngine.Web.csproj.CoreCompileInputs.cache @@ -0,0 +1 @@ +6956cb7c3b7f8dc161be037f277ca8ad489746b41b4cfc6aebd5bf4b3bc73bea diff --git a/src/dotnet/QuantEngine.Web/obj/Debug/net10.0/QuantEngine.Web.csproj.FileListAbsolute.txt b/src/dotnet/QuantEngine.Web/obj/Debug/net10.0/QuantEngine.Web.csproj.FileListAbsolute.txt new file mode 100644 index 0000000..d8b0e6b --- /dev/null +++ b/src/dotnet/QuantEngine.Web/obj/Debug/net10.0/QuantEngine.Web.csproj.FileListAbsolute.txt @@ -0,0 +1,95 @@ +C:\Temp\data_feed\src\dotnet\QuantEngine.Web\bin\Debug\net10.0\appsettings.Development.json +C:\Temp\data_feed\src\dotnet\QuantEngine.Web\bin\Debug\net10.0\appsettings.json +C:\Temp\data_feed\src\dotnet\QuantEngine.Web\bin\Debug\net10.0\QuantEngine.Web.staticwebassets.runtime.json +C:\Temp\data_feed\src\dotnet\QuantEngine.Web\bin\Debug\net10.0\QuantEngine.Web.staticwebassets.endpoints.json +C:\Temp\data_feed\src\dotnet\QuantEngine.Web\bin\Debug\net10.0\QuantEngine.Web.exe +C:\Temp\data_feed\src\dotnet\QuantEngine.Web\bin\Debug\net10.0\QuantEngine.Web.deps.json +C:\Temp\data_feed\src\dotnet\QuantEngine.Web\bin\Debug\net10.0\QuantEngine.Web.runtimeconfig.json +C:\Temp\data_feed\src\dotnet\QuantEngine.Web\bin\Debug\net10.0\QuantEngine.Web.dll +C:\Temp\data_feed\src\dotnet\QuantEngine.Web\bin\Debug\net10.0\QuantEngine.Web.pdb +C:\Temp\data_feed\src\dotnet\QuantEngine.Web\bin\Debug\net10.0\QuantEngine.Application.dll +C:\Temp\data_feed\src\dotnet\QuantEngine.Web\bin\Debug\net10.0\QuantEngine.Core.dll +C:\Temp\data_feed\src\dotnet\QuantEngine.Web\bin\Debug\net10.0\QuantEngine.Infrastructure.dll +C:\Temp\data_feed\src\dotnet\QuantEngine.Web\bin\Debug\net10.0\QuantEngine.Infrastructure.pdb +C:\Temp\data_feed\src\dotnet\QuantEngine.Web\bin\Debug\net10.0\QuantEngine.Application.pdb +C:\Temp\data_feed\src\dotnet\QuantEngine.Web\bin\Debug\net10.0\QuantEngine.Core.pdb +C:\Temp\data_feed\src\dotnet\QuantEngine.Web\obj\Debug\net10.0\EmbeddedAttribute.cs +C:\Temp\data_feed\src\dotnet\QuantEngine.Web\obj\Debug\net10.0\ValidatableTypeAttribute.cs +C:\Temp\data_feed\src\dotnet\QuantEngine.Web\obj\Debug\net10.0\QuantEngine.Web.csproj.AssemblyReference.cache +C:\Temp\data_feed\src\dotnet\QuantEngine.Web\obj\Debug\net10.0\rpswa.dswa.cache.json +C:\Temp\data_feed\src\dotnet\QuantEngine.Web\obj\Debug\net10.0\QuantEngine.Web.GeneratedMSBuildEditorConfig.editorconfig +C:\Temp\data_feed\src\dotnet\QuantEngine.Web\obj\Debug\net10.0\QuantEngine.Web.AssemblyInfoInputs.cache +C:\Temp\data_feed\src\dotnet\QuantEngine.Web\obj\Debug\net10.0\QuantEngine.Web.AssemblyInfo.cs +C:\Temp\data_feed\src\dotnet\QuantEngine.Web\obj\Debug\net10.0\QuantEngine.Web.csproj.CoreCompileInputs.cache +C:\Temp\data_feed\src\dotnet\QuantEngine.Web\obj\Debug\net10.0\QuantEngine.Web.MvcApplicationPartsAssemblyInfo.cache +C:\Temp\data_feed\src\dotnet\QuantEngine.Web\obj\Debug\net10.0\rjimswa.dswa.cache.json +C:\Temp\data_feed\src\dotnet\QuantEngine.Web\obj\Debug\net10.0\rjsmrazor.dswa.cache.json +C:\Temp\data_feed\src\dotnet\QuantEngine.Web\obj\Debug\net10.0\rjsmcshtml.dswa.cache.json +C:\Temp\data_feed\src\dotnet\QuantEngine.Web\obj\Debug\net10.0\scopedcss\Components\Layout\MainLayout.razor.rz.scp.css +C:\Temp\data_feed\src\dotnet\QuantEngine.Web\obj\Debug\net10.0\scopedcss\Components\Layout\NavMenu.razor.rz.scp.css +C:\Temp\data_feed\src\dotnet\QuantEngine.Web\obj\Debug\net10.0\scopedcss\Components\Layout\ReconnectModal.razor.rz.scp.css +C:\Temp\data_feed\src\dotnet\QuantEngine.Web\obj\Debug\net10.0\scopedcss\bundle\QuantEngine.Web.styles.css +C:\Temp\data_feed\src\dotnet\QuantEngine.Web\obj\Debug\net10.0\scopedcss\projectbundle\QuantEngine.Web.bundle.scp.css +C:\Temp\data_feed\src\dotnet\QuantEngine.Web\obj\Debug\net10.0\compressed\dgr8mv739g-{0}-bqjiyaj88i-bqjiyaj88i.gz +C:\Temp\data_feed\src\dotnet\QuantEngine.Web\obj\Debug\net10.0\compressed\l0f1c41wbh-{0}-c2jlpeoesf-c2jlpeoesf.gz +C:\Temp\data_feed\src\dotnet\QuantEngine.Web\obj\Debug\net10.0\compressed\ny3xbgedo0-{0}-erw9l3u2r3-erw9l3u2r3.gz +C:\Temp\data_feed\src\dotnet\QuantEngine.Web\obj\Debug\net10.0\compressed\yyzux970us-{0}-aexeepp0ev-aexeepp0ev.gz +C:\Temp\data_feed\src\dotnet\QuantEngine.Web\obj\Debug\net10.0\compressed\s8tfmvcl6l-{0}-d7shbmvgxk-d7shbmvgxk.gz +C:\Temp\data_feed\src\dotnet\QuantEngine.Web\obj\Debug\net10.0\compressed\buy0lgnna4-{0}-ausgxo2sd3-ausgxo2sd3.gz +C:\Temp\data_feed\src\dotnet\QuantEngine.Web\obj\Debug\net10.0\compressed\rftpckz71e-{0}-k8d9w2qqmf-k8d9w2qqmf.gz +C:\Temp\data_feed\src\dotnet\QuantEngine.Web\obj\Debug\net10.0\compressed\1xufxwh45d-{0}-cosvhxvwiu-cosvhxvwiu.gz +C:\Temp\data_feed\src\dotnet\QuantEngine.Web\obj\Debug\net10.0\compressed\110gjqadz3-{0}-ub07r2b239-ub07r2b239.gz +C:\Temp\data_feed\src\dotnet\QuantEngine.Web\obj\Debug\net10.0\compressed\moveir2wlt-{0}-fvhpjtyr6v-fvhpjtyr6v.gz +C:\Temp\data_feed\src\dotnet\QuantEngine.Web\obj\Debug\net10.0\compressed\i5gc3220r3-{0}-b7pk76d08c-b7pk76d08c.gz +C:\Temp\data_feed\src\dotnet\QuantEngine.Web\obj\Debug\net10.0\compressed\xhunqdkvqb-{0}-fsbi9cje9m-fsbi9cje9m.gz +C:\Temp\data_feed\src\dotnet\QuantEngine.Web\obj\Debug\net10.0\compressed\gomvvqnjlm-{0}-rzd6atqjts-rzd6atqjts.gz +C:\Temp\data_feed\src\dotnet\QuantEngine.Web\obj\Debug\net10.0\compressed\c34v41vs4l-{0}-ee0r1s7dh0-ee0r1s7dh0.gz +C:\Temp\data_feed\src\dotnet\QuantEngine.Web\obj\Debug\net10.0\compressed\0p7lrldjgj-{0}-dxx9fxp4il-dxx9fxp4il.gz +C:\Temp\data_feed\src\dotnet\QuantEngine.Web\obj\Debug\net10.0\compressed\0auc0xnlsy-{0}-jd9uben2k1-jd9uben2k1.gz +C:\Temp\data_feed\src\dotnet\QuantEngine.Web\obj\Debug\net10.0\compressed\pbeu27ik9w-{0}-khv3u5hwcm-khv3u5hwcm.gz +C:\Temp\data_feed\src\dotnet\QuantEngine.Web\obj\Debug\net10.0\compressed\79raj0bcrr-{0}-r4e9w2rdcm-r4e9w2rdcm.gz +C:\Temp\data_feed\src\dotnet\QuantEngine.Web\obj\Debug\net10.0\compressed\jqrauj2svw-{0}-lcd1t2u6c8-lcd1t2u6c8.gz +C:\Temp\data_feed\src\dotnet\QuantEngine.Web\obj\Debug\net10.0\compressed\pj5n2mkkzw-{0}-c2oey78nd0-c2oey78nd0.gz +C:\Temp\data_feed\src\dotnet\QuantEngine.Web\obj\Debug\net10.0\compressed\dt9lb9me9i-{0}-tdbxkamptv-tdbxkamptv.gz +C:\Temp\data_feed\src\dotnet\QuantEngine.Web\obj\Debug\net10.0\compressed\lwh7ckeki7-{0}-j5mq2jizvt-j5mq2jizvt.gz +C:\Temp\data_feed\src\dotnet\QuantEngine.Web\obj\Debug\net10.0\compressed\4cblaxq6jh-{0}-06098lyss8-06098lyss8.gz +C:\Temp\data_feed\src\dotnet\QuantEngine.Web\obj\Debug\net10.0\compressed\44s2eqp64d-{0}-nvvlpmu67g-nvvlpmu67g.gz +C:\Temp\data_feed\src\dotnet\QuantEngine.Web\obj\Debug\net10.0\compressed\gcxof6xqvd-{0}-s35ty4nyc5-s35ty4nyc5.gz +C:\Temp\data_feed\src\dotnet\QuantEngine.Web\obj\Debug\net10.0\compressed\z9wv7fs72k-{0}-pj5nd1wqec-pj5nd1wqec.gz +C:\Temp\data_feed\src\dotnet\QuantEngine.Web\obj\Debug\net10.0\compressed\4072jq1i2h-{0}-46ein0sx1k-46ein0sx1k.gz +C:\Temp\data_feed\src\dotnet\QuantEngine.Web\obj\Debug\net10.0\compressed\a4eqfiv3ub-{0}-v0zj4ognzu-v0zj4ognzu.gz +C:\Temp\data_feed\src\dotnet\QuantEngine.Web\obj\Debug\net10.0\compressed\rg0bjkw6wb-{0}-37tfw0ft22-37tfw0ft22.gz +C:\Temp\data_feed\src\dotnet\QuantEngine.Web\obj\Debug\net10.0\compressed\jomvpxly64-{0}-hrwsygsryq-hrwsygsryq.gz +C:\Temp\data_feed\src\dotnet\QuantEngine.Web\obj\Debug\net10.0\compressed\u4l44l4mup-{0}-pk9g2wxc8p-pk9g2wxc8p.gz +C:\Temp\data_feed\src\dotnet\QuantEngine.Web\obj\Debug\net10.0\compressed\s45yklcy5s-{0}-ft3s53vfgj-ft3s53vfgj.gz +C:\Temp\data_feed\src\dotnet\QuantEngine.Web\obj\Debug\net10.0\compressed\ryegp6ubqi-{0}-6cfz1n2cew-6cfz1n2cew.gz +C:\Temp\data_feed\src\dotnet\QuantEngine.Web\obj\Debug\net10.0\compressed\gfm26p5c1q-{0}-6pdc2jztkx-6pdc2jztkx.gz +C:\Temp\data_feed\src\dotnet\QuantEngine.Web\obj\Debug\net10.0\compressed\wh1z5habmz-{0}-493y06b0oq-493y06b0oq.gz +C:\Temp\data_feed\src\dotnet\QuantEngine.Web\obj\Debug\net10.0\compressed\oog3rser0x-{0}-iovd86k7lj-iovd86k7lj.gz +C:\Temp\data_feed\src\dotnet\QuantEngine.Web\obj\Debug\net10.0\compressed\dd5v02aqjc-{0}-vr1egmr9el-vr1egmr9el.gz +C:\Temp\data_feed\src\dotnet\QuantEngine.Web\obj\Debug\net10.0\compressed\61rmegrlmv-{0}-kbrnm935zg-kbrnm935zg.gz +C:\Temp\data_feed\src\dotnet\QuantEngine.Web\obj\Debug\net10.0\compressed\0x3oeluflx-{0}-jj8uyg4cgr-jj8uyg4cgr.gz +C:\Temp\data_feed\src\dotnet\QuantEngine.Web\obj\Debug\net10.0\compressed\h7pf8rqo63-{0}-y7v9cxd14o-y7v9cxd14o.gz +C:\Temp\data_feed\src\dotnet\QuantEngine.Web\obj\Debug\net10.0\compressed\a1937s5xj1-{0}-notf2xhcfb-notf2xhcfb.gz +C:\Temp\data_feed\src\dotnet\QuantEngine.Web\obj\Debug\net10.0\compressed\a7rq2yiqop-{0}-h1s4sie4z3-h1s4sie4z3.gz +C:\Temp\data_feed\src\dotnet\QuantEngine.Web\obj\Debug\net10.0\compressed\ykh8zi7pka-{0}-63fj8s7r0e-63fj8s7r0e.gz +C:\Temp\data_feed\src\dotnet\QuantEngine.Web\obj\Debug\net10.0\compressed\8q9g0t5yrl-{0}-0j3bgjxly4-0j3bgjxly4.gz +C:\Temp\data_feed\src\dotnet\QuantEngine.Web\obj\Debug\net10.0\compressed\t9yb5ynpxl-{0}-13ja33weya-13ja33weya.gz +C:\Temp\data_feed\src\dotnet\QuantEngine.Web\obj\Debug\net10.0\compressed\nr5locadir-{0}-j8lzlu28q6-j8lzlu28q6.gz +C:\Temp\data_feed\src\dotnet\QuantEngine.Web\obj\Debug\net10.0\compressed\dym80g6kqp-{0}-u1n4jc5v46-u1n4jc5v46.gz +C:\Temp\data_feed\src\dotnet\QuantEngine.Web\obj\Debug\net10.0\compressed\b7jn6yc0gz-{0}-yi314np04p-yi314np04p.gz +C:\Temp\data_feed\src\dotnet\QuantEngine.Web\obj\Debug\net10.0\compressed\vpvw6nj9ax-{0}-yi314np04p-yi314np04p.gz +C:\Temp\data_feed\src\dotnet\QuantEngine.Web\obj\Debug\net10.0\staticwebassets.build.json +C:\Temp\data_feed\src\dotnet\QuantEngine.Web\obj\Debug\net10.0\staticwebassets.build.json.cache +C:\Temp\data_feed\src\dotnet\QuantEngine.Web\obj\Debug\net10.0\staticwebassets.development.json +C:\Temp\data_feed\src\dotnet\QuantEngine.Web\obj\Debug\net10.0\staticwebassets.build.endpoints.json +C:\Temp\data_feed\src\dotnet\QuantEngine.Web\obj\Debug\net10.0\swae.build.ex.cache +C:\Temp\data_feed\src\dotnet\QuantEngine.Web\obj\Debug\net10.0\QuantEng.C85672E0.Up2Date +C:\Temp\data_feed\src\dotnet\QuantEngine.Web\obj\Debug\net10.0\QuantEngine.Web.dll +C:\Temp\data_feed\src\dotnet\QuantEngine.Web\obj\Debug\net10.0\refint\QuantEngine.Web.dll +C:\Temp\data_feed\src\dotnet\QuantEngine.Web\obj\Debug\net10.0\QuantEngine.Web.pdb +C:\Temp\data_feed\src\dotnet\QuantEngine.Web\obj\Debug\net10.0\QuantEngine.Web.genruntimeconfig.cache +C:\Temp\data_feed\src\dotnet\QuantEngine.Web\obj\Debug\net10.0\ref\QuantEngine.Web.dll +C:\Temp\data_feed\src\dotnet\QuantEngine.Web\bin\Debug\net10.0\Dapper.dll +C:\Temp\data_feed\src\dotnet\QuantEngine.Web\bin\Debug\net10.0\Npgsql.dll +C:\Temp\data_feed\src\dotnet\QuantEngine.Web\obj\Debug\net10.0\compressed\q2w3mddmwi-{0}-4c8rkwezul-4c8rkwezul.gz diff --git a/src/dotnet/QuantEngine.Web/obj/Debug/net10.0/QuantEngine.Web.dll b/src/dotnet/QuantEngine.Web/obj/Debug/net10.0/QuantEngine.Web.dll new file mode 100644 index 0000000..2823bb9 Binary files /dev/null and b/src/dotnet/QuantEngine.Web/obj/Debug/net10.0/QuantEngine.Web.dll differ diff --git a/src/dotnet/QuantEngine.Web/obj/Debug/net10.0/QuantEngine.Web.genruntimeconfig.cache b/src/dotnet/QuantEngine.Web/obj/Debug/net10.0/QuantEngine.Web.genruntimeconfig.cache new file mode 100644 index 0000000..905316d --- /dev/null +++ b/src/dotnet/QuantEngine.Web/obj/Debug/net10.0/QuantEngine.Web.genruntimeconfig.cache @@ -0,0 +1 @@ +f78c5380dc04b6bce951ebd484d8aad5543d6951999111b3dffeed8a2a8305d3 diff --git a/src/dotnet/QuantEngine.Web/obj/Debug/net10.0/QuantEngine.Web.pdb b/src/dotnet/QuantEngine.Web/obj/Debug/net10.0/QuantEngine.Web.pdb new file mode 100644 index 0000000..d364e2b Binary files /dev/null and b/src/dotnet/QuantEngine.Web/obj/Debug/net10.0/QuantEngine.Web.pdb differ diff --git a/src/dotnet/QuantEngine.Web/obj/Debug/net10.0/ValidatableTypeAttribute.cs b/src/dotnet/QuantEngine.Web/obj/Debug/net10.0/ValidatableTypeAttribute.cs new file mode 100644 index 0000000..26eb880 --- /dev/null +++ b/src/dotnet/QuantEngine.Web/obj/Debug/net10.0/ValidatableTypeAttribute.cs @@ -0,0 +1,9 @@ +// +namespace Microsoft.Extensions.Validation.Embedded +{ +[global::Microsoft.CodeAnalysis.EmbeddedAttribute] +[global::System.AttributeUsage(global::System.AttributeTargets.Class)] +internal sealed class ValidatableTypeAttribute : global::System.Attribute +{ +} +} diff --git a/src/dotnet/QuantEngine.Web/obj/Debug/net10.0/apphost.exe b/src/dotnet/QuantEngine.Web/obj/Debug/net10.0/apphost.exe new file mode 100644 index 0000000..6cc01ed Binary files /dev/null and b/src/dotnet/QuantEngine.Web/obj/Debug/net10.0/apphost.exe differ diff --git a/src/dotnet/QuantEngine.Web/obj/Debug/net10.0/compressed/0auc0xnlsy-{0}-jd9uben2k1-jd9uben2k1.gz b/src/dotnet/QuantEngine.Web/obj/Debug/net10.0/compressed/0auc0xnlsy-{0}-jd9uben2k1-jd9uben2k1.gz new file mode 100644 index 0000000..cabf775 Binary files /dev/null and b/src/dotnet/QuantEngine.Web/obj/Debug/net10.0/compressed/0auc0xnlsy-{0}-jd9uben2k1-jd9uben2k1.gz differ diff --git a/src/dotnet/QuantEngine.Web/obj/Debug/net10.0/compressed/0p7lrldjgj-{0}-dxx9fxp4il-dxx9fxp4il.gz b/src/dotnet/QuantEngine.Web/obj/Debug/net10.0/compressed/0p7lrldjgj-{0}-dxx9fxp4il-dxx9fxp4il.gz new file mode 100644 index 0000000..c9c7efa Binary files /dev/null and b/src/dotnet/QuantEngine.Web/obj/Debug/net10.0/compressed/0p7lrldjgj-{0}-dxx9fxp4il-dxx9fxp4il.gz differ diff --git a/src/dotnet/QuantEngine.Web/obj/Debug/net10.0/compressed/0x3oeluflx-{0}-jj8uyg4cgr-jj8uyg4cgr.gz b/src/dotnet/QuantEngine.Web/obj/Debug/net10.0/compressed/0x3oeluflx-{0}-jj8uyg4cgr-jj8uyg4cgr.gz new file mode 100644 index 0000000..30c3e96 Binary files /dev/null and b/src/dotnet/QuantEngine.Web/obj/Debug/net10.0/compressed/0x3oeluflx-{0}-jj8uyg4cgr-jj8uyg4cgr.gz differ diff --git a/src/dotnet/QuantEngine.Web/obj/Debug/net10.0/compressed/110gjqadz3-{0}-ub07r2b239-ub07r2b239.gz b/src/dotnet/QuantEngine.Web/obj/Debug/net10.0/compressed/110gjqadz3-{0}-ub07r2b239-ub07r2b239.gz new file mode 100644 index 0000000..3712e7a Binary files /dev/null and b/src/dotnet/QuantEngine.Web/obj/Debug/net10.0/compressed/110gjqadz3-{0}-ub07r2b239-ub07r2b239.gz differ diff --git a/src/dotnet/QuantEngine.Web/obj/Debug/net10.0/compressed/1xufxwh45d-{0}-cosvhxvwiu-cosvhxvwiu.gz b/src/dotnet/QuantEngine.Web/obj/Debug/net10.0/compressed/1xufxwh45d-{0}-cosvhxvwiu-cosvhxvwiu.gz new file mode 100644 index 0000000..cd2e0fa Binary files /dev/null and b/src/dotnet/QuantEngine.Web/obj/Debug/net10.0/compressed/1xufxwh45d-{0}-cosvhxvwiu-cosvhxvwiu.gz differ diff --git a/src/dotnet/QuantEngine.Web/obj/Debug/net10.0/compressed/4072jq1i2h-{0}-46ein0sx1k-46ein0sx1k.gz b/src/dotnet/QuantEngine.Web/obj/Debug/net10.0/compressed/4072jq1i2h-{0}-46ein0sx1k-46ein0sx1k.gz new file mode 100644 index 0000000..cfe1af0 Binary files /dev/null and b/src/dotnet/QuantEngine.Web/obj/Debug/net10.0/compressed/4072jq1i2h-{0}-46ein0sx1k-46ein0sx1k.gz differ diff --git a/src/dotnet/QuantEngine.Web/obj/Debug/net10.0/compressed/44s2eqp64d-{0}-nvvlpmu67g-nvvlpmu67g.gz b/src/dotnet/QuantEngine.Web/obj/Debug/net10.0/compressed/44s2eqp64d-{0}-nvvlpmu67g-nvvlpmu67g.gz new file mode 100644 index 0000000..da2c116 Binary files /dev/null and b/src/dotnet/QuantEngine.Web/obj/Debug/net10.0/compressed/44s2eqp64d-{0}-nvvlpmu67g-nvvlpmu67g.gz differ diff --git a/src/dotnet/QuantEngine.Web/obj/Debug/net10.0/compressed/4cblaxq6jh-{0}-06098lyss8-06098lyss8.gz b/src/dotnet/QuantEngine.Web/obj/Debug/net10.0/compressed/4cblaxq6jh-{0}-06098lyss8-06098lyss8.gz new file mode 100644 index 0000000..cae6db3 Binary files /dev/null and b/src/dotnet/QuantEngine.Web/obj/Debug/net10.0/compressed/4cblaxq6jh-{0}-06098lyss8-06098lyss8.gz differ diff --git a/src/dotnet/QuantEngine.Web/obj/Debug/net10.0/compressed/61rmegrlmv-{0}-kbrnm935zg-kbrnm935zg.gz b/src/dotnet/QuantEngine.Web/obj/Debug/net10.0/compressed/61rmegrlmv-{0}-kbrnm935zg-kbrnm935zg.gz new file mode 100644 index 0000000..bb742b7 Binary files /dev/null and b/src/dotnet/QuantEngine.Web/obj/Debug/net10.0/compressed/61rmegrlmv-{0}-kbrnm935zg-kbrnm935zg.gz differ diff --git a/src/dotnet/QuantEngine.Web/obj/Debug/net10.0/compressed/79raj0bcrr-{0}-r4e9w2rdcm-r4e9w2rdcm.gz b/src/dotnet/QuantEngine.Web/obj/Debug/net10.0/compressed/79raj0bcrr-{0}-r4e9w2rdcm-r4e9w2rdcm.gz new file mode 100644 index 0000000..79a6a41 Binary files /dev/null and b/src/dotnet/QuantEngine.Web/obj/Debug/net10.0/compressed/79raj0bcrr-{0}-r4e9w2rdcm-r4e9w2rdcm.gz differ diff --git a/src/dotnet/QuantEngine.Web/obj/Debug/net10.0/compressed/8q9g0t5yrl-{0}-0j3bgjxly4-0j3bgjxly4.gz b/src/dotnet/QuantEngine.Web/obj/Debug/net10.0/compressed/8q9g0t5yrl-{0}-0j3bgjxly4-0j3bgjxly4.gz new file mode 100644 index 0000000..1ac96af Binary files /dev/null and b/src/dotnet/QuantEngine.Web/obj/Debug/net10.0/compressed/8q9g0t5yrl-{0}-0j3bgjxly4-0j3bgjxly4.gz differ diff --git a/src/dotnet/QuantEngine.Web/obj/Debug/net10.0/compressed/a1937s5xj1-{0}-notf2xhcfb-notf2xhcfb.gz b/src/dotnet/QuantEngine.Web/obj/Debug/net10.0/compressed/a1937s5xj1-{0}-notf2xhcfb-notf2xhcfb.gz new file mode 100644 index 0000000..6f0b34b Binary files /dev/null and b/src/dotnet/QuantEngine.Web/obj/Debug/net10.0/compressed/a1937s5xj1-{0}-notf2xhcfb-notf2xhcfb.gz differ diff --git a/src/dotnet/QuantEngine.Web/obj/Debug/net10.0/compressed/a4eqfiv3ub-{0}-v0zj4ognzu-v0zj4ognzu.gz b/src/dotnet/QuantEngine.Web/obj/Debug/net10.0/compressed/a4eqfiv3ub-{0}-v0zj4ognzu-v0zj4ognzu.gz new file mode 100644 index 0000000..d4c6da5 Binary files /dev/null and b/src/dotnet/QuantEngine.Web/obj/Debug/net10.0/compressed/a4eqfiv3ub-{0}-v0zj4ognzu-v0zj4ognzu.gz differ diff --git a/src/dotnet/QuantEngine.Web/obj/Debug/net10.0/compressed/a7rq2yiqop-{0}-h1s4sie4z3-h1s4sie4z3.gz b/src/dotnet/QuantEngine.Web/obj/Debug/net10.0/compressed/a7rq2yiqop-{0}-h1s4sie4z3-h1s4sie4z3.gz new file mode 100644 index 0000000..96f92ef Binary files /dev/null and b/src/dotnet/QuantEngine.Web/obj/Debug/net10.0/compressed/a7rq2yiqop-{0}-h1s4sie4z3-h1s4sie4z3.gz differ diff --git a/src/dotnet/QuantEngine.Web/obj/Debug/net10.0/compressed/b7jn6yc0gz-{0}-yi314np04p-yi314np04p.gz b/src/dotnet/QuantEngine.Web/obj/Debug/net10.0/compressed/b7jn6yc0gz-{0}-yi314np04p-yi314np04p.gz new file mode 100644 index 0000000..6c9f9b3 Binary files /dev/null and b/src/dotnet/QuantEngine.Web/obj/Debug/net10.0/compressed/b7jn6yc0gz-{0}-yi314np04p-yi314np04p.gz differ diff --git a/src/dotnet/QuantEngine.Web/obj/Debug/net10.0/compressed/buy0lgnna4-{0}-ausgxo2sd3-ausgxo2sd3.gz b/src/dotnet/QuantEngine.Web/obj/Debug/net10.0/compressed/buy0lgnna4-{0}-ausgxo2sd3-ausgxo2sd3.gz new file mode 100644 index 0000000..b158b98 Binary files /dev/null and b/src/dotnet/QuantEngine.Web/obj/Debug/net10.0/compressed/buy0lgnna4-{0}-ausgxo2sd3-ausgxo2sd3.gz differ diff --git a/src/dotnet/QuantEngine.Web/obj/Debug/net10.0/compressed/c34v41vs4l-{0}-ee0r1s7dh0-ee0r1s7dh0.gz b/src/dotnet/QuantEngine.Web/obj/Debug/net10.0/compressed/c34v41vs4l-{0}-ee0r1s7dh0-ee0r1s7dh0.gz new file mode 100644 index 0000000..f922edc Binary files /dev/null and b/src/dotnet/QuantEngine.Web/obj/Debug/net10.0/compressed/c34v41vs4l-{0}-ee0r1s7dh0-ee0r1s7dh0.gz differ diff --git a/src/dotnet/QuantEngine.Web/obj/Debug/net10.0/compressed/dd5v02aqjc-{0}-vr1egmr9el-vr1egmr9el.gz b/src/dotnet/QuantEngine.Web/obj/Debug/net10.0/compressed/dd5v02aqjc-{0}-vr1egmr9el-vr1egmr9el.gz new file mode 100644 index 0000000..596d6c9 Binary files /dev/null and b/src/dotnet/QuantEngine.Web/obj/Debug/net10.0/compressed/dd5v02aqjc-{0}-vr1egmr9el-vr1egmr9el.gz differ diff --git a/src/dotnet/QuantEngine.Web/obj/Debug/net10.0/compressed/dgr8mv739g-{0}-bqjiyaj88i-bqjiyaj88i.gz b/src/dotnet/QuantEngine.Web/obj/Debug/net10.0/compressed/dgr8mv739g-{0}-bqjiyaj88i-bqjiyaj88i.gz new file mode 100644 index 0000000..b62aba1 Binary files /dev/null and b/src/dotnet/QuantEngine.Web/obj/Debug/net10.0/compressed/dgr8mv739g-{0}-bqjiyaj88i-bqjiyaj88i.gz differ diff --git a/src/dotnet/QuantEngine.Web/obj/Debug/net10.0/compressed/dt9lb9me9i-{0}-tdbxkamptv-tdbxkamptv.gz b/src/dotnet/QuantEngine.Web/obj/Debug/net10.0/compressed/dt9lb9me9i-{0}-tdbxkamptv-tdbxkamptv.gz new file mode 100644 index 0000000..dbb1944 Binary files /dev/null and b/src/dotnet/QuantEngine.Web/obj/Debug/net10.0/compressed/dt9lb9me9i-{0}-tdbxkamptv-tdbxkamptv.gz differ diff --git a/src/dotnet/QuantEngine.Web/obj/Debug/net10.0/compressed/dym80g6kqp-{0}-u1n4jc5v46-u1n4jc5v46.gz b/src/dotnet/QuantEngine.Web/obj/Debug/net10.0/compressed/dym80g6kqp-{0}-u1n4jc5v46-u1n4jc5v46.gz new file mode 100644 index 0000000..0c5918b Binary files /dev/null and b/src/dotnet/QuantEngine.Web/obj/Debug/net10.0/compressed/dym80g6kqp-{0}-u1n4jc5v46-u1n4jc5v46.gz differ diff --git a/src/dotnet/QuantEngine.Web/obj/Debug/net10.0/compressed/gcxof6xqvd-{0}-s35ty4nyc5-s35ty4nyc5.gz b/src/dotnet/QuantEngine.Web/obj/Debug/net10.0/compressed/gcxof6xqvd-{0}-s35ty4nyc5-s35ty4nyc5.gz new file mode 100644 index 0000000..60cda20 Binary files /dev/null and b/src/dotnet/QuantEngine.Web/obj/Debug/net10.0/compressed/gcxof6xqvd-{0}-s35ty4nyc5-s35ty4nyc5.gz differ diff --git a/src/dotnet/QuantEngine.Web/obj/Debug/net10.0/compressed/gfm26p5c1q-{0}-6pdc2jztkx-6pdc2jztkx.gz b/src/dotnet/QuantEngine.Web/obj/Debug/net10.0/compressed/gfm26p5c1q-{0}-6pdc2jztkx-6pdc2jztkx.gz new file mode 100644 index 0000000..bf7c43d Binary files /dev/null and b/src/dotnet/QuantEngine.Web/obj/Debug/net10.0/compressed/gfm26p5c1q-{0}-6pdc2jztkx-6pdc2jztkx.gz differ diff --git a/src/dotnet/QuantEngine.Web/obj/Debug/net10.0/compressed/gomvvqnjlm-{0}-rzd6atqjts-rzd6atqjts.gz b/src/dotnet/QuantEngine.Web/obj/Debug/net10.0/compressed/gomvvqnjlm-{0}-rzd6atqjts-rzd6atqjts.gz new file mode 100644 index 0000000..0dc7248 Binary files /dev/null and b/src/dotnet/QuantEngine.Web/obj/Debug/net10.0/compressed/gomvvqnjlm-{0}-rzd6atqjts-rzd6atqjts.gz differ diff --git a/src/dotnet/QuantEngine.Web/obj/Debug/net10.0/compressed/h7pf8rqo63-{0}-y7v9cxd14o-y7v9cxd14o.gz b/src/dotnet/QuantEngine.Web/obj/Debug/net10.0/compressed/h7pf8rqo63-{0}-y7v9cxd14o-y7v9cxd14o.gz new file mode 100644 index 0000000..549bc68 Binary files /dev/null and b/src/dotnet/QuantEngine.Web/obj/Debug/net10.0/compressed/h7pf8rqo63-{0}-y7v9cxd14o-y7v9cxd14o.gz differ diff --git a/src/dotnet/QuantEngine.Web/obj/Debug/net10.0/compressed/i5gc3220r3-{0}-b7pk76d08c-b7pk76d08c.gz b/src/dotnet/QuantEngine.Web/obj/Debug/net10.0/compressed/i5gc3220r3-{0}-b7pk76d08c-b7pk76d08c.gz new file mode 100644 index 0000000..6c00a82 Binary files /dev/null and b/src/dotnet/QuantEngine.Web/obj/Debug/net10.0/compressed/i5gc3220r3-{0}-b7pk76d08c-b7pk76d08c.gz differ diff --git a/src/dotnet/QuantEngine.Web/obj/Debug/net10.0/compressed/jomvpxly64-{0}-hrwsygsryq-hrwsygsryq.gz b/src/dotnet/QuantEngine.Web/obj/Debug/net10.0/compressed/jomvpxly64-{0}-hrwsygsryq-hrwsygsryq.gz new file mode 100644 index 0000000..39b453b Binary files /dev/null and b/src/dotnet/QuantEngine.Web/obj/Debug/net10.0/compressed/jomvpxly64-{0}-hrwsygsryq-hrwsygsryq.gz differ diff --git a/src/dotnet/QuantEngine.Web/obj/Debug/net10.0/compressed/jqrauj2svw-{0}-lcd1t2u6c8-lcd1t2u6c8.gz b/src/dotnet/QuantEngine.Web/obj/Debug/net10.0/compressed/jqrauj2svw-{0}-lcd1t2u6c8-lcd1t2u6c8.gz new file mode 100644 index 0000000..e3a99b0 Binary files /dev/null and b/src/dotnet/QuantEngine.Web/obj/Debug/net10.0/compressed/jqrauj2svw-{0}-lcd1t2u6c8-lcd1t2u6c8.gz differ diff --git a/src/dotnet/QuantEngine.Web/obj/Debug/net10.0/compressed/l0f1c41wbh-{0}-c2jlpeoesf-c2jlpeoesf.gz b/src/dotnet/QuantEngine.Web/obj/Debug/net10.0/compressed/l0f1c41wbh-{0}-c2jlpeoesf-c2jlpeoesf.gz new file mode 100644 index 0000000..d7fde45 Binary files /dev/null and b/src/dotnet/QuantEngine.Web/obj/Debug/net10.0/compressed/l0f1c41wbh-{0}-c2jlpeoesf-c2jlpeoesf.gz differ diff --git a/src/dotnet/QuantEngine.Web/obj/Debug/net10.0/compressed/lwh7ckeki7-{0}-j5mq2jizvt-j5mq2jizvt.gz b/src/dotnet/QuantEngine.Web/obj/Debug/net10.0/compressed/lwh7ckeki7-{0}-j5mq2jizvt-j5mq2jizvt.gz new file mode 100644 index 0000000..e7ead8a Binary files /dev/null and b/src/dotnet/QuantEngine.Web/obj/Debug/net10.0/compressed/lwh7ckeki7-{0}-j5mq2jizvt-j5mq2jizvt.gz differ diff --git a/src/dotnet/QuantEngine.Web/obj/Debug/net10.0/compressed/moveir2wlt-{0}-fvhpjtyr6v-fvhpjtyr6v.gz b/src/dotnet/QuantEngine.Web/obj/Debug/net10.0/compressed/moveir2wlt-{0}-fvhpjtyr6v-fvhpjtyr6v.gz new file mode 100644 index 0000000..3713240 Binary files /dev/null and b/src/dotnet/QuantEngine.Web/obj/Debug/net10.0/compressed/moveir2wlt-{0}-fvhpjtyr6v-fvhpjtyr6v.gz differ diff --git a/src/dotnet/QuantEngine.Web/obj/Debug/net10.0/compressed/nr5locadir-{0}-j8lzlu28q6-j8lzlu28q6.gz b/src/dotnet/QuantEngine.Web/obj/Debug/net10.0/compressed/nr5locadir-{0}-j8lzlu28q6-j8lzlu28q6.gz new file mode 100644 index 0000000..7b0c1d9 Binary files /dev/null and b/src/dotnet/QuantEngine.Web/obj/Debug/net10.0/compressed/nr5locadir-{0}-j8lzlu28q6-j8lzlu28q6.gz differ diff --git a/src/dotnet/QuantEngine.Web/obj/Debug/net10.0/compressed/ny3xbgedo0-{0}-erw9l3u2r3-erw9l3u2r3.gz b/src/dotnet/QuantEngine.Web/obj/Debug/net10.0/compressed/ny3xbgedo0-{0}-erw9l3u2r3-erw9l3u2r3.gz new file mode 100644 index 0000000..4d8df43 Binary files /dev/null and b/src/dotnet/QuantEngine.Web/obj/Debug/net10.0/compressed/ny3xbgedo0-{0}-erw9l3u2r3-erw9l3u2r3.gz differ diff --git a/src/dotnet/QuantEngine.Web/obj/Debug/net10.0/compressed/oog3rser0x-{0}-iovd86k7lj-iovd86k7lj.gz b/src/dotnet/QuantEngine.Web/obj/Debug/net10.0/compressed/oog3rser0x-{0}-iovd86k7lj-iovd86k7lj.gz new file mode 100644 index 0000000..08688d5 Binary files /dev/null and b/src/dotnet/QuantEngine.Web/obj/Debug/net10.0/compressed/oog3rser0x-{0}-iovd86k7lj-iovd86k7lj.gz differ diff --git a/src/dotnet/QuantEngine.Web/obj/Debug/net10.0/compressed/pbeu27ik9w-{0}-khv3u5hwcm-khv3u5hwcm.gz b/src/dotnet/QuantEngine.Web/obj/Debug/net10.0/compressed/pbeu27ik9w-{0}-khv3u5hwcm-khv3u5hwcm.gz new file mode 100644 index 0000000..636d94c Binary files /dev/null and b/src/dotnet/QuantEngine.Web/obj/Debug/net10.0/compressed/pbeu27ik9w-{0}-khv3u5hwcm-khv3u5hwcm.gz differ diff --git a/src/dotnet/QuantEngine.Web/obj/Debug/net10.0/compressed/pj5n2mkkzw-{0}-c2oey78nd0-c2oey78nd0.gz b/src/dotnet/QuantEngine.Web/obj/Debug/net10.0/compressed/pj5n2mkkzw-{0}-c2oey78nd0-c2oey78nd0.gz new file mode 100644 index 0000000..4f975f5 Binary files /dev/null and b/src/dotnet/QuantEngine.Web/obj/Debug/net10.0/compressed/pj5n2mkkzw-{0}-c2oey78nd0-c2oey78nd0.gz differ diff --git a/src/dotnet/QuantEngine.Web/obj/Debug/net10.0/compressed/q2w3mddmwi-{0}-4c8rkwezul-4c8rkwezul.gz b/src/dotnet/QuantEngine.Web/obj/Debug/net10.0/compressed/q2w3mddmwi-{0}-4c8rkwezul-4c8rkwezul.gz new file mode 100644 index 0000000..227cc12 Binary files /dev/null and b/src/dotnet/QuantEngine.Web/obj/Debug/net10.0/compressed/q2w3mddmwi-{0}-4c8rkwezul-4c8rkwezul.gz differ diff --git a/src/dotnet/QuantEngine.Web/obj/Debug/net10.0/compressed/rftpckz71e-{0}-k8d9w2qqmf-k8d9w2qqmf.gz b/src/dotnet/QuantEngine.Web/obj/Debug/net10.0/compressed/rftpckz71e-{0}-k8d9w2qqmf-k8d9w2qqmf.gz new file mode 100644 index 0000000..462d4d9 Binary files /dev/null and b/src/dotnet/QuantEngine.Web/obj/Debug/net10.0/compressed/rftpckz71e-{0}-k8d9w2qqmf-k8d9w2qqmf.gz differ diff --git a/src/dotnet/QuantEngine.Web/obj/Debug/net10.0/compressed/rg0bjkw6wb-{0}-37tfw0ft22-37tfw0ft22.gz b/src/dotnet/QuantEngine.Web/obj/Debug/net10.0/compressed/rg0bjkw6wb-{0}-37tfw0ft22-37tfw0ft22.gz new file mode 100644 index 0000000..a3620c0 Binary files /dev/null and b/src/dotnet/QuantEngine.Web/obj/Debug/net10.0/compressed/rg0bjkw6wb-{0}-37tfw0ft22-37tfw0ft22.gz differ diff --git a/src/dotnet/QuantEngine.Web/obj/Debug/net10.0/compressed/ryegp6ubqi-{0}-6cfz1n2cew-6cfz1n2cew.gz b/src/dotnet/QuantEngine.Web/obj/Debug/net10.0/compressed/ryegp6ubqi-{0}-6cfz1n2cew-6cfz1n2cew.gz new file mode 100644 index 0000000..332bf15 Binary files /dev/null and b/src/dotnet/QuantEngine.Web/obj/Debug/net10.0/compressed/ryegp6ubqi-{0}-6cfz1n2cew-6cfz1n2cew.gz differ diff --git a/src/dotnet/QuantEngine.Web/obj/Debug/net10.0/compressed/s45yklcy5s-{0}-ft3s53vfgj-ft3s53vfgj.gz b/src/dotnet/QuantEngine.Web/obj/Debug/net10.0/compressed/s45yklcy5s-{0}-ft3s53vfgj-ft3s53vfgj.gz new file mode 100644 index 0000000..7879b99 Binary files /dev/null and b/src/dotnet/QuantEngine.Web/obj/Debug/net10.0/compressed/s45yklcy5s-{0}-ft3s53vfgj-ft3s53vfgj.gz differ diff --git a/src/dotnet/QuantEngine.Web/obj/Debug/net10.0/compressed/s8tfmvcl6l-{0}-d7shbmvgxk-d7shbmvgxk.gz b/src/dotnet/QuantEngine.Web/obj/Debug/net10.0/compressed/s8tfmvcl6l-{0}-d7shbmvgxk-d7shbmvgxk.gz new file mode 100644 index 0000000..5b0a25a Binary files /dev/null and b/src/dotnet/QuantEngine.Web/obj/Debug/net10.0/compressed/s8tfmvcl6l-{0}-d7shbmvgxk-d7shbmvgxk.gz differ diff --git a/src/dotnet/QuantEngine.Web/obj/Debug/net10.0/compressed/t9yb5ynpxl-{0}-13ja33weya-13ja33weya.gz b/src/dotnet/QuantEngine.Web/obj/Debug/net10.0/compressed/t9yb5ynpxl-{0}-13ja33weya-13ja33weya.gz new file mode 100644 index 0000000..1199029 Binary files /dev/null and b/src/dotnet/QuantEngine.Web/obj/Debug/net10.0/compressed/t9yb5ynpxl-{0}-13ja33weya-13ja33weya.gz differ diff --git a/src/dotnet/QuantEngine.Web/obj/Debug/net10.0/compressed/u4l44l4mup-{0}-pk9g2wxc8p-pk9g2wxc8p.gz b/src/dotnet/QuantEngine.Web/obj/Debug/net10.0/compressed/u4l44l4mup-{0}-pk9g2wxc8p-pk9g2wxc8p.gz new file mode 100644 index 0000000..358dd5d Binary files /dev/null and b/src/dotnet/QuantEngine.Web/obj/Debug/net10.0/compressed/u4l44l4mup-{0}-pk9g2wxc8p-pk9g2wxc8p.gz differ diff --git a/src/dotnet/QuantEngine.Web/obj/Debug/net10.0/compressed/vpvw6nj9ax-{0}-yi314np04p-yi314np04p.gz b/src/dotnet/QuantEngine.Web/obj/Debug/net10.0/compressed/vpvw6nj9ax-{0}-yi314np04p-yi314np04p.gz new file mode 100644 index 0000000..6c9f9b3 Binary files /dev/null and b/src/dotnet/QuantEngine.Web/obj/Debug/net10.0/compressed/vpvw6nj9ax-{0}-yi314np04p-yi314np04p.gz differ diff --git a/src/dotnet/QuantEngine.Web/obj/Debug/net10.0/compressed/wh1z5habmz-{0}-493y06b0oq-493y06b0oq.gz b/src/dotnet/QuantEngine.Web/obj/Debug/net10.0/compressed/wh1z5habmz-{0}-493y06b0oq-493y06b0oq.gz new file mode 100644 index 0000000..c1c9236 Binary files /dev/null and b/src/dotnet/QuantEngine.Web/obj/Debug/net10.0/compressed/wh1z5habmz-{0}-493y06b0oq-493y06b0oq.gz differ diff --git a/src/dotnet/QuantEngine.Web/obj/Debug/net10.0/compressed/xhunqdkvqb-{0}-fsbi9cje9m-fsbi9cje9m.gz b/src/dotnet/QuantEngine.Web/obj/Debug/net10.0/compressed/xhunqdkvqb-{0}-fsbi9cje9m-fsbi9cje9m.gz new file mode 100644 index 0000000..bc01dff Binary files /dev/null and b/src/dotnet/QuantEngine.Web/obj/Debug/net10.0/compressed/xhunqdkvqb-{0}-fsbi9cje9m-fsbi9cje9m.gz differ diff --git a/src/dotnet/QuantEngine.Web/obj/Debug/net10.0/compressed/ykh8zi7pka-{0}-63fj8s7r0e-63fj8s7r0e.gz b/src/dotnet/QuantEngine.Web/obj/Debug/net10.0/compressed/ykh8zi7pka-{0}-63fj8s7r0e-63fj8s7r0e.gz new file mode 100644 index 0000000..df4317d Binary files /dev/null and b/src/dotnet/QuantEngine.Web/obj/Debug/net10.0/compressed/ykh8zi7pka-{0}-63fj8s7r0e-63fj8s7r0e.gz differ diff --git a/src/dotnet/QuantEngine.Web/obj/Debug/net10.0/compressed/yyzux970us-{0}-aexeepp0ev-aexeepp0ev.gz b/src/dotnet/QuantEngine.Web/obj/Debug/net10.0/compressed/yyzux970us-{0}-aexeepp0ev-aexeepp0ev.gz new file mode 100644 index 0000000..3379da1 Binary files /dev/null and b/src/dotnet/QuantEngine.Web/obj/Debug/net10.0/compressed/yyzux970us-{0}-aexeepp0ev-aexeepp0ev.gz differ diff --git a/src/dotnet/QuantEngine.Web/obj/Debug/net10.0/compressed/z9wv7fs72k-{0}-pj5nd1wqec-pj5nd1wqec.gz b/src/dotnet/QuantEngine.Web/obj/Debug/net10.0/compressed/z9wv7fs72k-{0}-pj5nd1wqec-pj5nd1wqec.gz new file mode 100644 index 0000000..886656b Binary files /dev/null and b/src/dotnet/QuantEngine.Web/obj/Debug/net10.0/compressed/z9wv7fs72k-{0}-pj5nd1wqec-pj5nd1wqec.gz differ diff --git a/src/dotnet/QuantEngine.Web/obj/Debug/net10.0/rbcswa.dswa.cache.json b/src/dotnet/QuantEngine.Web/obj/Debug/net10.0/rbcswa.dswa.cache.json new file mode 100644 index 0000000..1901c1a --- /dev/null +++ b/src/dotnet/QuantEngine.Web/obj/Debug/net10.0/rbcswa.dswa.cache.json @@ -0,0 +1 @@ +{"GlobalPropertiesHash":"2ilJ2M8+ZdH0swl4cXFj9Ji8kay0R08ISE/fEc+OL0o=","FingerprintPatternsHash":"8ZRc1sGeVrPBx4lD717BgRaQekyh78QKV9SKsdt638U=","PropertyOverridesHash":"8ZRc1sGeVrPBx4lD717BgRaQekyh78QKV9SKsdt638U=","InputHashes":["AeDAoyJ/Rh34bWO7eH90LY68cw2pvGedC6Ac8CTx4pw=","8S5hjbN5\u002B0H2Zi92OfIEqcLSfzCkrE28av0KQG5NFm8=","5XMcMkYb7m0zfthoIAXYfuEnOEoOs6\u002BGwHRbt09dTpI=","Jr9PpA/3yG1VxbSIXmuK7Ps3BG5rgLpaPeEJlF4bIco=","FlsA6Ha43MhaNrm9KtRCB0vTwtgXF33sFaXbkxURev8=","CK6W7ail9XE2nqgOer/0/8vinu6YG2xRonxDRyG3yp4=","c/erYmVgKKO53ABi\u002B5n8\u002BCPvxObRXqNJd1nhD\u002B3RoyM=","PY3Hikrym5xmSDjU4nUguG/tOsb3kNo4qEyihacG6HE=","2zaqWcJ7nfJwi5EwsPSf\u002B0bCIn0Eu8Z5jQWdf9\u002BIaCM=","LTgdarWlaL0vRWtl3APkEP79dhHhMFrZAR\u002BOJzaZZqo=","AeiwRwx3JpxIiDSO1hBxlrj3fifI7DdHBq/Eligof\u002Bw=","4GBgLmvoZlfs585u8jGEp6ohlynL/bbeeoWC7Gq3YrU=","7SoyQ8a1pHAeYB3k4C\u002BuGLHvc1lSo1g2is4jzVOcRPc=","zV06XhBpOsz/TmuKjiRM3A399cTXEAJeFTmKs6KouOA=","ynEla1PXRR77sce3C2RGtn\u002Bu\u002BNNovpFm2EEstT98s3g=","lGGsXm8QNoJNB9J7mFprALTVRPDqeyrGheocnIj52\u002BU=","AmHQV2Yjim5dXtzOPauCZkbtofnVH5Sx8AuRG/KVawc=","j5wR5\u002BvQ2PiQH/Dz3sZrVRlln9sGkWI9/99hZpvDgCA=","Da7ug8s/pT\u002BofLPpmY7vK\u002BaufimOfJMOpGRk73KmXOo=","mkMyhOMjdSCawThNXl1LcLL4v33b1qfDWcbOBDmxtWk=","aerlVDp\u002BmKjI9e53U7oWmTIGBNGjIrf/C6tDvWT9hkM=","NduemTF9nILK6DAGLF/seV2QmT3RR5L9EuVw0ygqiZE=","7BHdXKqRT3tE1cDy66UZsgqQb2kgHRaQvHQT7oIt31Y=","LidfT\u002BBNUZDmPcqTabDsEJyBmwPBN2FkKzLcfisjDjI=","ru1PK10izjFfhB53OX4L07agd\u002BFvO3wfQQeJusDRUOI=","t2DYUiGfSSwjFiKz4N3160i\u002BM5NQFfraXvjWUSyLwd8=","Qnrvvr9wB5YOO95EnwT8tXiWOaVFjNYKsgYC0soDAqY=","hZTGTv1ginBCkdwO7WelGaAvFCDhfJ6q8\u002Bhoh4UdVCI=","VDywKaSw0pVUJueCTxJ48/nVrItKx/O7Jd\u002Bw33kEBR4=","tc\u002BaMu1tnvzM8z7Sq7lbDwbfAYH/8XSjSg5ji\u002B0gW8o=","nEdzmG\u002BdOlRCU7FI78RwPvBxuZ4hP9Bws0uCCMS125A=","ugHBoZlCyoovJHQfn1qutfiEj7dspWXjvTMBjcq6GEY=","g6yRXZffgb5BQiLnCnRqweym6h2E6X/J4Z9eyrMZi8w=","UVrHcC\u002BEbrnTQmW8MJ7rbMpa6g6KlJg6f9SaAZThfQ0=","DOyItm9njfGHnU8DccHSPx6wcnaSdchO64iAOwHZLO0=","YXOgvLd/\u002B2/2Kk4hXWhDwRpUMuNIQhK2ZFAqjEVRwH4=","x8vXgsmivznTZaLilDbjMWsXmw5MyYeS4ulh7gIOe4s=","73UTEbl4iuyD10Q4FF\u002Bt0QuKJckt/xssXkRf9oIdrfg=","lSN/XvIrc6hRxs6/n8NWXt3tBhA2Nr4JRXzPXsPnKx0=","Vrfvp7wKAEMq57Q5yUNvioaiGrXsbQK94MGCVOwjV/0=","RHMZiS3EjP5KBtYyk47dwa\u002BTkPu0A44\u002BQDFh7JB\u002Bl9s=","aLwiiT/BEN0k/Kw6gDjQC3OZaGbhx0TJDPIcQGzEasI=","uEa6DKu8iAugY5rRtT9fDpGSNemdkU1Wen4lZjTINK8=","ywBwyH1fuXhWo8FLjmmOAasChn1Oy6nj0BOzPXEHf6c=","ysM9j9rsJx04X11FYh6dhJLkvr6pJOobXhFIPqjQaRA=","j61HTeRzaTSC4j2dBPks0Jo4mqRlzhGHGJyLtxunrxM=","tEHE5MHFYfXT79H0aVbXQssp\u002BVdp3DyIeP/lA9cGjHo=","S76L1vTW\u002BuBxH5Cmz6UWCNA46kLHSIJj8Tqw2l/rJ3E=","sJurbuk1tZ8c8VpngUTLQu911JXZNLPRbzCVlRHRfXY=","4Efdao3G\u002BXn1fHisgVFDAbx4XnZ58BXRZZ1UxeUz8cI="],"CachedAssets":{"ysM9j9rsJx04X11FYh6dhJLkvr6pJOobXhFIPqjQaRA=":{"Identity":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Debug\\net10.0\\compressed\\q2w3mddmwi-{0}-4c8rkwezul-4c8rkwezul.gz","SourceId":"QuantEngine.Web","SourceType":"Discovered","ContentRoot":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"app#[.{fingerprint=4c8rkwezul}]?.css.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\app.css","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"231480yupm","Integrity":"gnkzj8DwujHnit2MwKgV6YdKLWzKFbNT467LEBsdMTs=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\app.css","FileLength":1863,"LastWriteTime":"2026-06-25T06:51:47.7129008+00:00"},"AeDAoyJ/Rh34bWO7eH90LY68cw2pvGedC6Ac8CTx4pw=":{"Identity":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Debug\\net10.0\\compressed\\dgr8mv739g-{0}-bqjiyaj88i-bqjiyaj88i.gz","SourceId":"QuantEngine.Web","SourceType":"Discovered","ContentRoot":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"lib/bootstrap/dist/css/bootstrap-grid#[.{fingerprint=bqjiyaj88i}]?.css.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-grid.css","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"yf1pcrzlgs","Integrity":"jhvPrvWZn8BbeR49W\u002Br\u002BMLNcnTeFyaSXxry9n1ctwy4=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-grid.css","FileLength":6745,"LastWriteTime":"2026-06-25T06:35:09.6985497+00:00"},"8S5hjbN5\u002B0H2Zi92OfIEqcLSfzCkrE28av0KQG5NFm8=":{"Identity":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Debug\\net10.0\\compressed\\l0f1c41wbh-{0}-c2jlpeoesf-c2jlpeoesf.gz","SourceId":"QuantEngine.Web","SourceType":"Discovered","ContentRoot":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"lib/bootstrap/dist/css/bootstrap-grid.css#[.{fingerprint=c2jlpeoesf}]?.map.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-grid.css.map","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"goh6yfn9uv","Integrity":"ALPf6qsZMu\u002BUi8l8jPJJF3MhTcq6uwrQhRWeWJL4ixU=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-grid.css.map","FileLength":32794,"LastWriteTime":"2026-06-25T06:35:09.7304367+00:00"},"5XMcMkYb7m0zfthoIAXYfuEnOEoOs6\u002BGwHRbt09dTpI=":{"Identity":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Debug\\net10.0\\compressed\\ny3xbgedo0-{0}-erw9l3u2r3-erw9l3u2r3.gz","SourceId":"QuantEngine.Web","SourceType":"Discovered","ContentRoot":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"lib/bootstrap/dist/css/bootstrap-grid.min#[.{fingerprint=erw9l3u2r3}]?.css.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-grid.min.css","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"ff2i3b225l","Integrity":"y2vSlIdcL\u002BImKFhcBMT5ujdAP1cyOZlHZK434Aiu0KA=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-grid.min.css","FileLength":5969,"LastWriteTime":"2026-06-25T06:35:09.6626318+00:00"},"Jr9PpA/3yG1VxbSIXmuK7Ps3BG5rgLpaPeEJlF4bIco=":{"Identity":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Debug\\net10.0\\compressed\\yyzux970us-{0}-aexeepp0ev-aexeepp0ev.gz","SourceId":"QuantEngine.Web","SourceType":"Discovered","ContentRoot":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"lib/bootstrap/dist/css/bootstrap-grid.min.css#[.{fingerprint=aexeepp0ev}]?.map.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-grid.min.css.map","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"vsujj85h0t","Integrity":"UTpk2w6Qfw\u002BRUZtUsUuWDVrQXTEdgzIWiLHb7gDcZZc=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-grid.min.css.map","FileLength":13822,"LastWriteTime":"2026-06-25T06:35:09.6949029+00:00"},"FlsA6Ha43MhaNrm9KtRCB0vTwtgXF33sFaXbkxURev8=":{"Identity":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Debug\\net10.0\\compressed\\s8tfmvcl6l-{0}-d7shbmvgxk-d7shbmvgxk.gz","SourceId":"QuantEngine.Web","SourceType":"Discovered","ContentRoot":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"lib/bootstrap/dist/css/bootstrap-grid.rtl#[.{fingerprint=d7shbmvgxk}]?.css.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-grid.rtl.css","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"td9xh3ux7u","Integrity":"P5V7Xl3ceCLw6wDeOyAezE6gOa9re3B7gTUN/H/cDsY=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-grid.rtl.css","FileLength":6749,"LastWriteTime":"2026-06-25T06:35:09.7192855+00:00"},"CK6W7ail9XE2nqgOer/0/8vinu6YG2xRonxDRyG3yp4=":{"Identity":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Debug\\net10.0\\compressed\\buy0lgnna4-{0}-ausgxo2sd3-ausgxo2sd3.gz","SourceId":"QuantEngine.Web","SourceType":"Discovered","ContentRoot":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"lib/bootstrap/dist/css/bootstrap-grid.rtl.css#[.{fingerprint=ausgxo2sd3}]?.map.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-grid.rtl.css.map","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"vo1c50q1ou","Integrity":"cWfRgogdfOCr54Ae/lxY515FP4TJyUwc4Ae6uejBPI0=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-grid.rtl.css.map","FileLength":32793,"LastWriteTime":"2026-06-25T06:35:09.6669537+00:00"},"c/erYmVgKKO53ABi\u002B5n8\u002BCPvxObRXqNJd1nhD\u002B3RoyM=":{"Identity":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Debug\\net10.0\\compressed\\rftpckz71e-{0}-k8d9w2qqmf-k8d9w2qqmf.gz","SourceId":"QuantEngine.Web","SourceType":"Discovered","ContentRoot":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"lib/bootstrap/dist/css/bootstrap-grid.rtl.min#[.{fingerprint=k8d9w2qqmf}]?.css.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-grid.rtl.min.css","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"2yj3hsx47l","Integrity":"ujhFfu7SIw4cL8FWI0ezmD29C7bGSesJvlEcySm5beY=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-grid.rtl.min.css","FileLength":5971,"LastWriteTime":"2026-06-25T06:35:09.6922373+00:00"},"PY3Hikrym5xmSDjU4nUguG/tOsb3kNo4qEyihacG6HE=":{"Identity":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Debug\\net10.0\\compressed\\1xufxwh45d-{0}-cosvhxvwiu-cosvhxvwiu.gz","SourceId":"QuantEngine.Web","SourceType":"Discovered","ContentRoot":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css#[.{fingerprint=cosvhxvwiu}]?.map.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-grid.rtl.min.css.map","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"b3w75f5vch","Integrity":"yZDV5sXfkOihH9inqXh6D0ZmlFp3/eRZrXuPmmaGXhA=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-grid.rtl.min.css.map","FileLength":13829,"LastWriteTime":"2026-06-25T06:35:09.7310276+00:00"},"2zaqWcJ7nfJwi5EwsPSf\u002B0bCIn0Eu8Z5jQWdf9\u002BIaCM=":{"Identity":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Debug\\net10.0\\compressed\\110gjqadz3-{0}-ub07r2b239-ub07r2b239.gz","SourceId":"QuantEngine.Web","SourceType":"Discovered","ContentRoot":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"lib/bootstrap/dist/css/bootstrap-reboot#[.{fingerprint=ub07r2b239}]?.css.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-reboot.css","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"4tzbrq9c6f","Integrity":"\u002BEIaQ03ZHgfVopnrJFjz7ZgQSAO9GeMOK\u002BbzccTIQyE=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-reboot.css","FileLength":3380,"LastWriteTime":"2026-06-25T06:35:09.6626318+00:00"},"LTgdarWlaL0vRWtl3APkEP79dhHhMFrZAR\u002BOJzaZZqo=":{"Identity":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Debug\\net10.0\\compressed\\moveir2wlt-{0}-fvhpjtyr6v-fvhpjtyr6v.gz","SourceId":"QuantEngine.Web","SourceType":"Discovered","ContentRoot":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"lib/bootstrap/dist/css/bootstrap-reboot.css#[.{fingerprint=fvhpjtyr6v}]?.map.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-reboot.css.map","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"a7s6g2nqt8","Integrity":"uuPRBE\u002BKJ7rhQC/ul/m33YS7RxoQPGY3ZcuTz6\u002BooTc=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-reboot.css.map","FileLength":25822,"LastWriteTime":"2026-06-25T06:35:09.6909102+00:00"},"AeiwRwx3JpxIiDSO1hBxlrj3fifI7DdHBq/Eligof\u002Bw=":{"Identity":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Debug\\net10.0\\compressed\\i5gc3220r3-{0}-b7pk76d08c-b7pk76d08c.gz","SourceId":"QuantEngine.Web","SourceType":"Discovered","ContentRoot":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"lib/bootstrap/dist/css/bootstrap-reboot.min#[.{fingerprint=b7pk76d08c}]?.css.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-reboot.min.css","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"r79n6nskqp","Integrity":"Z9B/f6Ax/2JeBbNo3F1oaFvmOzRvs3yS0nnykt272Wc=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-reboot.min.css","FileLength":3213,"LastWriteTime":"2026-06-25T06:35:09.7119927+00:00"},"4GBgLmvoZlfs585u8jGEp6ohlynL/bbeeoWC7Gq3YrU=":{"Identity":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Debug\\net10.0\\compressed\\xhunqdkvqb-{0}-fsbi9cje9m-fsbi9cje9m.gz","SourceId":"QuantEngine.Web","SourceType":"Discovered","ContentRoot":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"lib/bootstrap/dist/css/bootstrap-reboot.min.css#[.{fingerprint=fsbi9cje9m}]?.map.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-reboot.min.css.map","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"1zet6b707b","Integrity":"88yfwCB1JJrw5DzTwttuDUNRg1MC/QUUovOQTnyxGHA=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-reboot.min.css.map","FileLength":12586,"LastWriteTime":"2026-06-25T06:35:09.6636313+00:00"},"7SoyQ8a1pHAeYB3k4C\u002BuGLHvc1lSo1g2is4jzVOcRPc=":{"Identity":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Debug\\net10.0\\compressed\\gomvvqnjlm-{0}-rzd6atqjts-rzd6atqjts.gz","SourceId":"QuantEngine.Web","SourceType":"Discovered","ContentRoot":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"lib/bootstrap/dist/css/bootstrap-reboot.rtl#[.{fingerprint=rzd6atqjts}]?.css.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-reboot.rtl.css","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"ukcr8jbv0r","Integrity":"bhwmNaLC/7dOUfZxpXsnreiNsp2lbllRXrZLXndYFgA=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-reboot.rtl.css","FileLength":3367,"LastWriteTime":"2026-06-25T06:35:09.7005544+00:00"},"zV06XhBpOsz/TmuKjiRM3A399cTXEAJeFTmKs6KouOA=":{"Identity":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Debug\\net10.0\\compressed\\c34v41vs4l-{0}-ee0r1s7dh0-ee0r1s7dh0.gz","SourceId":"QuantEngine.Web","SourceType":"Discovered","ContentRoot":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.css#[.{fingerprint=ee0r1s7dh0}]?.map.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-reboot.rtl.css.map","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"uoletomx83","Integrity":"sl2J4PyaPSvjqR/Hna2zAWkp1RoiFiSsNBf28UxmegA=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-reboot.rtl.css.map","FileLength":25833,"LastWriteTime":"2026-06-25T06:35:09.7327805+00:00"},"ynEla1PXRR77sce3C2RGtn\u002Bu\u002BNNovpFm2EEstT98s3g=":{"Identity":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Debug\\net10.0\\compressed\\0p7lrldjgj-{0}-dxx9fxp4il-dxx9fxp4il.gz","SourceId":"QuantEngine.Web","SourceType":"Discovered","ContentRoot":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.min#[.{fingerprint=dxx9fxp4il}]?.css.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-reboot.rtl.min.css","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"cv8bd5rjwi","Integrity":"qNJnRAEMymFdtmi8gvc2VbVtDDk/UjeSnp\u002BVQ10\u002Bcl0=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-reboot.rtl.min.css","FileLength":3246,"LastWriteTime":"2026-06-25T06:35:09.6669537+00:00"},"lGGsXm8QNoJNB9J7mFprALTVRPDqeyrGheocnIj52\u002BU=":{"Identity":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Debug\\net10.0\\compressed\\0auc0xnlsy-{0}-jd9uben2k1-jd9uben2k1.gz","SourceId":"QuantEngine.Web","SourceType":"Discovered","ContentRoot":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css#[.{fingerprint=jd9uben2k1}]?.map.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-reboot.rtl.min.css.map","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"nzry3760zn","Integrity":"M4FJKHpyw4IJV5nzbfV0Vwvv60A8wkjnquz6IK029pA=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-reboot.rtl.min.css.map","FileLength":15095,"LastWriteTime":"2026-06-25T06:35:09.6929754+00:00"},"AmHQV2Yjim5dXtzOPauCZkbtofnVH5Sx8AuRG/KVawc=":{"Identity":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Debug\\net10.0\\compressed\\pbeu27ik9w-{0}-khv3u5hwcm-khv3u5hwcm.gz","SourceId":"QuantEngine.Web","SourceType":"Discovered","ContentRoot":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"lib/bootstrap/dist/css/bootstrap-utilities#[.{fingerprint=khv3u5hwcm}]?.css.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-utilities.css","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"bub42mguo1","Integrity":"8\u002B5oxr92QYcYeV3zAk8RS4XmZo6Y5i3ZmbiJXj9KVQo=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-utilities.css","FileLength":11991,"LastWriteTime":"2026-06-25T06:35:09.7162644+00:00"},"j5wR5\u002BvQ2PiQH/Dz3sZrVRlln9sGkWI9/99hZpvDgCA=":{"Identity":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Debug\\net10.0\\compressed\\79raj0bcrr-{0}-r4e9w2rdcm-r4e9w2rdcm.gz","SourceId":"QuantEngine.Web","SourceType":"Discovered","ContentRoot":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"lib/bootstrap/dist/css/bootstrap-utilities.css#[.{fingerprint=r4e9w2rdcm}]?.map.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-utilities.css.map","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"xl5q2t2qh8","Integrity":"G\u002BvjiEeP6kST5cIl0dMgkpqYVHtGzW2FoEEhPm8uXFQ=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-utilities.css.map","FileLength":44124,"LastWriteTime":"2026-06-25T06:35:09.6713545+00:00"},"Da7ug8s/pT\u002BofLPpmY7vK\u002BaufimOfJMOpGRk73KmXOo=":{"Identity":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Debug\\net10.0\\compressed\\jqrauj2svw-{0}-lcd1t2u6c8-lcd1t2u6c8.gz","SourceId":"QuantEngine.Web","SourceType":"Discovered","ContentRoot":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"lib/bootstrap/dist/css/bootstrap-utilities.min#[.{fingerprint=lcd1t2u6c8}]?.css.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-utilities.min.css","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"iqwesyid6h","Integrity":"xp5LPZ0vlqmxQrG\u002BKjPm7ijhhJ\u002BgD7VeH35lOUwBTWM=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-utilities.min.css","FileLength":11063,"LastWriteTime":"2026-06-25T06:35:09.6985497+00:00"},"mkMyhOMjdSCawThNXl1LcLL4v33b1qfDWcbOBDmxtWk=":{"Identity":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Debug\\net10.0\\compressed\\pj5n2mkkzw-{0}-c2oey78nd0-c2oey78nd0.gz","SourceId":"QuantEngine.Web","SourceType":"Discovered","ContentRoot":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"lib/bootstrap/dist/css/bootstrap-utilities.min.css#[.{fingerprint=c2oey78nd0}]?.map.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-utilities.min.css.map","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"x3ccebqzaz","Integrity":"TQK1gkY5TwZe0PcEU9oPCPHWKcNR7OXqgO0AeBYCb3U=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-utilities.min.css.map","FileLength":24352,"LastWriteTime":"2026-06-25T06:35:09.7203062+00:00"},"aerlVDp\u002BmKjI9e53U7oWmTIGBNGjIrf/C6tDvWT9hkM=":{"Identity":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Debug\\net10.0\\compressed\\dt9lb9me9i-{0}-tdbxkamptv-tdbxkamptv.gz","SourceId":"QuantEngine.Web","SourceType":"Discovered","ContentRoot":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"lib/bootstrap/dist/css/bootstrap-utilities.rtl#[.{fingerprint=tdbxkamptv}]?.css.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-utilities.rtl.css","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"c9nucnnawf","Integrity":"QAnDcxiLhrclwEVeKtd/GREdZNbXO2rZP5agorcS5EM=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-utilities.rtl.css","FileLength":11933,"LastWriteTime":"2026-06-25T06:35:09.6669537+00:00"},"NduemTF9nILK6DAGLF/seV2QmT3RR5L9EuVw0ygqiZE=":{"Identity":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Debug\\net10.0\\compressed\\lwh7ckeki7-{0}-j5mq2jizvt-j5mq2jizvt.gz","SourceId":"QuantEngine.Web","SourceType":"Discovered","ContentRoot":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.css#[.{fingerprint=j5mq2jizvt}]?.map.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-utilities.rtl.css.map","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"7tueh08f2r","Integrity":"e4SKSeUBYAMQYk9aT6NqaEr3vUfkTqZB8L0KIC7EPak=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-utilities.rtl.css.map","FileLength":44097,"LastWriteTime":"2026-06-25T06:35:09.6995506+00:00"},"7BHdXKqRT3tE1cDy66UZsgqQb2kgHRaQvHQT7oIt31Y=":{"Identity":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Debug\\net10.0\\compressed\\4cblaxq6jh-{0}-06098lyss8-06098lyss8.gz","SourceId":"QuantEngine.Web","SourceType":"Discovered","ContentRoot":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.min#[.{fingerprint=06098lyss8}]?.css.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-utilities.rtl.min.css","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"1dromj56xs","Integrity":"hXLxKxNQS6hkMWOc1Po5uxTK8ovzNg0xvRC9wMKOZiM=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-utilities.rtl.min.css","FileLength":11046,"LastWriteTime":"2026-06-25T06:35:09.7203062+00:00"},"LidfT\u002BBNUZDmPcqTabDsEJyBmwPBN2FkKzLcfisjDjI=":{"Identity":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Debug\\net10.0\\compressed\\44s2eqp64d-{0}-nvvlpmu67g-nvvlpmu67g.gz","SourceId":"QuantEngine.Web","SourceType":"Discovered","ContentRoot":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css#[.{fingerprint=nvvlpmu67g}]?.map.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-utilities.rtl.min.css.map","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"sh96df5cjm","Integrity":"cHE9/Oryzx3rvDz6rg6kwVAGdOFlXOCmBgU/SG5fJjA=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-utilities.rtl.min.css.map","FileLength":24308,"LastWriteTime":"2026-06-25T06:35:09.6713545+00:00"},"ru1PK10izjFfhB53OX4L07agd\u002BFvO3wfQQeJusDRUOI=":{"Identity":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Debug\\net10.0\\compressed\\gcxof6xqvd-{0}-s35ty4nyc5-s35ty4nyc5.gz","SourceId":"QuantEngine.Web","SourceType":"Discovered","ContentRoot":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"lib/bootstrap/dist/css/bootstrap#[.{fingerprint=s35ty4nyc5}]?.css.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap.css","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"q82kg63fyj","Integrity":"pt\u002BWNxTLLUqq6vRWwSTT2gtyBZCFg8ZA7nmeS\u002B5\u002BZ/s=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap.css","FileLength":33258,"LastWriteTime":"2026-06-25T06:35:09.7090215+00:00"},"t2DYUiGfSSwjFiKz4N3160i\u002BM5NQFfraXvjWUSyLwd8=":{"Identity":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Debug\\net10.0\\compressed\\z9wv7fs72k-{0}-pj5nd1wqec-pj5nd1wqec.gz","SourceId":"QuantEngine.Web","SourceType":"Discovered","ContentRoot":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"lib/bootstrap/dist/css/bootstrap.css#[.{fingerprint=pj5nd1wqec}]?.map.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap.css.map","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"styftcjj6c","Integrity":"8MRqubXMeZHymG3Y\u002BUqns/oONNVcvUoxMPBYRNZmiNs=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap.css.map","FileLength":115016,"LastWriteTime":"2026-06-25T06:35:09.7521981+00:00"},"Qnrvvr9wB5YOO95EnwT8tXiWOaVFjNYKsgYC0soDAqY=":{"Identity":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Debug\\net10.0\\compressed\\4072jq1i2h-{0}-46ein0sx1k-46ein0sx1k.gz","SourceId":"QuantEngine.Web","SourceType":"Discovered","ContentRoot":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"lib/bootstrap/dist/css/bootstrap.min#[.{fingerprint=46ein0sx1k}]?.css.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap.min.css","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"qdu3l469pp","Integrity":"ct6gh3bWPabPIUEmUcCXl7mxgr/V6roHfypeQaXerHU=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap.min.css","FileLength":30970,"LastWriteTime":"2026-06-25T06:35:09.6713545+00:00"},"hZTGTv1ginBCkdwO7WelGaAvFCDhfJ6q8\u002Bhoh4UdVCI=":{"Identity":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Debug\\net10.0\\compressed\\a4eqfiv3ub-{0}-v0zj4ognzu-v0zj4ognzu.gz","SourceId":"QuantEngine.Web","SourceType":"Discovered","ContentRoot":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"lib/bootstrap/dist/css/bootstrap.min.css#[.{fingerprint=v0zj4ognzu}]?.map.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap.min.css.map","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"ofsc0aqs07","Integrity":"9CI2KGakklFWR2ih9heBHyKNfnUGsALtlWASIJRc25A=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap.min.css.map","FileLength":91823,"LastWriteTime":"2026-06-25T06:35:09.7218189+00:00"},"VDywKaSw0pVUJueCTxJ48/nVrItKx/O7Jd\u002Bw33kEBR4=":{"Identity":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Debug\\net10.0\\compressed\\rg0bjkw6wb-{0}-37tfw0ft22-37tfw0ft22.gz","SourceId":"QuantEngine.Web","SourceType":"Discovered","ContentRoot":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"lib/bootstrap/dist/css/bootstrap.rtl#[.{fingerprint=37tfw0ft22}]?.css.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap.rtl.css","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"mefuw9cu11","Integrity":"fs1OjihDYC1UL3EjGsC/xVxgtu8ombjnF8kOmQxQ\u002BMo=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap.rtl.css","FileLength":33108,"LastWriteTime":"2026-06-25T06:35:09.7482143+00:00"},"tc\u002BaMu1tnvzM8z7Sq7lbDwbfAYH/8XSjSg5ji\u002B0gW8o=":{"Identity":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Debug\\net10.0\\compressed\\jomvpxly64-{0}-hrwsygsryq-hrwsygsryq.gz","SourceId":"QuantEngine.Web","SourceType":"Discovered","ContentRoot":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"lib/bootstrap/dist/css/bootstrap.rtl.css#[.{fingerprint=hrwsygsryq}]?.map.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap.rtl.css.map","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"n9eqbjfi82","Integrity":"u1Hpz3sxsOpr\u002BltBsyKbue1Mz8VL9c8goySlIAwPCh8=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap.rtl.css.map","FileLength":114959,"LastWriteTime":"2026-06-25T06:35:09.6824814+00:00"},"nEdzmG\u002BdOlRCU7FI78RwPvBxuZ4hP9Bws0uCCMS125A=":{"Identity":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Debug\\net10.0\\compressed\\u4l44l4mup-{0}-pk9g2wxc8p-pk9g2wxc8p.gz","SourceId":"QuantEngine.Web","SourceType":"Discovered","ContentRoot":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"lib/bootstrap/dist/css/bootstrap.rtl.min#[.{fingerprint=pk9g2wxc8p}]?.css.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap.rtl.min.css","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"zqhq0cwegi","Integrity":"WwwE\u002B3A7x1trge8XZeN9oKwkvd6mA0Oad5mAbTfmMtQ=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap.rtl.min.css","FileLength":30992,"LastWriteTime":"2026-06-25T06:35:09.7021+00:00"},"ugHBoZlCyoovJHQfn1qutfiEj7dspWXjvTMBjcq6GEY=":{"Identity":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Debug\\net10.0\\compressed\\s45yklcy5s-{0}-ft3s53vfgj-ft3s53vfgj.gz","SourceId":"QuantEngine.Web","SourceType":"Discovered","ContentRoot":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"lib/bootstrap/dist/css/bootstrap.rtl.min.css#[.{fingerprint=ft3s53vfgj}]?.map.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap.rtl.min.css.map","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"57zd6ih4o4","Integrity":"j64rFxRLhZHmUPsE/gjIPruUNUfXs1ivjm1eS9HMeoo=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap.rtl.min.css.map","FileLength":91715,"LastWriteTime":"2026-06-25T06:35:09.7477001+00:00"},"g6yRXZffgb5BQiLnCnRqweym6h2E6X/J4Z9eyrMZi8w=":{"Identity":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Debug\\net10.0\\compressed\\ryegp6ubqi-{0}-6cfz1n2cew-6cfz1n2cew.gz","SourceId":"QuantEngine.Web","SourceType":"Discovered","ContentRoot":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"lib/bootstrap/dist/js/bootstrap.bundle#[.{fingerprint=6cfz1n2cew}]?.js.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\lib\\bootstrap\\dist\\js\\bootstrap.bundle.js","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"xq6bctm6a0","Integrity":"FwlVZHaqt/fCokCRPrJXpP3g8Xz8yowIwHYza63e5sA=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\lib\\bootstrap\\dist\\js\\bootstrap.bundle.js","FileLength":44353,"LastWriteTime":"2026-06-25T06:35:09.6750591+00:00"},"UVrHcC\u002BEbrnTQmW8MJ7rbMpa6g6KlJg6f9SaAZThfQ0=":{"Identity":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Debug\\net10.0\\compressed\\gfm26p5c1q-{0}-6pdc2jztkx-6pdc2jztkx.gz","SourceId":"QuantEngine.Web","SourceType":"Discovered","ContentRoot":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"lib/bootstrap/dist/js/bootstrap.bundle.js#[.{fingerprint=6pdc2jztkx}]?.map.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\lib\\bootstrap\\dist\\js\\bootstrap.bundle.js.map","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"teo9u7j6tg","Integrity":"1e0S5mPPo/9Qad4mnR2UVH1bu8Tevi6r\u002BJvHAAykgfg=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\lib\\bootstrap\\dist\\js\\bootstrap.bundle.js.map","FileLength":92072,"LastWriteTime":"2026-06-25T06:35:09.714098+00:00"},"DOyItm9njfGHnU8DccHSPx6wcnaSdchO64iAOwHZLO0=":{"Identity":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Debug\\net10.0\\compressed\\wh1z5habmz-{0}-493y06b0oq-493y06b0oq.gz","SourceId":"QuantEngine.Web","SourceType":"Discovered","ContentRoot":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"lib/bootstrap/dist/js/bootstrap.bundle.min#[.{fingerprint=493y06b0oq}]?.js.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\lib\\bootstrap\\dist\\js\\bootstrap.bundle.min.js","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"9t6fi9687k","Integrity":"PUb7rj1jLHgIo7Hwm3lvukBcGKDry7n7W2fa1xrz\u002BzY=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\lib\\bootstrap\\dist\\js\\bootstrap.bundle.min.js","FileLength":23984,"LastWriteTime":"2026-06-25T06:35:09.7368535+00:00"},"YXOgvLd/\u002B2/2Kk4hXWhDwRpUMuNIQhK2ZFAqjEVRwH4=":{"Identity":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Debug\\net10.0\\compressed\\oog3rser0x-{0}-iovd86k7lj-iovd86k7lj.gz","SourceId":"QuantEngine.Web","SourceType":"Discovered","ContentRoot":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"lib/bootstrap/dist/js/bootstrap.bundle.min.js#[.{fingerprint=iovd86k7lj}]?.map.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\lib\\bootstrap\\dist\\js\\bootstrap.bundle.min.js.map","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"ffl9ue03p7","Integrity":"u2o8ZZaXgiYQGBSiviq197ts6elMTLIFCM5h/r\u002BYzpI=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\lib\\bootstrap\\dist\\js\\bootstrap.bundle.min.js.map","FileLength":86961,"LastWriteTime":"2026-06-25T06:35:09.6792606+00:00"},"x8vXgsmivznTZaLilDbjMWsXmw5MyYeS4ulh7gIOe4s=":{"Identity":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Debug\\net10.0\\compressed\\dd5v02aqjc-{0}-vr1egmr9el-vr1egmr9el.gz","SourceId":"QuantEngine.Web","SourceType":"Discovered","ContentRoot":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"lib/bootstrap/dist/js/bootstrap.esm#[.{fingerprint=vr1egmr9el}]?.js.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\lib\\bootstrap\\dist\\js\\bootstrap.esm.js","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"ewj29n48yh","Integrity":"wol\u002BHTj/xiv1aZ5rAh91hRF83nnYHIOeqPJDujYZBV4=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\lib\\bootstrap\\dist\\js\\bootstrap.esm.js","FileLength":28851,"LastWriteTime":"2026-06-25T06:35:09.7052854+00:00"},"73UTEbl4iuyD10Q4FF\u002Bt0QuKJckt/xssXkRf9oIdrfg=":{"Identity":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Debug\\net10.0\\compressed\\61rmegrlmv-{0}-kbrnm935zg-kbrnm935zg.gz","SourceId":"QuantEngine.Web","SourceType":"Discovered","ContentRoot":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"lib/bootstrap/dist/js/bootstrap.esm.js#[.{fingerprint=kbrnm935zg}]?.map.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\lib\\bootstrap\\dist\\js\\bootstrap.esm.js.map","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"09larch0sh","Integrity":"FEVLoM8EBjBfNDxtN98NEdEJHpCjMxcAkjqPlv3oXEc=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\lib\\bootstrap\\dist\\js\\bootstrap.esm.js.map","FileLength":64134,"LastWriteTime":"2026-06-25T06:35:09.7411787+00:00"},"lSN/XvIrc6hRxs6/n8NWXt3tBhA2Nr4JRXzPXsPnKx0=":{"Identity":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Debug\\net10.0\\compressed\\0x3oeluflx-{0}-jj8uyg4cgr-jj8uyg4cgr.gz","SourceId":"QuantEngine.Web","SourceType":"Discovered","ContentRoot":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"lib/bootstrap/dist/js/bootstrap.esm.min#[.{fingerprint=jj8uyg4cgr}]?.js.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\lib\\bootstrap\\dist\\js\\bootstrap.esm.min.js","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"erkthljg5u","Integrity":"WmNnoBgejwchZUYVA3o03QOAGOuMRS778DeXvhP6suo=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\lib\\bootstrap\\dist\\js\\bootstrap.esm.min.js","FileLength":18635,"LastWriteTime":"2026-06-25T06:35:09.6669537+00:00"},"Vrfvp7wKAEMq57Q5yUNvioaiGrXsbQK94MGCVOwjV/0=":{"Identity":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Debug\\net10.0\\compressed\\h7pf8rqo63-{0}-y7v9cxd14o-y7v9cxd14o.gz","SourceId":"QuantEngine.Web","SourceType":"Discovered","ContentRoot":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"lib/bootstrap/dist/js/bootstrap.esm.min.js#[.{fingerprint=y7v9cxd14o}]?.map.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\lib\\bootstrap\\dist\\js\\bootstrap.esm.min.js.map","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"fgg5tvzes2","Integrity":"j6u/zn\u002BGRIVR7DjCioj3tkq2zAKNpSIfRdlNSkhuWuM=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\lib\\bootstrap\\dist\\js\\bootstrap.esm.min.js.map","FileLength":56670,"LastWriteTime":"2026-06-25T06:35:09.6985497+00:00"},"RHMZiS3EjP5KBtYyk47dwa\u002BTkPu0A44\u002BQDFh7JB\u002Bl9s=":{"Identity":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Debug\\net10.0\\compressed\\a1937s5xj1-{0}-notf2xhcfb-notf2xhcfb.gz","SourceId":"QuantEngine.Web","SourceType":"Discovered","ContentRoot":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"lib/bootstrap/dist/js/bootstrap#[.{fingerprint=notf2xhcfb}]?.js.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\lib\\bootstrap\\dist\\js\\bootstrap.js","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"t5fact64or","Integrity":"vxTpQ/skdGaK1fWKJ6bpuKiCsKR5FwPOZXzuVrUcz58=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\lib\\bootstrap\\dist\\js\\bootstrap.js","FileLength":29568,"LastWriteTime":"2026-06-25T06:35:09.7218189+00:00"},"aLwiiT/BEN0k/Kw6gDjQC3OZaGbhx0TJDPIcQGzEasI=":{"Identity":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Debug\\net10.0\\compressed\\a7rq2yiqop-{0}-h1s4sie4z3-h1s4sie4z3.gz","SourceId":"QuantEngine.Web","SourceType":"Discovered","ContentRoot":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"lib/bootstrap/dist/js/bootstrap.js#[.{fingerprint=h1s4sie4z3}]?.map.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\lib\\bootstrap\\dist\\js\\bootstrap.js.map","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"0qg1e9lysy","Integrity":"6GxMyK5YAexwvliYNqeiH6oCqjjSdf0iOFokuntpNcU=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\lib\\bootstrap\\dist\\js\\bootstrap.js.map","FileLength":64434,"LastWriteTime":"2026-06-25T06:35:09.6792606+00:00"},"uEa6DKu8iAugY5rRtT9fDpGSNemdkU1Wen4lZjTINK8=":{"Identity":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Debug\\net10.0\\compressed\\ykh8zi7pka-{0}-63fj8s7r0e-63fj8s7r0e.gz","SourceId":"QuantEngine.Web","SourceType":"Discovered","ContentRoot":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"lib/bootstrap/dist/js/bootstrap.min#[.{fingerprint=63fj8s7r0e}]?.js.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\lib\\bootstrap\\dist\\js\\bootstrap.min.js","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"on09t9pmch","Integrity":"bIPgOT88ycSklHWxEzFQVPvNsgNbss3QQbyTqHho4PA=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\lib\\bootstrap\\dist\\js\\bootstrap.min.js","FileLength":16636,"LastWriteTime":"2026-06-25T06:35:09.6985497+00:00"},"ywBwyH1fuXhWo8FLjmmOAasChn1Oy6nj0BOzPXEHf6c=":{"Identity":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Debug\\net10.0\\compressed\\8q9g0t5yrl-{0}-0j3bgjxly4-0j3bgjxly4.gz","SourceId":"QuantEngine.Web","SourceType":"Discovered","ContentRoot":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"lib/bootstrap/dist/js/bootstrap.min.js#[.{fingerprint=0j3bgjxly4}]?.map.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\lib\\bootstrap\\dist\\js\\bootstrap.min.js.map","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"6bewb6sjbi","Integrity":"jqz3zWDVmly0HcVfO6RQ1Ew/6DCbF9EVmEe2DJdcW6Y=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\lib\\bootstrap\\dist\\js\\bootstrap.min.js.map","FileLength":55850,"LastWriteTime":"2026-06-25T06:35:09.7260712+00:00"},"j61HTeRzaTSC4j2dBPks0Jo4mqRlzhGHGJyLtxunrxM=":{"Identity":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Debug\\net10.0\\compressed\\t9yb5ynpxl-{0}-13ja33weya-13ja33weya.gz","SourceId":"QuantEngine.Web","SourceType":"Discovered","ContentRoot":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"Components/Layout/ReconnectModal#[.{fingerprint=13ja33weya}]?.razor.js.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\Components\\Layout\\ReconnectModal.razor.js","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"7yymvlbkex","Integrity":"kQLxn\u002BTSoZvHHUJJnDORp3qKU0F\u002BkzVxLQB9TB0aEoY=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\Components\\Layout\\ReconnectModal.razor.js","FileLength":720,"LastWriteTime":"2026-06-25T06:35:09.6651521+00:00"},"tEHE5MHFYfXT79H0aVbXQssp\u002BVdp3DyIeP/lA9cGjHo=":{"Identity":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Debug\\net10.0\\compressed\\nr5locadir-{0}-j8lzlu28q6-j8lzlu28q6.gz","SourceId":"QuantEngine.Web","SourceType":"Discovered","ContentRoot":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/blazor.web#[.{fingerprint=j8lzlu28q6}]?.js.gz","AssetKind":"All","AssetMode":"CurrentProject","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"C:\\Users\\kjh20\\.nuget\\packages\\microsoft.aspnetcore.app.internal.assets\\10.0.0\\_framework\\blazor.web.js","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"emvxm763pk","Integrity":"VpDUbLuhAgB3D8PnpAYA58cbpiNNGy8iNBvD6LMHxhs=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"C:\\Users\\kjh20\\.nuget\\packages\\microsoft.aspnetcore.app.internal.assets\\10.0.0\\_framework\\blazor.web.js","FileLength":55629,"LastWriteTime":"2026-06-25T06:35:09.7062989+00:00"},"S76L1vTW\u002BuBxH5Cmz6UWCNA46kLHSIJj8Tqw2l/rJ3E=":{"Identity":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Debug\\net10.0\\compressed\\dym80g6kqp-{0}-u1n4jc5v46-u1n4jc5v46.gz","SourceId":"QuantEngine.Web","SourceType":"Discovered","ContentRoot":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/blazor.server#[.{fingerprint=u1n4jc5v46}]?.js.gz","AssetKind":"All","AssetMode":"CurrentProject","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"C:\\Users\\kjh20\\.nuget\\packages\\microsoft.aspnetcore.app.internal.assets\\10.0.0\\_framework\\blazor.server.js","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"2xzbvrtzq9","Integrity":"ahpIOLaxXwiWnLDSFUZfwZMfRrULpAls7jR\u002BKeVK4ic=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"C:\\Users\\kjh20\\.nuget\\packages\\microsoft.aspnetcore.app.internal.assets\\10.0.0\\_framework\\blazor.server.js","FileLength":44654,"LastWriteTime":"2026-06-25T06:35:09.7363116+00:00"},"sJurbuk1tZ8c8VpngUTLQu911JXZNLPRbzCVlRHRfXY=":{"Identity":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Debug\\net10.0\\compressed\\b7jn6yc0gz-{0}-yi314np04p-yi314np04p.gz","SourceId":"QuantEngine.Web","SourceType":"Computed","ContentRoot":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"QuantEngine.Web#[.{fingerprint=yi314np04p}]?.styles.css.gz","AssetKind":"All","AssetMode":"CurrentProject","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Debug\\net10.0\\scopedcss\\bundle\\QuantEngine.Web.styles.css","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"snvxky03e7","Integrity":"eMUoaz34S9P8ffguerv/SxXWfTBS7zv7kXrquS2C5EE=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Debug\\net10.0\\scopedcss\\bundle\\QuantEngine.Web.styles.css","FileLength":2481,"LastWriteTime":"2026-06-25T06:35:09.6613875+00:00"},"4Efdao3G\u002BXn1fHisgVFDAbx4XnZ58BXRZZ1UxeUz8cI=":{"Identity":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Debug\\net10.0\\compressed\\vpvw6nj9ax-{0}-yi314np04p-yi314np04p.gz","SourceId":"QuantEngine.Web","SourceType":"Computed","ContentRoot":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"QuantEngine.Web#[.{fingerprint=yi314np04p}]!.bundle.scp.css.gz","AssetKind":"All","AssetMode":"Reference","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Debug\\net10.0\\scopedcss\\projectbundle\\QuantEngine.Web.bundle.scp.css","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"snvxky03e7","Integrity":"eMUoaz34S9P8ffguerv/SxXWfTBS7zv7kXrquS2C5EE=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Debug\\net10.0\\scopedcss\\projectbundle\\QuantEngine.Web.bundle.scp.css","FileLength":2481,"LastWriteTime":"2026-06-25T06:35:09.6846712+00:00"}},"CachedCopyCandidates":{}} \ No newline at end of file diff --git a/src/dotnet/QuantEngine.Web/obj/Debug/net10.0/ref/QuantEngine.Web.dll b/src/dotnet/QuantEngine.Web/obj/Debug/net10.0/ref/QuantEngine.Web.dll new file mode 100644 index 0000000..9f8d133 Binary files /dev/null and b/src/dotnet/QuantEngine.Web/obj/Debug/net10.0/ref/QuantEngine.Web.dll differ diff --git a/src/dotnet/QuantEngine.Web/obj/Debug/net10.0/refint/QuantEngine.Web.dll b/src/dotnet/QuantEngine.Web/obj/Debug/net10.0/refint/QuantEngine.Web.dll new file mode 100644 index 0000000..9f8d133 Binary files /dev/null and b/src/dotnet/QuantEngine.Web/obj/Debug/net10.0/refint/QuantEngine.Web.dll differ diff --git a/src/dotnet/QuantEngine.Web/obj/Debug/net10.0/rjimswa.dswa.cache.json b/src/dotnet/QuantEngine.Web/obj/Debug/net10.0/rjimswa.dswa.cache.json new file mode 100644 index 0000000..4a439bf --- /dev/null +++ b/src/dotnet/QuantEngine.Web/obj/Debug/net10.0/rjimswa.dswa.cache.json @@ -0,0 +1 @@ +{"GlobalPropertiesHash":"ALxWDQhPmdZwUFbyl7L5C8GukPrDDIApUiu7jAGOdAw=","FingerprintPatternsHash":"8ZRc1sGeVrPBx4lD717BgRaQekyh78QKV9SKsdt638U=","PropertyOverridesHash":"R7Rea/YQmcweqCbKffD9oUelggfpJQX85r65aYZsas0=","InputHashes":["/aUexHYoPv\u002BqF7Kxc6WQGIFpSeDpLihVvKB/vADt3Yg=","MP4qPfbJmNBYcl\u002Bz\u002BK\u002BTnJozTZRqHxS6BddLQRxqyYE=","DI9wH2WaoLVvA\u002By/FslXuyzlUiYJ0IHoWQP\u002B5CribRc=","SFEMnEnzw8WmplDtl8PBwqs6NFXhXtkRr54OY9TbqVk=","UwvfhhSTdY8ImQ5QksLb9PRjh4aIW5r/QIyrRR0yOPU=","PjYuNTRpdpNcQlCMi5RkDfZBT\u002BDCra8oP/SRRxDIRmc=","d36WVQS3/Q1IJut16QlGBdeZk22AV0c3L0MZP2ywJMI=","xc\u002Ba4gSt3icsjMy8S9iTKxXhnj2wZyepfVx/9epbTmI=","XcGaav5Jm8hrcf7G1vEDW6/8owCnSm92WEfnJXlLCDc=","5cXE37l9zMXAWOcbd4xM8MFPRlxmUdWTWv81OLa5qTs=","uCeomJY57ppZDjZbLzUeyI0jOQFkaQCiY56KM/C4VMM=","fHeQpXj4ALTFSkU02xEBdVs52xBhOJwt6IX9na72Oqs=","5UdyeLyWaM9cuCosQh40xFm\u002BZGrSplO\u002B8giqQfSgS20=","U\u002BMky9m3hNk0pVUuggQQMDZAHBdnxSpcPW6gIl27kbE=","QTWcW2HlGNSC9eJ2pSaCqWTolzqH\u002B3Bjt4f1BL62AIg=","/7tRJ89NwqdhALxurNUyPyt6XQn1nG0HLyTsvfePPeo=","0dExnNsqXPQP1wteqDHLoj0ybHGOAckZkwH/mah2DIM=","Rym09duK7elPVIPPNUEttBlpFAXC5ECSRqwVyZhGRVo=","8BF8TuLHZt4nvjaPWxqpt0dv\u002B2GlQeEiwHSBzSWzffk=","3CWqqtPlhmFbJpnVt1w92BHEzP8MFfnOVVu6hXVD5j8=","sb8W6UVZUoEror8zboI1cV0tciL2X1KAz3oJK9wkAr0=","S4E00BISg7R9L2bPeBX/OVwsiq9MeuUVWbGIJtaM8PE=","cBSxHQ7x/JDTIem3yWPmnV\u002BjV8Vtgcw0xjGz9i2HqmA=","t7aWn\u002BL3Z8Wgh5Kv6bEC3MALv1KOfJbZ\u002Bti65S2BurI=","zRY/FS52br012CTbXe1ExwPx7mPqouXqgDmnPcE5Jb0=","qrCFDAACK4gRzI1pmMph10wNDrsvaDMKRjIOct7VXvw=","NLr8/d3UM9dF43YURLguOIv6u40PywuROPqGkcEzfSM=","0/HrcxbDU/renpDlVJP7t8BkIJscSoXWLTHtzX2oGE4=","Iqx2t/9KbqhOuih1VW/dntPlT3uQ4GWIRrJDxlC/7/w=","j8T8\u002BIk/pgQDypyt/kPQ\u002BByMR9m7HEdEZIM\u002BtgMOao4=","d9RuZNcLk00rb1OTapV3xrnhef7rRQgC7dYrCVfmn0Y=","l3lb1EWV22bfxcU2PdAs4HV5ORBw357VYV1o4GWNUV8=","wwxddgq9Y6xsXrwDyHPtZQ4hjrXs2YptPxhxlAeBljw=","bnKjhXCmD\u002BtdMARIQ5Uf9Ge1QiXW5OKAcq8PG6D7U74=","Ry3tdAA1LO0Nc4G39AFYOdy7xO0lKfTVULquIJCZeog=","J8b3wOs08LLa0xNiZjI\u002BSHwZRYBjEJF5D7Z7XzzN7Pg=","uE3539sKw0nu7i83GGNcCiOhOfcdKzMMKfjL/zUIPUs=","TfELn6Br1Y08o0\u002B2fDMqjE4fhfCdYIJ\u002BTWz\u002BFyz/LdQ=","e8nGhvTCh\u002BJl2CnR/ecHqUC9nGlyX6Jx9/uEeA3HmsI=","\u002BnsGhhAJXbbrdYmGjUENrZhfwCjIFkupEXcGwKEYrUs=","SzEn82xj00GtM5oacyXPslNSsIlbEQ09bFFe72WLEjo=","9ctQLOP\u002B5ST8moOkiCX4fvI6CRGvyL9GJchIzh3obM8=","SF0ZCmSEVvu21b203mD53DjopC\u002BQweNTiN1FF4Stwyg=","3Z6re8nDOWpmn/LJYWDyVEUtUBptYHK6/JOnkQXSNV0=","mLVvOR7Ofiy2XhkI6niIWI1eC\u002BB6MSq1IjKuzdJMD0g=","aYEOMHd648Lh9eUYz/dH0ROJnMcf7wpQmcrI9rFFhFw="],"CachedAssets":{},"CachedCopyCandidates":{}} \ No newline at end of file diff --git a/src/dotnet/QuantEngine.Web/obj/Debug/net10.0/rjsmcshtml.dswa.cache.json b/src/dotnet/QuantEngine.Web/obj/Debug/net10.0/rjsmcshtml.dswa.cache.json new file mode 100644 index 0000000..2554d92 --- /dev/null +++ b/src/dotnet/QuantEngine.Web/obj/Debug/net10.0/rjsmcshtml.dswa.cache.json @@ -0,0 +1 @@ +{"GlobalPropertiesHash":"61ZzOkAafDUCzt7x0mEjc+KORTs/Of52hN2aYDIQSWo=","FingerprintPatternsHash":"gq3WsqcKBUGTSNle7RKKyXRIwh7M8ccEqOqYvIzoM04=","PropertyOverridesHash":"8ZRc1sGeVrPBx4lD717BgRaQekyh78QKV9SKsdt638U=","InputHashes":["cR1P\u002BpZkSUs9PGdduVi4ENY403ujmVAQhGuzD\u002BxErpQ=","wwJlsGKmzCHYMtGRYw3BIlWl3YW3pTz45puquuHCL/0=","7\u002BLDa\u002BEEI4Hwwxl58wVJGR0S92WloTRFTlRTa1V2vYQ=","j9TkvyuvJdRVauMmJ0IeMKMSlCMeeJ3HQZ0qqAMfcs8=","ggrQwz1UnwKr/y\u002ByVVBeC0TWVPvDOl3slpahudPluFQ=","kXjy8AkO7GYH4xZvRqF/0X7Zb2VKXh/dy2u6tjruT5U=","Kg6LgPrRxS2bEzDorggKyRCR260CyhHy9RAbQIJ2nFg=","bPoEahA5V5rzofty4Gdw8KxyOhzv1IG1FY\u002BvOS7K58g=","ni3VOr7YgZXUZ6s4rRvEul4rzANWP1h3WQrdrY7PjGI=","Rk\u002BOP3d3ePTZ46ynDgtFmboivit55WL8AZwnt6kFRIw=","FHdjaB92aTeG/hXupMZFxS2wPuh1t6QIR0YDbsJtqLc=","jAhagElO4K4FqxpRqPQYU9HAjrxyLJF/qd4lrRazVrg=","b5OYIV1\u002BzBizs0s1xyAmQ2frTaAxPPcIjOOIv\u002B/lY38=","BsBnYmH/R2Bilp9UWWmKBiDYbtIt\u002B4yXJcCSOgYoaNE=","vNr2b76DRChSiN0zC2rnNs0\u002Bd3W05nQG4H4oCINebYA=","dmm3NBFGK15BgR0HyC406h4V\u002BGkPUYTPr7Vnn0B7L7k=","rR\u002BuQQ3VVG8Vu536cz3k\u002BEKXcII82GldU4ES5dM4qgQ=","p\u002BSsiAXz6Rht84D1CB2/4wS8yKTKQb13MKmU6uwz80k=","yd4P53IcJ0wZgOPtBjpPBZ/mkrLljHZfEAcf\u002BN6rYao=","DTlHRkcfRa14EriUWe/mBJGHJi/JA\u002BME7/J8TexosOM=","FR\u002BjAWADFo5dyJYRtnxPNvWTzKPXbeO8PNaCqU9XiV8=","rMk0iDVdS/fN0mvHsTNMI5/1fBXL3RCJUqbdRiNDUus=","iE/MGO3koWboDYdG0vxe8CA\u002B0gNZ2qUw8N/OSv0Zzuw=","4/1odVci0MEWnJbhDyWDPsqjZbjrWd1t/JvBGIQwTWU=","RsN1J/CgA8JdkodXuKevxdb\u002B5Mk/CJYEic/OeiDnf5Y=","KsN5zIPdVrUEY2BybZkK1P7y\u002B2lHSq6U196U1D9YXiI=","vMBw1fqbgZbnqox4lPJHWeaRE57WF4FYTs\u002Btw0Ut6ds=","TrlLGrtczuvBVwhDULfyuZMhSsTCZMbnLpV0kV3NBP8=","4JMegibvWflCspqOQyQoYSFBv4qc6584qsmWW94dAPM=","3MQf6krWBAcHcEbKUeDf1WkrN8lk0N4099NepU3ioEw=","nSKAYYKU4/pczhUlvIUteyZ1XOdlJ3LZe5/khw0yn2Q=","xhPje1AGspffhcg8PLRmekJ51gip0m7dj\u002B/i5bz4uWM=","OYeZnpVMcjyasKt/WFkDKDxPGorRXayYEeS9q/qwWDs=","kGr0D7PKuuX\u002B2XsuN9lVg3KTTBumeX0\u002BVMcZk2IeHWc=","AoSw3OxeZA1mjxC5z3ivDlaCRpOsKntwDy06V9l8XV8=","JdBhV2/x8OpJ51KvVYTnUYHN/9X9JsisSJNqBYxRI\u002B0=","1tg9vOuOTgrwewWafa0Gwkl2iydgmkbgyOVh8vUtARk=","Hw7YtaydxGuR603xyjtxrMbQkMHhn\u002BmToPoMjv/yHFM=","B\u002BC\u002B6PdV7sZSXp6u103B/Yi0i9ecmVO6Wf2WgKrZVVQ=","P\u002B\u002BNdHOwIXSzmlzgIUxQ4\u002B7ulu7Au/W/iP6hCpWG1A8=","W\u002BKIki670Do/4s6Xnq0FlExI2mXfbzgFYnuEzzapBss=","ouyEobtmKMxv2I6YzckQpXnsDsHk\u002BjqwntQVBbTF5cI=","6GqYTvKmQPX4XEMCy6jG/dr5vWJ5EIX/oL9TSOTqFFM=","ETHexDuAGcLe/mke9HZP2mrOjFA\u002BjEN\u002Bf4WAXWPdTVc=","8wlK7zop19xb05vC6iBa91S9QKL20EOiMwv/NtM\u002Bdlw=","6sxr9SMN5kZMO/sRAxO2yqpQtc43dDOQOdA5RTjophA=","kgcIDI2NlPgj\u002B8XvaCmRM7IiFRM5hxoL1IKLXMlTodw=","HHqKNI/nrVByz41UY5jzXxj3f/xVqEpd0gLseQy58Qk=","ouKrSI6rX/XdoNUejgpaD5j8eom5/tNpckuFdDXhl3U=","UQWvg20gTOnqJ1ZRiS8W69HFamWsnqcuoq3H6LersYU=","eaB8GMgC3lQG6ZQEqj924iztUAD4iDNUWb3O7dvG4xU=","Zh0oIbadY5Y1Pm9Q1nQQStIe7udFfiR2UeFRf9RdnDs=","cPFnMbVPvI10xqzqDhz7jzrdBZiVF\u002B\u002BuPpRaCtuDWS8=","LFZqlmtEfj\u002BI5Ov8VPKVaw5clJlbaL9klUPpf8W4gEo=","uvmI2iUhqt5SnauHCQehuWD0mnev\u002BrG3vE7zJp22rI4=","xPu/4hRRoIkmmfvlNIxEUdUwNaM1\u002B2DsSpQdsNXIoXM=","RcyhkphgAJapOlFnA9OFEKksUbP26Fm1ThjlnSh91eA=","pyDLwmO4BWBikZPCanvjVaXWp4JpHnSwyahr\u002Bpb3yDI=","BOHsFbIf1k82W/m/DDR8X/8ehIow1i23Rq9dPkmyK4M=","eUC96PvneSNdpHfQaKm/lvgiNUXszXHK2uyL3KoESBo=","Qc1GW4lK0zwrXAjBqGeHsslPX0TnKF4x50dpH9Gvl1s=","k4oqUo0RpiOtbWo64liB/lmja9kQazQla\u002BWsNI4q2uw=","YKxWCjiYKIwU2PHpkP2H8MagQAHIQZmr9PrKtXXiqug=","cXa7Bz54Fg1e3isitazQs/BnJF2MIoYXy9Sbgs0mox8=","Tz1t45hejPBCK9NvWvbQyMFabFzZfS3UMCIvQySxSLs=","huwO5sUBryWPzSdLnAfHrlqD/fuGR1BAE2mF\u002Bn/\u002BJ5o="],"CachedAssets":{},"CachedCopyCandidates":{}} \ No newline at end of file diff --git a/src/dotnet/QuantEngine.Web/obj/Debug/net10.0/rjsmrazor.dswa.cache.json b/src/dotnet/QuantEngine.Web/obj/Debug/net10.0/rjsmrazor.dswa.cache.json new file mode 100644 index 0000000..35f702c --- /dev/null +++ b/src/dotnet/QuantEngine.Web/obj/Debug/net10.0/rjsmrazor.dswa.cache.json @@ -0,0 +1 @@ +{"GlobalPropertiesHash":"hb9Mk8Q4BfRLjPFbSBNw4B6QTKNWFUuDQL43Qwq5ZuI=","FingerprintPatternsHash":"gq3WsqcKBUGTSNle7RKKyXRIwh7M8ccEqOqYvIzoM04=","PropertyOverridesHash":"8ZRc1sGeVrPBx4lD717BgRaQekyh78QKV9SKsdt638U=","InputHashes":["cR1P\u002BpZkSUs9PGdduVi4ENY403ujmVAQhGuzD\u002BxErpQ=","wwJlsGKmzCHYMtGRYw3BIlWl3YW3pTz45puquuHCL/0=","7\u002BLDa\u002BEEI4Hwwxl58wVJGR0S92WloTRFTlRTa1V2vYQ=","j9TkvyuvJdRVauMmJ0IeMKMSlCMeeJ3HQZ0qqAMfcs8=","ggrQwz1UnwKr/y\u002ByVVBeC0TWVPvDOl3slpahudPluFQ=","kXjy8AkO7GYH4xZvRqF/0X7Zb2VKXh/dy2u6tjruT5U=","Kg6LgPrRxS2bEzDorggKyRCR260CyhHy9RAbQIJ2nFg=","bPoEahA5V5rzofty4Gdw8KxyOhzv1IG1FY\u002BvOS7K58g=","ni3VOr7YgZXUZ6s4rRvEul4rzANWP1h3WQrdrY7PjGI=","Rk\u002BOP3d3ePTZ46ynDgtFmboivit55WL8AZwnt6kFRIw=","FHdjaB92aTeG/hXupMZFxS2wPuh1t6QIR0YDbsJtqLc=","jAhagElO4K4FqxpRqPQYU9HAjrxyLJF/qd4lrRazVrg=","b5OYIV1\u002BzBizs0s1xyAmQ2frTaAxPPcIjOOIv\u002B/lY38=","BsBnYmH/R2Bilp9UWWmKBiDYbtIt\u002B4yXJcCSOgYoaNE=","vNr2b76DRChSiN0zC2rnNs0\u002Bd3W05nQG4H4oCINebYA=","dmm3NBFGK15BgR0HyC406h4V\u002BGkPUYTPr7Vnn0B7L7k=","rR\u002BuQQ3VVG8Vu536cz3k\u002BEKXcII82GldU4ES5dM4qgQ=","p\u002BSsiAXz6Rht84D1CB2/4wS8yKTKQb13MKmU6uwz80k=","yd4P53IcJ0wZgOPtBjpPBZ/mkrLljHZfEAcf\u002BN6rYao=","DTlHRkcfRa14EriUWe/mBJGHJi/JA\u002BME7/J8TexosOM=","FR\u002BjAWADFo5dyJYRtnxPNvWTzKPXbeO8PNaCqU9XiV8=","rMk0iDVdS/fN0mvHsTNMI5/1fBXL3RCJUqbdRiNDUus=","iE/MGO3koWboDYdG0vxe8CA\u002B0gNZ2qUw8N/OSv0Zzuw=","4/1odVci0MEWnJbhDyWDPsqjZbjrWd1t/JvBGIQwTWU=","RsN1J/CgA8JdkodXuKevxdb\u002B5Mk/CJYEic/OeiDnf5Y=","KsN5zIPdVrUEY2BybZkK1P7y\u002B2lHSq6U196U1D9YXiI=","vMBw1fqbgZbnqox4lPJHWeaRE57WF4FYTs\u002Btw0Ut6ds=","TrlLGrtczuvBVwhDULfyuZMhSsTCZMbnLpV0kV3NBP8=","4JMegibvWflCspqOQyQoYSFBv4qc6584qsmWW94dAPM=","3MQf6krWBAcHcEbKUeDf1WkrN8lk0N4099NepU3ioEw=","nSKAYYKU4/pczhUlvIUteyZ1XOdlJ3LZe5/khw0yn2Q=","xhPje1AGspffhcg8PLRmekJ51gip0m7dj\u002B/i5bz4uWM=","OYeZnpVMcjyasKt/WFkDKDxPGorRXayYEeS9q/qwWDs=","kGr0D7PKuuX\u002B2XsuN9lVg3KTTBumeX0\u002BVMcZk2IeHWc=","AoSw3OxeZA1mjxC5z3ivDlaCRpOsKntwDy06V9l8XV8=","JdBhV2/x8OpJ51KvVYTnUYHN/9X9JsisSJNqBYxRI\u002B0=","1tg9vOuOTgrwewWafa0Gwkl2iydgmkbgyOVh8vUtARk=","Hw7YtaydxGuR603xyjtxrMbQkMHhn\u002BmToPoMjv/yHFM=","B\u002BC\u002B6PdV7sZSXp6u103B/Yi0i9ecmVO6Wf2WgKrZVVQ=","P\u002B\u002BNdHOwIXSzmlzgIUxQ4\u002B7ulu7Au/W/iP6hCpWG1A8=","W\u002BKIki670Do/4s6Xnq0FlExI2mXfbzgFYnuEzzapBss=","ouyEobtmKMxv2I6YzckQpXnsDsHk\u002BjqwntQVBbTF5cI=","6GqYTvKmQPX4XEMCy6jG/dr5vWJ5EIX/oL9TSOTqFFM=","ETHexDuAGcLe/mke9HZP2mrOjFA\u002BjEN\u002Bf4WAXWPdTVc=","8wlK7zop19xb05vC6iBa91S9QKL20EOiMwv/NtM\u002Bdlw=","6sxr9SMN5kZMO/sRAxO2yqpQtc43dDOQOdA5RTjophA=","kgcIDI2NlPgj\u002B8XvaCmRM7IiFRM5hxoL1IKLXMlTodw=","HHqKNI/nrVByz41UY5jzXxj3f/xVqEpd0gLseQy58Qk=","ouKrSI6rX/XdoNUejgpaD5j8eom5/tNpckuFdDXhl3U=","UQWvg20gTOnqJ1ZRiS8W69HFamWsnqcuoq3H6LersYU=","eaB8GMgC3lQG6ZQEqj924iztUAD4iDNUWb3O7dvG4xU=","Zh0oIbadY5Y1Pm9Q1nQQStIe7udFfiR2UeFRf9RdnDs=","cPFnMbVPvI10xqzqDhz7jzrdBZiVF\u002B\u002BuPpRaCtuDWS8=","LFZqlmtEfj\u002BI5Ov8VPKVaw5clJlbaL9klUPpf8W4gEo=","uvmI2iUhqt5SnauHCQehuWD0mnev\u002BrG3vE7zJp22rI4=","xPu/4hRRoIkmmfvlNIxEUdUwNaM1\u002B2DsSpQdsNXIoXM=","RcyhkphgAJapOlFnA9OFEKksUbP26Fm1ThjlnSh91eA=","pyDLwmO4BWBikZPCanvjVaXWp4JpHnSwyahr\u002Bpb3yDI=","BOHsFbIf1k82W/m/DDR8X/8ehIow1i23Rq9dPkmyK4M=","eUC96PvneSNdpHfQaKm/lvgiNUXszXHK2uyL3KoESBo=","Qc1GW4lK0zwrXAjBqGeHsslPX0TnKF4x50dpH9Gvl1s=","k4oqUo0RpiOtbWo64liB/lmja9kQazQla\u002BWsNI4q2uw=","YKxWCjiYKIwU2PHpkP2H8MagQAHIQZmr9PrKtXXiqug=","cXa7Bz54Fg1e3isitazQs/BnJF2MIoYXy9Sbgs0mox8=","Tz1t45hejPBCK9NvWvbQyMFabFzZfS3UMCIvQySxSLs=","huwO5sUBryWPzSdLnAfHrlqD/fuGR1BAE2mF\u002Bn/\u002BJ5o="],"CachedAssets":{"cXa7Bz54Fg1e3isitazQs/BnJF2MIoYXy9Sbgs0mox8=":{"Identity":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\Components\\Layout\\ReconnectModal.razor.js","SourceId":"QuantEngine.Web","SourceType":"Discovered","ContentRoot":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\","BasePath":"/","RelativePath":"Components/Layout/ReconnectModal#[.{fingerprint}]?.razor.js","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"13ja33weya","Integrity":"4zGYCWZ4pfXdYacNs7XaH1BXGvludoT6JCkX9NZucgI=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"Components\\Layout\\ReconnectModal.razor.js","FileLength":2364,"LastWriteTime":"2026-06-25T06:34:32.2146058+00:00"}},"CachedCopyCandidates":{}} \ No newline at end of file diff --git a/src/dotnet/QuantEngine.Web/obj/Debug/net10.0/rpswa.dswa.cache.json b/src/dotnet/QuantEngine.Web/obj/Debug/net10.0/rpswa.dswa.cache.json new file mode 100644 index 0000000..27aafcd --- /dev/null +++ b/src/dotnet/QuantEngine.Web/obj/Debug/net10.0/rpswa.dswa.cache.json @@ -0,0 +1 @@ +{"GlobalPropertiesHash":"sRnjZ123Hmd3VL4RmNf3gURHR16GI5Uk+lQqQ4VvHbs=","FingerprintPatternsHash":"gq3WsqcKBUGTSNle7RKKyXRIwh7M8ccEqOqYvIzoM04=","PropertyOverridesHash":"8ZRc1sGeVrPBx4lD717BgRaQekyh78QKV9SKsdt638U=","InputHashes":["cR1P\u002BpZkSUs9PGdduVi4ENY403ujmVAQhGuzD\u002BxErpQ=","wwJlsGKmzCHYMtGRYw3BIlWl3YW3pTz45puquuHCL/0=","7\u002BLDa\u002BEEI4Hwwxl58wVJGR0S92WloTRFTlRTa1V2vYQ=","j9TkvyuvJdRVauMmJ0IeMKMSlCMeeJ3HQZ0qqAMfcs8=","ggrQwz1UnwKr/y\u002ByVVBeC0TWVPvDOl3slpahudPluFQ=","kXjy8AkO7GYH4xZvRqF/0X7Zb2VKXh/dy2u6tjruT5U=","Kg6LgPrRxS2bEzDorggKyRCR260CyhHy9RAbQIJ2nFg=","bPoEahA5V5rzofty4Gdw8KxyOhzv1IG1FY\u002BvOS7K58g=","ni3VOr7YgZXUZ6s4rRvEul4rzANWP1h3WQrdrY7PjGI=","Rk\u002BOP3d3ePTZ46ynDgtFmboivit55WL8AZwnt6kFRIw=","FHdjaB92aTeG/hXupMZFxS2wPuh1t6QIR0YDbsJtqLc=","jAhagElO4K4FqxpRqPQYU9HAjrxyLJF/qd4lrRazVrg=","b5OYIV1\u002BzBizs0s1xyAmQ2frTaAxPPcIjOOIv\u002B/lY38=","BsBnYmH/R2Bilp9UWWmKBiDYbtIt\u002B4yXJcCSOgYoaNE=","vNr2b76DRChSiN0zC2rnNs0\u002Bd3W05nQG4H4oCINebYA=","dmm3NBFGK15BgR0HyC406h4V\u002BGkPUYTPr7Vnn0B7L7k=","rR\u002BuQQ3VVG8Vu536cz3k\u002BEKXcII82GldU4ES5dM4qgQ=","p\u002BSsiAXz6Rht84D1CB2/4wS8yKTKQb13MKmU6uwz80k=","yd4P53IcJ0wZgOPtBjpPBZ/mkrLljHZfEAcf\u002BN6rYao=","DTlHRkcfRa14EriUWe/mBJGHJi/JA\u002BME7/J8TexosOM=","FR\u002BjAWADFo5dyJYRtnxPNvWTzKPXbeO8PNaCqU9XiV8=","rMk0iDVdS/fN0mvHsTNMI5/1fBXL3RCJUqbdRiNDUus=","iE/MGO3koWboDYdG0vxe8CA\u002B0gNZ2qUw8N/OSv0Zzuw=","4/1odVci0MEWnJbhDyWDPsqjZbjrWd1t/JvBGIQwTWU=","RsN1J/CgA8JdkodXuKevxdb\u002B5Mk/CJYEic/OeiDnf5Y=","KsN5zIPdVrUEY2BybZkK1P7y\u002B2lHSq6U196U1D9YXiI=","vMBw1fqbgZbnqox4lPJHWeaRE57WF4FYTs\u002Btw0Ut6ds=","TrlLGrtczuvBVwhDULfyuZMhSsTCZMbnLpV0kV3NBP8=","4JMegibvWflCspqOQyQoYSFBv4qc6584qsmWW94dAPM=","3MQf6krWBAcHcEbKUeDf1WkrN8lk0N4099NepU3ioEw=","nSKAYYKU4/pczhUlvIUteyZ1XOdlJ3LZe5/khw0yn2Q=","xhPje1AGspffhcg8PLRmekJ51gip0m7dj\u002B/i5bz4uWM=","OYeZnpVMcjyasKt/WFkDKDxPGorRXayYEeS9q/qwWDs=","kGr0D7PKuuX\u002B2XsuN9lVg3KTTBumeX0\u002BVMcZk2IeHWc=","AoSw3OxeZA1mjxC5z3ivDlaCRpOsKntwDy06V9l8XV8=","JdBhV2/x8OpJ51KvVYTnUYHN/9X9JsisSJNqBYxRI\u002B0=","1tg9vOuOTgrwewWafa0Gwkl2iydgmkbgyOVh8vUtARk=","Hw7YtaydxGuR603xyjtxrMbQkMHhn\u002BmToPoMjv/yHFM=","B\u002BC\u002B6PdV7sZSXp6u103B/Yi0i9ecmVO6Wf2WgKrZVVQ=","P\u002B\u002BNdHOwIXSzmlzgIUxQ4\u002B7ulu7Au/W/iP6hCpWG1A8=","W\u002BKIki670Do/4s6Xnq0FlExI2mXfbzgFYnuEzzapBss=","ouyEobtmKMxv2I6YzckQpXnsDsHk\u002BjqwntQVBbTF5cI=","6GqYTvKmQPX4XEMCy6jG/dr5vWJ5EIX/oL9TSOTqFFM=","ETHexDuAGcLe/mke9HZP2mrOjFA\u002BjEN\u002Bf4WAXWPdTVc=","8wlK7zop19xb05vC6iBa91S9QKL20EOiMwv/NtM\u002Bdlw=","6sxr9SMN5kZMO/sRAxO2yqpQtc43dDOQOdA5RTjophA=","kgcIDI2NlPgj\u002B8XvaCmRM7IiFRM5hxoL1IKLXMlTodw=","HHqKNI/nrVByz41UY5jzXxj3f/xVqEpd0gLseQy58Qk=","ouKrSI6rX/XdoNUejgpaD5j8eom5/tNpckuFdDXhl3U=","UQWvg20gTOnqJ1ZRiS8W69HFamWsnqcuoq3H6LersYU=","eaB8GMgC3lQG6ZQEqj924iztUAD4iDNUWb3O7dvG4xU=","Zh0oIbadY5Y1Pm9Q1nQQStIe7udFfiR2UeFRf9RdnDs=","cPFnMbVPvI10xqzqDhz7jzrdBZiVF\u002B\u002BuPpRaCtuDWS8=","LFZqlmtEfj\u002BI5Ov8VPKVaw5clJlbaL9klUPpf8W4gEo=","uvmI2iUhqt5SnauHCQehuWD0mnev\u002BrG3vE7zJp22rI4=","xPu/4hRRoIkmmfvlNIxEUdUwNaM1\u002B2DsSpQdsNXIoXM=","RcyhkphgAJapOlFnA9OFEKksUbP26Fm1ThjlnSh91eA=","pyDLwmO4BWBikZPCanvjVaXWp4JpHnSwyahr\u002Bpb3yDI=","BOHsFbIf1k82W/m/DDR8X/8ehIow1i23Rq9dPkmyK4M=","eUC96PvneSNdpHfQaKm/lvgiNUXszXHK2uyL3KoESBo="],"CachedAssets":{"cR1P\u002BpZkSUs9PGdduVi4ENY403ujmVAQhGuzD\u002BxErpQ=":{"Identity":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\app.css","SourceId":"QuantEngine.Web","SourceType":"Discovered","ContentRoot":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\","BasePath":"/","RelativePath":"app#[.{fingerprint}]?.css","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"4c8rkwezul","Integrity":"9BYQ1DEYdSZH7MBG7AQ28\u002BOVGYKziE5nCfTTJOiedPU=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot\\app.css","FileLength":6554,"LastWriteTime":"2026-06-25T06:50:05.5425214+00:00"},"wwJlsGKmzCHYMtGRYw3BIlWl3YW3pTz45puquuHCL/0=":{"Identity":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\favicon.png","SourceId":"QuantEngine.Web","SourceType":"Discovered","ContentRoot":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\","BasePath":"/","RelativePath":"favicon#[.{fingerprint}]?.png","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"ifv42okdf2","Integrity":"4mWsDy3aHl36ZbGt8zByK7Pvd4kRUoNgTYzRnwmPHwg=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot\\favicon.png","FileLength":1148,"LastWriteTime":"2026-06-25T06:34:31.2488837+00:00"},"7\u002BLDa\u002BEEI4Hwwxl58wVJGR0S92WloTRFTlRTa1V2vYQ=":{"Identity":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-grid.css","SourceId":"QuantEngine.Web","SourceType":"Discovered","ContentRoot":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\","BasePath":"/","RelativePath":"lib/bootstrap/dist/css/bootstrap-grid#[.{fingerprint}]?.css","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"bqjiyaj88i","Integrity":"Yy5/hBqRmmU2MJ1TKwP2aXoTO6\u002BOjzrLmJIsC2Wy4H8=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-grid.css","FileLength":70329,"LastWriteTime":"2026-06-25T06:34:31.2886158+00:00"},"j9TkvyuvJdRVauMmJ0IeMKMSlCMeeJ3HQZ0qqAMfcs8=":{"Identity":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-grid.css.map","SourceId":"QuantEngine.Web","SourceType":"Discovered","ContentRoot":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\","BasePath":"/","RelativePath":"lib/bootstrap/dist/css/bootstrap-grid.css#[.{fingerprint}]?.map","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"c2jlpeoesf","Integrity":"xAT\u002Bn25FE5hvOjj2fG4YdOwr1bl4IlAJBNg6PbhLT2E=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-grid.css.map","FileLength":203221,"LastWriteTime":"2026-06-25T06:34:31.3030142+00:00"},"ggrQwz1UnwKr/y\u002ByVVBeC0TWVPvDOl3slpahudPluFQ=":{"Identity":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-grid.min.css","SourceId":"QuantEngine.Web","SourceType":"Discovered","ContentRoot":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\","BasePath":"/","RelativePath":"lib/bootstrap/dist/css/bootstrap-grid.min#[.{fingerprint}]?.css","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"erw9l3u2r3","Integrity":"5nDHMGiyfZHl3UXePuhLDQR9ncPfBR1HJeZLXyJNV24=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-grid.min.css","FileLength":51795,"LastWriteTime":"2026-06-25T06:34:31.3087723+00:00"},"kXjy8AkO7GYH4xZvRqF/0X7Zb2VKXh/dy2u6tjruT5U=":{"Identity":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-grid.min.css.map","SourceId":"QuantEngine.Web","SourceType":"Discovered","ContentRoot":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\","BasePath":"/","RelativePath":"lib/bootstrap/dist/css/bootstrap-grid.min.css#[.{fingerprint}]?.map","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"aexeepp0ev","Integrity":"kgL\u002BxwVmM8IOs15lnoHt9daR2LRMiBG/cYgUPcKQOY4=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-grid.min.css.map","FileLength":115986,"LastWriteTime":"2026-06-25T06:34:31.333811+00:00"},"Kg6LgPrRxS2bEzDorggKyRCR260CyhHy9RAbQIJ2nFg=":{"Identity":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-grid.rtl.css","SourceId":"QuantEngine.Web","SourceType":"Discovered","ContentRoot":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\","BasePath":"/","RelativePath":"lib/bootstrap/dist/css/bootstrap-grid.rtl#[.{fingerprint}]?.css","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"d7shbmvgxk","Integrity":"CZxoF8zjaLlyVkcvVCDlc8CeQR1w1RMrvgYx30cs8kM=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-grid.rtl.css","FileLength":70403,"LastWriteTime":"2026-06-25T06:34:31.3427065+00:00"},"bPoEahA5V5rzofty4Gdw8KxyOhzv1IG1FY\u002BvOS7K58g=":{"Identity":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-grid.rtl.css.map","SourceId":"QuantEngine.Web","SourceType":"Discovered","ContentRoot":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\","BasePath":"/","RelativePath":"lib/bootstrap/dist/css/bootstrap-grid.rtl.css#[.{fingerprint}]?.map","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"ausgxo2sd3","Integrity":"/siQUA8yX830j\u002BcL4amKHY3yBtn3n8z3Eg\u002BVZ15f90k=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-grid.rtl.css.map","FileLength":203225,"LastWriteTime":"2026-06-25T06:34:31.3882451+00:00"},"ni3VOr7YgZXUZ6s4rRvEul4rzANWP1h3WQrdrY7PjGI=":{"Identity":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-grid.rtl.min.css","SourceId":"QuantEngine.Web","SourceType":"Discovered","ContentRoot":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\","BasePath":"/","RelativePath":"lib/bootstrap/dist/css/bootstrap-grid.rtl.min#[.{fingerprint}]?.css","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"k8d9w2qqmf","Integrity":"vMxTcvkC4Ly7LiAT3G8yEy9EpTr7Fge4SczWp07/p3k=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-grid.rtl.min.css","FileLength":51870,"LastWriteTime":"2026-06-25T06:34:31.4170345+00:00"},"Rk\u002BOP3d3ePTZ46ynDgtFmboivit55WL8AZwnt6kFRIw=":{"Identity":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-grid.rtl.min.css.map","SourceId":"QuantEngine.Web","SourceType":"Discovered","ContentRoot":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\","BasePath":"/","RelativePath":"lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css#[.{fingerprint}]?.map","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"cosvhxvwiu","Integrity":"7GdOlw7U/wgyaeUtFmxPz5/MphdvVSPtVOOlTn9c33Q=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-grid.rtl.min.css.map","FileLength":116063,"LastWriteTime":"2026-06-25T06:34:31.4264117+00:00"},"FHdjaB92aTeG/hXupMZFxS2wPuh1t6QIR0YDbsJtqLc=":{"Identity":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-reboot.css","SourceId":"QuantEngine.Web","SourceType":"Discovered","ContentRoot":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\","BasePath":"/","RelativePath":"lib/bootstrap/dist/css/bootstrap-reboot#[.{fingerprint}]?.css","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"ub07r2b239","Integrity":"lo9YI82OF03vojdu\u002BXOR3\u002BDRrLIpMhpzZNmHbM5CDMA=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-reboot.css","FileLength":12065,"LastWriteTime":"2026-06-25T06:34:31.4374198+00:00"},"jAhagElO4K4FqxpRqPQYU9HAjrxyLJF/qd4lrRazVrg=":{"Identity":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-reboot.css.map","SourceId":"QuantEngine.Web","SourceType":"Discovered","ContentRoot":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\","BasePath":"/","RelativePath":"lib/bootstrap/dist/css/bootstrap-reboot.css#[.{fingerprint}]?.map","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"fvhpjtyr6v","Integrity":"RXJ/QZiBfHXoPtXR2EgC\u002BbFo2pe3GtbZO722RtiLGzQ=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-reboot.css.map","FileLength":129371,"LastWriteTime":"2026-06-25T06:34:31.4546464+00:00"},"b5OYIV1\u002BzBizs0s1xyAmQ2frTaAxPPcIjOOIv\u002B/lY38=":{"Identity":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-reboot.min.css","SourceId":"QuantEngine.Web","SourceType":"Discovered","ContentRoot":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\","BasePath":"/","RelativePath":"lib/bootstrap/dist/css/bootstrap-reboot.min#[.{fingerprint}]?.css","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"b7pk76d08c","Integrity":"l8vt5oozv958eMd9TFsPAWgl9JJK9YKfbVSs8mchQ84=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-reboot.min.css","FileLength":10126,"LastWriteTime":"2026-06-25T06:34:31.4746666+00:00"},"BsBnYmH/R2Bilp9UWWmKBiDYbtIt\u002B4yXJcCSOgYoaNE=":{"Identity":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-reboot.min.css.map","SourceId":"QuantEngine.Web","SourceType":"Discovered","ContentRoot":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\","BasePath":"/","RelativePath":"lib/bootstrap/dist/css/bootstrap-reboot.min.css#[.{fingerprint}]?.map","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"fsbi9cje9m","Integrity":"0eqVT62kqRLJh9oTqLeIH4UnQskqVjib8hl2fXxl4lg=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-reboot.min.css.map","FileLength":51369,"LastWriteTime":"2026-06-25T06:34:31.483631+00:00"},"vNr2b76DRChSiN0zC2rnNs0\u002Bd3W05nQG4H4oCINebYA=":{"Identity":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-reboot.rtl.css","SourceId":"QuantEngine.Web","SourceType":"Discovered","ContentRoot":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\","BasePath":"/","RelativePath":"lib/bootstrap/dist/css/bootstrap-reboot.rtl#[.{fingerprint}]?.css","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"rzd6atqjts","Integrity":"V8psnHoJS/MPlCXWwc/J3tGtp9c3gGFRmqsIQgpn\u002BGg=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-reboot.rtl.css","FileLength":12058,"LastWriteTime":"2026-06-25T06:34:31.4869125+00:00"},"dmm3NBFGK15BgR0HyC406h4V\u002BGkPUYTPr7Vnn0B7L7k=":{"Identity":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-reboot.rtl.css.map","SourceId":"QuantEngine.Web","SourceType":"Discovered","ContentRoot":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\","BasePath":"/","RelativePath":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.css#[.{fingerprint}]?.map","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"ee0r1s7dh0","Integrity":"OoQVwh7Arp7bVoK2ZiTx2S//KrnPrSPzPZ93CqCMhe8=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-reboot.rtl.css.map","FileLength":129386,"LastWriteTime":"2026-06-25T06:34:31.4985938+00:00"},"rR\u002BuQQ3VVG8Vu536cz3k\u002BEKXcII82GldU4ES5dM4qgQ=":{"Identity":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-reboot.rtl.min.css","SourceId":"QuantEngine.Web","SourceType":"Discovered","ContentRoot":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\","BasePath":"/","RelativePath":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.min#[.{fingerprint}]?.css","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"dxx9fxp4il","Integrity":"/8jh8hcEMFKyS6goWqnNu7t3EzZPCGdQZgO6sCkI8tI=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-reboot.rtl.min.css","FileLength":10198,"LastWriteTime":"2026-06-25T06:34:31.5021166+00:00"},"p\u002BSsiAXz6Rht84D1CB2/4wS8yKTKQb13MKmU6uwz80k=":{"Identity":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-reboot.rtl.min.css.map","SourceId":"QuantEngine.Web","SourceType":"Discovered","ContentRoot":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\","BasePath":"/","RelativePath":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css#[.{fingerprint}]?.map","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"jd9uben2k1","Integrity":"910zw\u002BrMdcg0Ls48ATp65vEn8rd5HvPxOKm2x3/CBII=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-reboot.rtl.min.css.map","FileLength":63943,"LastWriteTime":"2026-06-25T06:34:31.5087078+00:00"},"yd4P53IcJ0wZgOPtBjpPBZ/mkrLljHZfEAcf\u002BN6rYao=":{"Identity":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-utilities.css","SourceId":"QuantEngine.Web","SourceType":"Discovered","ContentRoot":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\","BasePath":"/","RelativePath":"lib/bootstrap/dist/css/bootstrap-utilities#[.{fingerprint}]?.css","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"khv3u5hwcm","Integrity":"2BubgNUPlQSF/0wLFcRXQ/Yjzk9vsUbDAeK2QM\u002Bh\u002Byo=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-utilities.css","FileLength":107823,"LastWriteTime":"2026-06-25T06:34:31.5196085+00:00"},"DTlHRkcfRa14EriUWe/mBJGHJi/JA\u002BME7/J8TexosOM=":{"Identity":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-utilities.css.map","SourceId":"QuantEngine.Web","SourceType":"Discovered","ContentRoot":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\","BasePath":"/","RelativePath":"lib/bootstrap/dist/css/bootstrap-utilities.css#[.{fingerprint}]?.map","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"r4e9w2rdcm","Integrity":"Nfjrc4Ur9Fv2oBEswQWIyBnNDP99q\u002BLhL\u002Bz9553O0cY=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-utilities.css.map","FileLength":267535,"LastWriteTime":"2026-06-25T06:34:31.5393468+00:00"},"FR\u002BjAWADFo5dyJYRtnxPNvWTzKPXbeO8PNaCqU9XiV8=":{"Identity":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-utilities.min.css","SourceId":"QuantEngine.Web","SourceType":"Discovered","ContentRoot":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\","BasePath":"/","RelativePath":"lib/bootstrap/dist/css/bootstrap-utilities.min#[.{fingerprint}]?.css","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"lcd1t2u6c8","Integrity":"KyE9xbKO9CuYx0HXpIKgsWIvXkAfITtiQ172j26wmRs=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-utilities.min.css","FileLength":85352,"LastWriteTime":"2026-06-25T06:34:31.5470926+00:00"},"rMk0iDVdS/fN0mvHsTNMI5/1fBXL3RCJUqbdRiNDUus=":{"Identity":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-utilities.min.css.map","SourceId":"QuantEngine.Web","SourceType":"Discovered","ContentRoot":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\","BasePath":"/","RelativePath":"lib/bootstrap/dist/css/bootstrap-utilities.min.css#[.{fingerprint}]?.map","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"c2oey78nd0","Integrity":"rHDmip4JZzuaGOcSQ1QSQrIbG0Eb3Zja9whqSF1zYIU=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-utilities.min.css.map","FileLength":180381,"LastWriteTime":"2026-06-25T06:34:31.5601008+00:00"},"iE/MGO3koWboDYdG0vxe8CA\u002B0gNZ2qUw8N/OSv0Zzuw=":{"Identity":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-utilities.rtl.css","SourceId":"QuantEngine.Web","SourceType":"Discovered","ContentRoot":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\","BasePath":"/","RelativePath":"lib/bootstrap/dist/css/bootstrap-utilities.rtl#[.{fingerprint}]?.css","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"tdbxkamptv","Integrity":"H6wkBbSwjua2veJoThJo4uy161jp\u002BDOiZTloUlcZ6qQ=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-utilities.rtl.css","FileLength":107691,"LastWriteTime":"2026-06-25T06:34:31.5685583+00:00"},"4/1odVci0MEWnJbhDyWDPsqjZbjrWd1t/JvBGIQwTWU=":{"Identity":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-utilities.rtl.css.map","SourceId":"QuantEngine.Web","SourceType":"Discovered","ContentRoot":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\","BasePath":"/","RelativePath":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.css#[.{fingerprint}]?.map","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"j5mq2jizvt","Integrity":"p0BVq5Ve/dohBIdfbrZsoQNu02JSsKh1g0wbyiQiUaU=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-utilities.rtl.css.map","FileLength":267476,"LastWriteTime":"2026-06-25T06:34:31.5874702+00:00"},"RsN1J/CgA8JdkodXuKevxdb\u002B5Mk/CJYEic/OeiDnf5Y=":{"Identity":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-utilities.rtl.min.css","SourceId":"QuantEngine.Web","SourceType":"Discovered","ContentRoot":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\","BasePath":"/","RelativePath":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.min#[.{fingerprint}]?.css","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"06098lyss8","Integrity":"GAUum6FjwQ8HrXGaoFRnHTqQQLpljXGavT7mBX8E9qU=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-utilities.rtl.min.css","FileLength":85281,"LastWriteTime":"2026-06-25T06:34:31.595963+00:00"},"KsN5zIPdVrUEY2BybZkK1P7y\u002B2lHSq6U196U1D9YXiI=":{"Identity":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-utilities.rtl.min.css.map","SourceId":"QuantEngine.Web","SourceType":"Discovered","ContentRoot":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\","BasePath":"/","RelativePath":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css#[.{fingerprint}]?.map","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"nvvlpmu67g","Integrity":"o8XK32mcY/FfcOQ1D2HJvVuZ0YTXSURZDLXCK0fnQeA=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-utilities.rtl.min.css.map","FileLength":180217,"LastWriteTime":"2026-06-25T06:34:31.6095054+00:00"},"vMBw1fqbgZbnqox4lPJHWeaRE57WF4FYTs\u002Btw0Ut6ds=":{"Identity":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap.css","SourceId":"QuantEngine.Web","SourceType":"Discovered","ContentRoot":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\","BasePath":"/","RelativePath":"lib/bootstrap/dist/css/bootstrap#[.{fingerprint}]?.css","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"s35ty4nyc5","Integrity":"GKEF18s44B5e0MolXAkpkqLiEbOVlKf6VyYr/G/E6pw=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap.css","FileLength":281046,"LastWriteTime":"2026-06-25T06:34:31.6257047+00:00"},"TrlLGrtczuvBVwhDULfyuZMhSsTCZMbnLpV0kV3NBP8=":{"Identity":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap.css.map","SourceId":"QuantEngine.Web","SourceType":"Discovered","ContentRoot":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\","BasePath":"/","RelativePath":"lib/bootstrap/dist/css/bootstrap.css#[.{fingerprint}]?.map","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"pj5nd1wqec","Integrity":"KzNVR3p7UZGba94dnCtlc6jXjK5urSPiZ/eNnKTmDkw=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap.css.map","FileLength":679755,"LastWriteTime":"2026-06-25T06:34:31.667797+00:00"},"4JMegibvWflCspqOQyQoYSFBv4qc6584qsmWW94dAPM=":{"Identity":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap.min.css","SourceId":"QuantEngine.Web","SourceType":"Discovered","ContentRoot":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\","BasePath":"/","RelativePath":"lib/bootstrap/dist/css/bootstrap.min#[.{fingerprint}]?.css","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"46ein0sx1k","Integrity":"PI8n5gCcz9cQqQXm3PEtDuPG8qx9oFsFctPg0S5zb8g=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap.min.css","FileLength":232803,"LastWriteTime":"2026-06-25T06:34:31.6826573+00:00"},"3MQf6krWBAcHcEbKUeDf1WkrN8lk0N4099NepU3ioEw=":{"Identity":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap.min.css.map","SourceId":"QuantEngine.Web","SourceType":"Discovered","ContentRoot":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\","BasePath":"/","RelativePath":"lib/bootstrap/dist/css/bootstrap.min.css#[.{fingerprint}]?.map","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"v0zj4ognzu","Integrity":"8SM4U2NQpCLGTQLW5D/x3qSTwxVq2CP\u002BGXYc3V1WwFs=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap.min.css.map","FileLength":589892,"LastWriteTime":"2026-06-25T06:34:31.7190768+00:00"},"nSKAYYKU4/pczhUlvIUteyZ1XOdlJ3LZe5/khw0yn2Q=":{"Identity":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap.rtl.css","SourceId":"QuantEngine.Web","SourceType":"Discovered","ContentRoot":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\","BasePath":"/","RelativePath":"lib/bootstrap/dist/css/bootstrap.rtl#[.{fingerprint}]?.css","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"37tfw0ft22","Integrity":"j5E4XIj1p1kNnDi0x1teX9RXoh1/FNlPvCML9YmRh2Q=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap.rtl.css","FileLength":280259,"LastWriteTime":"2026-06-25T06:34:31.7458235+00:00"},"xhPje1AGspffhcg8PLRmekJ51gip0m7dj\u002B/i5bz4uWM=":{"Identity":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap.rtl.css.map","SourceId":"QuantEngine.Web","SourceType":"Discovered","ContentRoot":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\","BasePath":"/","RelativePath":"lib/bootstrap/dist/css/bootstrap.rtl.css#[.{fingerprint}]?.map","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"hrwsygsryq","Integrity":"3bYWUiiVYMZfv2wq5JnXIsHlQKgSKs/VcRivgjgZ1ho=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap.rtl.css.map","FileLength":679615,"LastWriteTime":"2026-06-25T06:34:31.8148591+00:00"},"OYeZnpVMcjyasKt/WFkDKDxPGorRXayYEeS9q/qwWDs=":{"Identity":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap.rtl.min.css","SourceId":"QuantEngine.Web","SourceType":"Discovered","ContentRoot":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\","BasePath":"/","RelativePath":"lib/bootstrap/dist/css/bootstrap.rtl.min#[.{fingerprint}]?.css","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"pk9g2wxc8p","Integrity":"h5lE7Nm8SkeIpBHHYxN99spP3VuGFKl5NZgsocil7zk=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap.rtl.min.css","FileLength":232911,"LastWriteTime":"2026-06-25T06:34:31.8399982+00:00"},"kGr0D7PKuuX\u002B2XsuN9lVg3KTTBumeX0\u002BVMcZk2IeHWc=":{"Identity":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap.rtl.min.css.map","SourceId":"QuantEngine.Web","SourceType":"Discovered","ContentRoot":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\","BasePath":"/","RelativePath":"lib/bootstrap/dist/css/bootstrap.rtl.min.css#[.{fingerprint}]?.map","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"ft3s53vfgj","Integrity":"rTzXlnepcb/vgFAiB\u002BU7ODQAfOlJLfM3gY6IU7eIANk=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap.rtl.min.css.map","FileLength":589087,"LastWriteTime":"2026-06-25T06:34:31.9029837+00:00"},"AoSw3OxeZA1mjxC5z3ivDlaCRpOsKntwDy06V9l8XV8=":{"Identity":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\lib\\bootstrap\\dist\\js\\bootstrap.bundle.js","SourceId":"QuantEngine.Web","SourceType":"Discovered","ContentRoot":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\","BasePath":"/","RelativePath":"lib/bootstrap/dist/js/bootstrap.bundle#[.{fingerprint}]?.js","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"6cfz1n2cew","Integrity":"mkoRoV24jV\u002BrCPWcHDR5awPx8VuzzJKN0ibhxZ9/WaM=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot\\lib\\bootstrap\\dist\\js\\bootstrap.bundle.js","FileLength":207819,"LastWriteTime":"2026-06-25T06:34:31.9269423+00:00"},"JdBhV2/x8OpJ51KvVYTnUYHN/9X9JsisSJNqBYxRI\u002B0=":{"Identity":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\lib\\bootstrap\\dist\\js\\bootstrap.bundle.js.map","SourceId":"QuantEngine.Web","SourceType":"Discovered","ContentRoot":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\","BasePath":"/","RelativePath":"lib/bootstrap/dist/js/bootstrap.bundle.js#[.{fingerprint}]?.map","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"6pdc2jztkx","Integrity":"Wq4aWW1rQdJ\u002B6oAgy1JQc9IBjHL9T3MKfXTBNqOv02c=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot\\lib\\bootstrap\\dist\\js\\bootstrap.bundle.js.map","FileLength":444579,"LastWriteTime":"2026-06-25T06:34:31.976293+00:00"},"1tg9vOuOTgrwewWafa0Gwkl2iydgmkbgyOVh8vUtARk=":{"Identity":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\lib\\bootstrap\\dist\\js\\bootstrap.bundle.min.js","SourceId":"QuantEngine.Web","SourceType":"Discovered","ContentRoot":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\","BasePath":"/","RelativePath":"lib/bootstrap/dist/js/bootstrap.bundle.min#[.{fingerprint}]?.js","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"493y06b0oq","Integrity":"CDOy6cOibCWEdsRiZuaHf8dSGGJRYuBGC\u002BmjoJimHGw=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot\\lib\\bootstrap\\dist\\js\\bootstrap.bundle.min.js","FileLength":80721,"LastWriteTime":"2026-06-25T06:34:31.9865755+00:00"},"Hw7YtaydxGuR603xyjtxrMbQkMHhn\u002BmToPoMjv/yHFM=":{"Identity":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\lib\\bootstrap\\dist\\js\\bootstrap.bundle.min.js.map","SourceId":"QuantEngine.Web","SourceType":"Discovered","ContentRoot":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\","BasePath":"/","RelativePath":"lib/bootstrap/dist/js/bootstrap.bundle.min.js#[.{fingerprint}]?.map","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"iovd86k7lj","Integrity":"Xj4HYxZBQ7qqHKBwa2EAugRS\u002BRHWzpcTtI49vgezUSU=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot\\lib\\bootstrap\\dist\\js\\bootstrap.bundle.min.js.map","FileLength":332090,"LastWriteTime":"2026-06-25T06:34:32.025606+00:00"},"B\u002BC\u002B6PdV7sZSXp6u103B/Yi0i9ecmVO6Wf2WgKrZVVQ=":{"Identity":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\lib\\bootstrap\\dist\\js\\bootstrap.esm.js","SourceId":"QuantEngine.Web","SourceType":"Discovered","ContentRoot":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\","BasePath":"/","RelativePath":"lib/bootstrap/dist/js/bootstrap.esm#[.{fingerprint}]?.js","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"vr1egmr9el","Integrity":"exiXZNJDwucXfuje3CbXPbuS6\u002BEry3z9sP\u002Bpgmvh8nA=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot\\lib\\bootstrap\\dist\\js\\bootstrap.esm.js","FileLength":135829,"LastWriteTime":"2026-06-25T06:34:32.0415226+00:00"},"P\u002B\u002BNdHOwIXSzmlzgIUxQ4\u002B7ulu7Au/W/iP6hCpWG1A8=":{"Identity":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\lib\\bootstrap\\dist\\js\\bootstrap.esm.js.map","SourceId":"QuantEngine.Web","SourceType":"Discovered","ContentRoot":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\","BasePath":"/","RelativePath":"lib/bootstrap/dist/js/bootstrap.esm.js#[.{fingerprint}]?.map","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"kbrnm935zg","Integrity":"EPRLgpqWkahLxEn6CUjdM76RIYIw1xdHwTbeHssuj/4=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot\\lib\\bootstrap\\dist\\js\\bootstrap.esm.js.map","FileLength":305438,"LastWriteTime":"2026-06-25T06:34:32.0853921+00:00"},"W\u002BKIki670Do/4s6Xnq0FlExI2mXfbzgFYnuEzzapBss=":{"Identity":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\lib\\bootstrap\\dist\\js\\bootstrap.esm.min.js","SourceId":"QuantEngine.Web","SourceType":"Discovered","ContentRoot":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\","BasePath":"/","RelativePath":"lib/bootstrap/dist/js/bootstrap.esm.min#[.{fingerprint}]?.js","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"jj8uyg4cgr","Integrity":"QZdFT1ZNdly4rmgUBtXmXFS9BU1FTa\u002BsPe6h794sFRQ=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot\\lib\\bootstrap\\dist\\js\\bootstrap.esm.min.js","FileLength":73935,"LastWriteTime":"2026-06-25T06:34:32.0930105+00:00"},"ouyEobtmKMxv2I6YzckQpXnsDsHk\u002BjqwntQVBbTF5cI=":{"Identity":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\lib\\bootstrap\\dist\\js\\bootstrap.esm.min.js.map","SourceId":"QuantEngine.Web","SourceType":"Discovered","ContentRoot":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\","BasePath":"/","RelativePath":"lib/bootstrap/dist/js/bootstrap.esm.min.js#[.{fingerprint}]?.map","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"y7v9cxd14o","Integrity":"Tsbv8z6VlNgVET8xvz/yLo/v5iJHTAj2J4hkhjP1rHM=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot\\lib\\bootstrap\\dist\\js\\bootstrap.esm.min.js.map","FileLength":222455,"LastWriteTime":"2026-06-25T06:34:32.1151121+00:00"},"6GqYTvKmQPX4XEMCy6jG/dr5vWJ5EIX/oL9TSOTqFFM=":{"Identity":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\lib\\bootstrap\\dist\\js\\bootstrap.js","SourceId":"QuantEngine.Web","SourceType":"Discovered","ContentRoot":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\","BasePath":"/","RelativePath":"lib/bootstrap/dist/js/bootstrap#[.{fingerprint}]?.js","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"notf2xhcfb","Integrity":"\u002BUW802wgVfnjaSbdwyHLlU7AVplb0WToOlvN1CnzIac=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot\\lib\\bootstrap\\dist\\js\\bootstrap.js","FileLength":145401,"LastWriteTime":"2026-06-25T06:34:32.1279579+00:00"},"ETHexDuAGcLe/mke9HZP2mrOjFA\u002BjEN\u002Bf4WAXWPdTVc=":{"Identity":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\lib\\bootstrap\\dist\\js\\bootstrap.js.map","SourceId":"QuantEngine.Web","SourceType":"Discovered","ContentRoot":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\","BasePath":"/","RelativePath":"lib/bootstrap/dist/js/bootstrap.js#[.{fingerprint}]?.map","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"h1s4sie4z3","Integrity":"9Wr7Hxe8gCJDoIHh5xP29ldXvC3kN2GkifQj9c8vYx4=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot\\lib\\bootstrap\\dist\\js\\bootstrap.js.map","FileLength":306606,"LastWriteTime":"2026-06-25T06:34:32.1504208+00:00"},"8wlK7zop19xb05vC6iBa91S9QKL20EOiMwv/NtM\u002Bdlw=":{"Identity":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\lib\\bootstrap\\dist\\js\\bootstrap.min.js","SourceId":"QuantEngine.Web","SourceType":"Discovered","ContentRoot":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\","BasePath":"/","RelativePath":"lib/bootstrap/dist/js/bootstrap.min#[.{fingerprint}]?.js","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"63fj8s7r0e","Integrity":"3gQJhtmj7YnV1fmtbVcnAV6eI4ws0Tr48bVZCThtCGQ=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot\\lib\\bootstrap\\dist\\js\\bootstrap.min.js","FileLength":60635,"LastWriteTime":"2026-06-25T06:34:32.1577264+00:00"},"6sxr9SMN5kZMO/sRAxO2yqpQtc43dDOQOdA5RTjophA=":{"Identity":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\lib\\bootstrap\\dist\\js\\bootstrap.min.js.map","SourceId":"QuantEngine.Web","SourceType":"Discovered","ContentRoot":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\","BasePath":"/","RelativePath":"lib/bootstrap/dist/js/bootstrap.min.js#[.{fingerprint}]?.map","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"0j3bgjxly4","Integrity":"ZI01e/ns473GKvACG4McggJdxvFfFIw4xspwQiG8Ye4=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot\\lib\\bootstrap\\dist\\js\\bootstrap.min.js.map","FileLength":220561,"LastWriteTime":"2026-06-25T06:34:32.174242+00:00"}},"CachedCopyCandidates":{}} \ No newline at end of file diff --git a/src/dotnet/QuantEngine.Web/obj/Debug/net10.0/scopedcss/Components/Layout/MainLayout.razor.rz.scp.css b/src/dotnet/QuantEngine.Web/obj/Debug/net10.0/scopedcss/Components/Layout/MainLayout.razor.rz.scp.css new file mode 100644 index 0000000..d953fcf --- /dev/null +++ b/src/dotnet/QuantEngine.Web/obj/Debug/net10.0/scopedcss/Components/Layout/MainLayout.razor.rz.scp.css @@ -0,0 +1,98 @@ +.page[b-d6y8adeyxc] { + position: relative; + display: flex; + flex-direction: column; +} + +main[b-d6y8adeyxc] { + flex: 1; +} + +.sidebar[b-d6y8adeyxc] { + background-image: linear-gradient(180deg, rgb(5, 39, 103) 0%, #3a0647 70%); +} + +.top-row[b-d6y8adeyxc] { + background-color: #f7f7f7; + border-bottom: 1px solid #d6d5d5; + justify-content: flex-end; + height: 3.5rem; + display: flex; + align-items: center; +} + + .top-row[b-d6y8adeyxc] a, .top-row[b-d6y8adeyxc] .btn-link { + white-space: nowrap; + margin-left: 1.5rem; + text-decoration: none; + } + + .top-row[b-d6y8adeyxc] a:hover, .top-row[b-d6y8adeyxc] .btn-link:hover { + text-decoration: underline; + } + + .top-row[b-d6y8adeyxc] a:first-child { + overflow: hidden; + text-overflow: ellipsis; + } + +@media (max-width: 640.98px) { + .top-row[b-d6y8adeyxc] { + justify-content: space-between; + } + + .top-row[b-d6y8adeyxc] a, .top-row[b-d6y8adeyxc] .btn-link { + margin-left: 0; + } +} + +@media (min-width: 641px) { + .page[b-d6y8adeyxc] { + flex-direction: row; + } + + .sidebar[b-d6y8adeyxc] { + width: 250px; + height: 100vh; + position: sticky; + top: 0; + } + + .top-row[b-d6y8adeyxc] { + position: sticky; + top: 0; + z-index: 1; + } + + .top-row.auth[b-d6y8adeyxc] a:first-child { + flex: 1; + text-align: right; + width: 0; + } + + .top-row[b-d6y8adeyxc], article[b-d6y8adeyxc] { + padding-left: 2rem !important; + padding-right: 1.5rem !important; + } +} + +#blazor-error-ui[b-d6y8adeyxc] { + color-scheme: light only; + background: lightyellow; + bottom: 0; + box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2); + box-sizing: border-box; + display: none; + left: 0; + padding: 0.6rem 1.25rem 0.7rem 1.25rem; + position: fixed; + width: 100%; + z-index: 1000; +} + + #blazor-error-ui .dismiss[b-d6y8adeyxc] { + cursor: pointer; + position: absolute; + right: 0.75rem; + top: 0.5rem; + } diff --git a/src/dotnet/QuantEngine.Web/obj/Debug/net10.0/scopedcss/Components/Layout/NavMenu.razor.rz.scp.css b/src/dotnet/QuantEngine.Web/obj/Debug/net10.0/scopedcss/Components/Layout/NavMenu.razor.rz.scp.css new file mode 100644 index 0000000..04bbe15 --- /dev/null +++ b/src/dotnet/QuantEngine.Web/obj/Debug/net10.0/scopedcss/Components/Layout/NavMenu.razor.rz.scp.css @@ -0,0 +1,105 @@ +.navbar-toggler[b-9gr5lv177o] { + appearance: none; + cursor: pointer; + width: 3.5rem; + height: 2.5rem; + color: white; + position: absolute; + top: 0.5rem; + right: 1rem; + border: 1px solid rgba(255, 255, 255, 0.1); + background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") no-repeat center/1.75rem rgba(255, 255, 255, 0.1); +} + +.navbar-toggler:checked[b-9gr5lv177o] { + background-color: rgba(255, 255, 255, 0.5); +} + +.top-row[b-9gr5lv177o] { + min-height: 3.5rem; + background-color: rgba(0,0,0,0.4); +} + +.navbar-brand[b-9gr5lv177o] { + font-size: 1.1rem; +} + +.bi[b-9gr5lv177o] { + display: inline-block; + position: relative; + width: 1.25rem; + height: 1.25rem; + margin-right: 0.75rem; + top: -1px; + background-size: cover; +} + +.bi-house-door-fill-nav-menu[b-9gr5lv177o] { + background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-house-door-fill' viewBox='0 0 16 16'%3E%3Cpath d='M6.5 14.5v-3.505c0-.245.25-.495.5-.495h2c.25 0 .5.25.5.5v3.5a.5.5 0 0 0 .5.5h4a.5.5 0 0 0 .5-.5v-7a.5.5 0 0 0-.146-.354L13 5.793V2.5a.5.5 0 0 0-.5-.5h-1a.5.5 0 0 0-.5.5v1.293L8.354 1.146a.5.5 0 0 0-.708 0l-6 6A.5.5 0 0 0 1.5 7.5v7a.5.5 0 0 0 .5.5h4a.5.5 0 0 0 .5-.5Z'/%3E%3C/svg%3E"); +} + +.bi-plus-square-fill-nav-menu[b-9gr5lv177o] { + background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-plus-square-fill' viewBox='0 0 16 16'%3E%3Cpath d='M2 0a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V2a2 2 0 0 0-2-2H2zm6.5 4.5v3h3a.5.5 0 0 1 0 1h-3v3a.5.5 0 0 1-1 0v-3h-3a.5.5 0 0 1 0-1h3v-3a.5.5 0 0 1 1 0z'/%3E%3C/svg%3E"); +} + +.bi-list-nested-nav-menu[b-9gr5lv177o] { + background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-list-nested' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M4.5 11.5A.5.5 0 0 1 5 11h10a.5.5 0 0 1 0 1H5a.5.5 0 0 1-.5-.5zm-2-4A.5.5 0 0 1 3 7h10a.5.5 0 0 1 0 1H3a.5.5 0 0 1-.5-.5zm-2-4A.5.5 0 0 1 1 3h10a.5.5 0 0 1 0 1H1a.5.5 0 0 1-.5-.5z'/%3E%3C/svg%3E"); +} + +.nav-item[b-9gr5lv177o] { + font-size: 0.9rem; + padding-bottom: 0.5rem; +} + + .nav-item:first-of-type[b-9gr5lv177o] { + padding-top: 1rem; + } + + .nav-item:last-of-type[b-9gr5lv177o] { + padding-bottom: 1rem; + } + + .nav-item[b-9gr5lv177o] .nav-link { + color: #d7d7d7; + background: none; + border: none; + border-radius: 4px; + height: 3rem; + display: flex; + align-items: center; + line-height: 3rem; + width: 100%; + } + +.nav-item[b-9gr5lv177o] a.active { + background-color: rgba(255,255,255,0.37); + color: white; +} + +.nav-item[b-9gr5lv177o] .nav-link:hover { + background-color: rgba(255,255,255,0.1); + color: white; +} + +.nav-scrollable[b-9gr5lv177o] { + display: none; +} + +.navbar-toggler:checked ~ .nav-scrollable[b-9gr5lv177o] { + display: block; +} + +@media (min-width: 641px) { + .navbar-toggler[b-9gr5lv177o] { + display: none; + } + + .nav-scrollable[b-9gr5lv177o] { + /* Never collapse the sidebar for wide screens */ + display: block; + + /* Allow sidebar to scroll for tall menus */ + height: calc(100vh - 3.5rem); + overflow-y: auto; + } +} diff --git a/src/dotnet/QuantEngine.Web/obj/Debug/net10.0/scopedcss/Components/Layout/ReconnectModal.razor.rz.scp.css b/src/dotnet/QuantEngine.Web/obj/Debug/net10.0/scopedcss/Components/Layout/ReconnectModal.razor.rz.scp.css new file mode 100644 index 0000000..0218211 --- /dev/null +++ b/src/dotnet/QuantEngine.Web/obj/Debug/net10.0/scopedcss/Components/Layout/ReconnectModal.razor.rz.scp.css @@ -0,0 +1,157 @@ +.components-reconnect-first-attempt-visible[b-9dgxcj10me], +.components-reconnect-repeated-attempt-visible[b-9dgxcj10me], +.components-reconnect-failed-visible[b-9dgxcj10me], +.components-pause-visible[b-9dgxcj10me], +.components-resume-failed-visible[b-9dgxcj10me], +.components-rejoining-animation[b-9dgxcj10me] { + display: none; +} + +#components-reconnect-modal.components-reconnect-show .components-reconnect-first-attempt-visible[b-9dgxcj10me], +#components-reconnect-modal.components-reconnect-show .components-rejoining-animation[b-9dgxcj10me], +#components-reconnect-modal.components-reconnect-paused .components-pause-visible[b-9dgxcj10me], +#components-reconnect-modal.components-reconnect-resume-failed .components-resume-failed-visible[b-9dgxcj10me], +#components-reconnect-modal.components-reconnect-retrying[b-9dgxcj10me], +#components-reconnect-modal.components-reconnect-retrying .components-reconnect-repeated-attempt-visible[b-9dgxcj10me], +#components-reconnect-modal.components-reconnect-retrying .components-rejoining-animation[b-9dgxcj10me], +#components-reconnect-modal.components-reconnect-failed[b-9dgxcj10me], +#components-reconnect-modal.components-reconnect-failed .components-reconnect-failed-visible[b-9dgxcj10me] { + display: block; +} + + +#components-reconnect-modal[b-9dgxcj10me] { + background-color: white; + width: 20rem; + margin: 20vh auto; + padding: 2rem; + border: 0; + border-radius: 0.5rem; + box-shadow: 0 3px 6px 2px rgba(0, 0, 0, 0.3); + opacity: 0; + transition: display 0.5s allow-discrete, overlay 0.5s allow-discrete; + animation: components-reconnect-modal-fadeOutOpacity-b-9dgxcj10me 0.5s both; + &[open] + +{ + animation: components-reconnect-modal-slideUp-b-9dgxcj10me 1.5s cubic-bezier(.05, .89, .25, 1.02) 0.3s, components-reconnect-modal-fadeInOpacity-b-9dgxcj10me 0.5s ease-in-out 0.3s; + animation-fill-mode: both; +} + +} + +#components-reconnect-modal[b-9dgxcj10me]::backdrop { + background-color: rgba(0, 0, 0, 0.4); + animation: components-reconnect-modal-fadeInOpacity-b-9dgxcj10me 0.5s ease-in-out; + opacity: 1; +} + +@keyframes components-reconnect-modal-slideUp-b-9dgxcj10me { + 0% { + transform: translateY(30px) scale(0.95); + } + + 100% { + transform: translateY(0); + } +} + +@keyframes components-reconnect-modal-fadeInOpacity-b-9dgxcj10me { + 0% { + opacity: 0; + } + + 100% { + opacity: 1; + } +} + +@keyframes components-reconnect-modal-fadeOutOpacity-b-9dgxcj10me { + 0% { + opacity: 1; + } + + 100% { + opacity: 0; + } +} + +.components-reconnect-container[b-9dgxcj10me] { + display: flex; + flex-direction: column; + align-items: center; + gap: 1rem; +} + +#components-reconnect-modal p[b-9dgxcj10me] { + margin: 0; + text-align: center; +} + +#components-reconnect-modal button[b-9dgxcj10me] { + border: 0; + background-color: #6b9ed2; + color: white; + padding: 4px 24px; + border-radius: 4px; +} + + #components-reconnect-modal button:hover[b-9dgxcj10me] { + background-color: #3b6ea2; + } + + #components-reconnect-modal button:active[b-9dgxcj10me] { + background-color: #6b9ed2; + } + +.components-rejoining-animation[b-9dgxcj10me] { + position: relative; + width: 80px; + height: 80px; +} + + .components-rejoining-animation div[b-9dgxcj10me] { + position: absolute; + border: 3px solid #0087ff; + opacity: 1; + border-radius: 50%; + animation: components-rejoining-animation-b-9dgxcj10me 1.5s cubic-bezier(0, 0.2, 0.8, 1) infinite; + } + + .components-rejoining-animation div:nth-child(2)[b-9dgxcj10me] { + animation-delay: -0.5s; + } + +@keyframes components-rejoining-animation-b-9dgxcj10me { + 0% { + top: 40px; + left: 40px; + width: 0; + height: 0; + opacity: 0; + } + + 4.9% { + top: 40px; + left: 40px; + width: 0; + height: 0; + opacity: 0; + } + + 5% { + top: 40px; + left: 40px; + width: 0; + height: 0; + opacity: 1; + } + + 100% { + top: 0px; + left: 0px; + width: 80px; + height: 80px; + opacity: 0; + } +} diff --git a/src/dotnet/QuantEngine.Web/obj/Debug/net10.0/scopedcss/bundle/QuantEngine.Web.styles.css b/src/dotnet/QuantEngine.Web/obj/Debug/net10.0/scopedcss/bundle/QuantEngine.Web.styles.css new file mode 100644 index 0000000..7c3267a --- /dev/null +++ b/src/dotnet/QuantEngine.Web/obj/Debug/net10.0/scopedcss/bundle/QuantEngine.Web.styles.css @@ -0,0 +1,363 @@ +/* /Components/Layout/MainLayout.razor.rz.scp.css */ +.page[b-d6y8adeyxc] { + position: relative; + display: flex; + flex-direction: column; +} + +main[b-d6y8adeyxc] { + flex: 1; +} + +.sidebar[b-d6y8adeyxc] { + background-image: linear-gradient(180deg, rgb(5, 39, 103) 0%, #3a0647 70%); +} + +.top-row[b-d6y8adeyxc] { + background-color: #f7f7f7; + border-bottom: 1px solid #d6d5d5; + justify-content: flex-end; + height: 3.5rem; + display: flex; + align-items: center; +} + + .top-row[b-d6y8adeyxc] a, .top-row[b-d6y8adeyxc] .btn-link { + white-space: nowrap; + margin-left: 1.5rem; + text-decoration: none; + } + + .top-row[b-d6y8adeyxc] a:hover, .top-row[b-d6y8adeyxc] .btn-link:hover { + text-decoration: underline; + } + + .top-row[b-d6y8adeyxc] a:first-child { + overflow: hidden; + text-overflow: ellipsis; + } + +@media (max-width: 640.98px) { + .top-row[b-d6y8adeyxc] { + justify-content: space-between; + } + + .top-row[b-d6y8adeyxc] a, .top-row[b-d6y8adeyxc] .btn-link { + margin-left: 0; + } +} + +@media (min-width: 641px) { + .page[b-d6y8adeyxc] { + flex-direction: row; + } + + .sidebar[b-d6y8adeyxc] { + width: 250px; + height: 100vh; + position: sticky; + top: 0; + } + + .top-row[b-d6y8adeyxc] { + position: sticky; + top: 0; + z-index: 1; + } + + .top-row.auth[b-d6y8adeyxc] a:first-child { + flex: 1; + text-align: right; + width: 0; + } + + .top-row[b-d6y8adeyxc], article[b-d6y8adeyxc] { + padding-left: 2rem !important; + padding-right: 1.5rem !important; + } +} + +#blazor-error-ui[b-d6y8adeyxc] { + color-scheme: light only; + background: lightyellow; + bottom: 0; + box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2); + box-sizing: border-box; + display: none; + left: 0; + padding: 0.6rem 1.25rem 0.7rem 1.25rem; + position: fixed; + width: 100%; + z-index: 1000; +} + + #blazor-error-ui .dismiss[b-d6y8adeyxc] { + cursor: pointer; + position: absolute; + right: 0.75rem; + top: 0.5rem; + } +/* /Components/Layout/NavMenu.razor.rz.scp.css */ +.navbar-toggler[b-9gr5lv177o] { + appearance: none; + cursor: pointer; + width: 3.5rem; + height: 2.5rem; + color: white; + position: absolute; + top: 0.5rem; + right: 1rem; + border: 1px solid rgba(255, 255, 255, 0.1); + background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") no-repeat center/1.75rem rgba(255, 255, 255, 0.1); +} + +.navbar-toggler:checked[b-9gr5lv177o] { + background-color: rgba(255, 255, 255, 0.5); +} + +.top-row[b-9gr5lv177o] { + min-height: 3.5rem; + background-color: rgba(0,0,0,0.4); +} + +.navbar-brand[b-9gr5lv177o] { + font-size: 1.1rem; +} + +.bi[b-9gr5lv177o] { + display: inline-block; + position: relative; + width: 1.25rem; + height: 1.25rem; + margin-right: 0.75rem; + top: -1px; + background-size: cover; +} + +.bi-house-door-fill-nav-menu[b-9gr5lv177o] { + background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-house-door-fill' viewBox='0 0 16 16'%3E%3Cpath d='M6.5 14.5v-3.505c0-.245.25-.495.5-.495h2c.25 0 .5.25.5.5v3.5a.5.5 0 0 0 .5.5h4a.5.5 0 0 0 .5-.5v-7a.5.5 0 0 0-.146-.354L13 5.793V2.5a.5.5 0 0 0-.5-.5h-1a.5.5 0 0 0-.5.5v1.293L8.354 1.146a.5.5 0 0 0-.708 0l-6 6A.5.5 0 0 0 1.5 7.5v7a.5.5 0 0 0 .5.5h4a.5.5 0 0 0 .5-.5Z'/%3E%3C/svg%3E"); +} + +.bi-plus-square-fill-nav-menu[b-9gr5lv177o] { + background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-plus-square-fill' viewBox='0 0 16 16'%3E%3Cpath d='M2 0a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V2a2 2 0 0 0-2-2H2zm6.5 4.5v3h3a.5.5 0 0 1 0 1h-3v3a.5.5 0 0 1-1 0v-3h-3a.5.5 0 0 1 0-1h3v-3a.5.5 0 0 1 1 0z'/%3E%3C/svg%3E"); +} + +.bi-list-nested-nav-menu[b-9gr5lv177o] { + background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-list-nested' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M4.5 11.5A.5.5 0 0 1 5 11h10a.5.5 0 0 1 0 1H5a.5.5 0 0 1-.5-.5zm-2-4A.5.5 0 0 1 3 7h10a.5.5 0 0 1 0 1H3a.5.5 0 0 1-.5-.5zm-2-4A.5.5 0 0 1 1 3h10a.5.5 0 0 1 0 1H1a.5.5 0 0 1-.5-.5z'/%3E%3C/svg%3E"); +} + +.nav-item[b-9gr5lv177o] { + font-size: 0.9rem; + padding-bottom: 0.5rem; +} + + .nav-item:first-of-type[b-9gr5lv177o] { + padding-top: 1rem; + } + + .nav-item:last-of-type[b-9gr5lv177o] { + padding-bottom: 1rem; + } + + .nav-item[b-9gr5lv177o] .nav-link { + color: #d7d7d7; + background: none; + border: none; + border-radius: 4px; + height: 3rem; + display: flex; + align-items: center; + line-height: 3rem; + width: 100%; + } + +.nav-item[b-9gr5lv177o] a.active { + background-color: rgba(255,255,255,0.37); + color: white; +} + +.nav-item[b-9gr5lv177o] .nav-link:hover { + background-color: rgba(255,255,255,0.1); + color: white; +} + +.nav-scrollable[b-9gr5lv177o] { + display: none; +} + +.navbar-toggler:checked ~ .nav-scrollable[b-9gr5lv177o] { + display: block; +} + +@media (min-width: 641px) { + .navbar-toggler[b-9gr5lv177o] { + display: none; + } + + .nav-scrollable[b-9gr5lv177o] { + /* Never collapse the sidebar for wide screens */ + display: block; + + /* Allow sidebar to scroll for tall menus */ + height: calc(100vh - 3.5rem); + overflow-y: auto; + } +} +/* /Components/Layout/ReconnectModal.razor.rz.scp.css */ +.components-reconnect-first-attempt-visible[b-9dgxcj10me], +.components-reconnect-repeated-attempt-visible[b-9dgxcj10me], +.components-reconnect-failed-visible[b-9dgxcj10me], +.components-pause-visible[b-9dgxcj10me], +.components-resume-failed-visible[b-9dgxcj10me], +.components-rejoining-animation[b-9dgxcj10me] { + display: none; +} + +#components-reconnect-modal.components-reconnect-show .components-reconnect-first-attempt-visible[b-9dgxcj10me], +#components-reconnect-modal.components-reconnect-show .components-rejoining-animation[b-9dgxcj10me], +#components-reconnect-modal.components-reconnect-paused .components-pause-visible[b-9dgxcj10me], +#components-reconnect-modal.components-reconnect-resume-failed .components-resume-failed-visible[b-9dgxcj10me], +#components-reconnect-modal.components-reconnect-retrying[b-9dgxcj10me], +#components-reconnect-modal.components-reconnect-retrying .components-reconnect-repeated-attempt-visible[b-9dgxcj10me], +#components-reconnect-modal.components-reconnect-retrying .components-rejoining-animation[b-9dgxcj10me], +#components-reconnect-modal.components-reconnect-failed[b-9dgxcj10me], +#components-reconnect-modal.components-reconnect-failed .components-reconnect-failed-visible[b-9dgxcj10me] { + display: block; +} + + +#components-reconnect-modal[b-9dgxcj10me] { + background-color: white; + width: 20rem; + margin: 20vh auto; + padding: 2rem; + border: 0; + border-radius: 0.5rem; + box-shadow: 0 3px 6px 2px rgba(0, 0, 0, 0.3); + opacity: 0; + transition: display 0.5s allow-discrete, overlay 0.5s allow-discrete; + animation: components-reconnect-modal-fadeOutOpacity-b-9dgxcj10me 0.5s both; + &[open] + +{ + animation: components-reconnect-modal-slideUp-b-9dgxcj10me 1.5s cubic-bezier(.05, .89, .25, 1.02) 0.3s, components-reconnect-modal-fadeInOpacity-b-9dgxcj10me 0.5s ease-in-out 0.3s; + animation-fill-mode: both; +} + +} + +#components-reconnect-modal[b-9dgxcj10me]::backdrop { + background-color: rgba(0, 0, 0, 0.4); + animation: components-reconnect-modal-fadeInOpacity-b-9dgxcj10me 0.5s ease-in-out; + opacity: 1; +} + +@keyframes components-reconnect-modal-slideUp-b-9dgxcj10me { + 0% { + transform: translateY(30px) scale(0.95); + } + + 100% { + transform: translateY(0); + } +} + +@keyframes components-reconnect-modal-fadeInOpacity-b-9dgxcj10me { + 0% { + opacity: 0; + } + + 100% { + opacity: 1; + } +} + +@keyframes components-reconnect-modal-fadeOutOpacity-b-9dgxcj10me { + 0% { + opacity: 1; + } + + 100% { + opacity: 0; + } +} + +.components-reconnect-container[b-9dgxcj10me] { + display: flex; + flex-direction: column; + align-items: center; + gap: 1rem; +} + +#components-reconnect-modal p[b-9dgxcj10me] { + margin: 0; + text-align: center; +} + +#components-reconnect-modal button[b-9dgxcj10me] { + border: 0; + background-color: #6b9ed2; + color: white; + padding: 4px 24px; + border-radius: 4px; +} + + #components-reconnect-modal button:hover[b-9dgxcj10me] { + background-color: #3b6ea2; + } + + #components-reconnect-modal button:active[b-9dgxcj10me] { + background-color: #6b9ed2; + } + +.components-rejoining-animation[b-9dgxcj10me] { + position: relative; + width: 80px; + height: 80px; +} + + .components-rejoining-animation div[b-9dgxcj10me] { + position: absolute; + border: 3px solid #0087ff; + opacity: 1; + border-radius: 50%; + animation: components-rejoining-animation-b-9dgxcj10me 1.5s cubic-bezier(0, 0.2, 0.8, 1) infinite; + } + + .components-rejoining-animation div:nth-child(2)[b-9dgxcj10me] { + animation-delay: -0.5s; + } + +@keyframes components-rejoining-animation-b-9dgxcj10me { + 0% { + top: 40px; + left: 40px; + width: 0; + height: 0; + opacity: 0; + } + + 4.9% { + top: 40px; + left: 40px; + width: 0; + height: 0; + opacity: 0; + } + + 5% { + top: 40px; + left: 40px; + width: 0; + height: 0; + opacity: 1; + } + + 100% { + top: 0px; + left: 0px; + width: 80px; + height: 80px; + opacity: 0; + } +} diff --git a/src/dotnet/QuantEngine.Web/obj/Debug/net10.0/scopedcss/projectbundle/QuantEngine.Web.bundle.scp.css b/src/dotnet/QuantEngine.Web/obj/Debug/net10.0/scopedcss/projectbundle/QuantEngine.Web.bundle.scp.css new file mode 100644 index 0000000..7c3267a --- /dev/null +++ b/src/dotnet/QuantEngine.Web/obj/Debug/net10.0/scopedcss/projectbundle/QuantEngine.Web.bundle.scp.css @@ -0,0 +1,363 @@ +/* /Components/Layout/MainLayout.razor.rz.scp.css */ +.page[b-d6y8adeyxc] { + position: relative; + display: flex; + flex-direction: column; +} + +main[b-d6y8adeyxc] { + flex: 1; +} + +.sidebar[b-d6y8adeyxc] { + background-image: linear-gradient(180deg, rgb(5, 39, 103) 0%, #3a0647 70%); +} + +.top-row[b-d6y8adeyxc] { + background-color: #f7f7f7; + border-bottom: 1px solid #d6d5d5; + justify-content: flex-end; + height: 3.5rem; + display: flex; + align-items: center; +} + + .top-row[b-d6y8adeyxc] a, .top-row[b-d6y8adeyxc] .btn-link { + white-space: nowrap; + margin-left: 1.5rem; + text-decoration: none; + } + + .top-row[b-d6y8adeyxc] a:hover, .top-row[b-d6y8adeyxc] .btn-link:hover { + text-decoration: underline; + } + + .top-row[b-d6y8adeyxc] a:first-child { + overflow: hidden; + text-overflow: ellipsis; + } + +@media (max-width: 640.98px) { + .top-row[b-d6y8adeyxc] { + justify-content: space-between; + } + + .top-row[b-d6y8adeyxc] a, .top-row[b-d6y8adeyxc] .btn-link { + margin-left: 0; + } +} + +@media (min-width: 641px) { + .page[b-d6y8adeyxc] { + flex-direction: row; + } + + .sidebar[b-d6y8adeyxc] { + width: 250px; + height: 100vh; + position: sticky; + top: 0; + } + + .top-row[b-d6y8adeyxc] { + position: sticky; + top: 0; + z-index: 1; + } + + .top-row.auth[b-d6y8adeyxc] a:first-child { + flex: 1; + text-align: right; + width: 0; + } + + .top-row[b-d6y8adeyxc], article[b-d6y8adeyxc] { + padding-left: 2rem !important; + padding-right: 1.5rem !important; + } +} + +#blazor-error-ui[b-d6y8adeyxc] { + color-scheme: light only; + background: lightyellow; + bottom: 0; + box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2); + box-sizing: border-box; + display: none; + left: 0; + padding: 0.6rem 1.25rem 0.7rem 1.25rem; + position: fixed; + width: 100%; + z-index: 1000; +} + + #blazor-error-ui .dismiss[b-d6y8adeyxc] { + cursor: pointer; + position: absolute; + right: 0.75rem; + top: 0.5rem; + } +/* /Components/Layout/NavMenu.razor.rz.scp.css */ +.navbar-toggler[b-9gr5lv177o] { + appearance: none; + cursor: pointer; + width: 3.5rem; + height: 2.5rem; + color: white; + position: absolute; + top: 0.5rem; + right: 1rem; + border: 1px solid rgba(255, 255, 255, 0.1); + background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") no-repeat center/1.75rem rgba(255, 255, 255, 0.1); +} + +.navbar-toggler:checked[b-9gr5lv177o] { + background-color: rgba(255, 255, 255, 0.5); +} + +.top-row[b-9gr5lv177o] { + min-height: 3.5rem; + background-color: rgba(0,0,0,0.4); +} + +.navbar-brand[b-9gr5lv177o] { + font-size: 1.1rem; +} + +.bi[b-9gr5lv177o] { + display: inline-block; + position: relative; + width: 1.25rem; + height: 1.25rem; + margin-right: 0.75rem; + top: -1px; + background-size: cover; +} + +.bi-house-door-fill-nav-menu[b-9gr5lv177o] { + background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-house-door-fill' viewBox='0 0 16 16'%3E%3Cpath d='M6.5 14.5v-3.505c0-.245.25-.495.5-.495h2c.25 0 .5.25.5.5v3.5a.5.5 0 0 0 .5.5h4a.5.5 0 0 0 .5-.5v-7a.5.5 0 0 0-.146-.354L13 5.793V2.5a.5.5 0 0 0-.5-.5h-1a.5.5 0 0 0-.5.5v1.293L8.354 1.146a.5.5 0 0 0-.708 0l-6 6A.5.5 0 0 0 1.5 7.5v7a.5.5 0 0 0 .5.5h4a.5.5 0 0 0 .5-.5Z'/%3E%3C/svg%3E"); +} + +.bi-plus-square-fill-nav-menu[b-9gr5lv177o] { + background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-plus-square-fill' viewBox='0 0 16 16'%3E%3Cpath d='M2 0a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V2a2 2 0 0 0-2-2H2zm6.5 4.5v3h3a.5.5 0 0 1 0 1h-3v3a.5.5 0 0 1-1 0v-3h-3a.5.5 0 0 1 0-1h3v-3a.5.5 0 0 1 1 0z'/%3E%3C/svg%3E"); +} + +.bi-list-nested-nav-menu[b-9gr5lv177o] { + background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-list-nested' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M4.5 11.5A.5.5 0 0 1 5 11h10a.5.5 0 0 1 0 1H5a.5.5 0 0 1-.5-.5zm-2-4A.5.5 0 0 1 3 7h10a.5.5 0 0 1 0 1H3a.5.5 0 0 1-.5-.5zm-2-4A.5.5 0 0 1 1 3h10a.5.5 0 0 1 0 1H1a.5.5 0 0 1-.5-.5z'/%3E%3C/svg%3E"); +} + +.nav-item[b-9gr5lv177o] { + font-size: 0.9rem; + padding-bottom: 0.5rem; +} + + .nav-item:first-of-type[b-9gr5lv177o] { + padding-top: 1rem; + } + + .nav-item:last-of-type[b-9gr5lv177o] { + padding-bottom: 1rem; + } + + .nav-item[b-9gr5lv177o] .nav-link { + color: #d7d7d7; + background: none; + border: none; + border-radius: 4px; + height: 3rem; + display: flex; + align-items: center; + line-height: 3rem; + width: 100%; + } + +.nav-item[b-9gr5lv177o] a.active { + background-color: rgba(255,255,255,0.37); + color: white; +} + +.nav-item[b-9gr5lv177o] .nav-link:hover { + background-color: rgba(255,255,255,0.1); + color: white; +} + +.nav-scrollable[b-9gr5lv177o] { + display: none; +} + +.navbar-toggler:checked ~ .nav-scrollable[b-9gr5lv177o] { + display: block; +} + +@media (min-width: 641px) { + .navbar-toggler[b-9gr5lv177o] { + display: none; + } + + .nav-scrollable[b-9gr5lv177o] { + /* Never collapse the sidebar for wide screens */ + display: block; + + /* Allow sidebar to scroll for tall menus */ + height: calc(100vh - 3.5rem); + overflow-y: auto; + } +} +/* /Components/Layout/ReconnectModal.razor.rz.scp.css */ +.components-reconnect-first-attempt-visible[b-9dgxcj10me], +.components-reconnect-repeated-attempt-visible[b-9dgxcj10me], +.components-reconnect-failed-visible[b-9dgxcj10me], +.components-pause-visible[b-9dgxcj10me], +.components-resume-failed-visible[b-9dgxcj10me], +.components-rejoining-animation[b-9dgxcj10me] { + display: none; +} + +#components-reconnect-modal.components-reconnect-show .components-reconnect-first-attempt-visible[b-9dgxcj10me], +#components-reconnect-modal.components-reconnect-show .components-rejoining-animation[b-9dgxcj10me], +#components-reconnect-modal.components-reconnect-paused .components-pause-visible[b-9dgxcj10me], +#components-reconnect-modal.components-reconnect-resume-failed .components-resume-failed-visible[b-9dgxcj10me], +#components-reconnect-modal.components-reconnect-retrying[b-9dgxcj10me], +#components-reconnect-modal.components-reconnect-retrying .components-reconnect-repeated-attempt-visible[b-9dgxcj10me], +#components-reconnect-modal.components-reconnect-retrying .components-rejoining-animation[b-9dgxcj10me], +#components-reconnect-modal.components-reconnect-failed[b-9dgxcj10me], +#components-reconnect-modal.components-reconnect-failed .components-reconnect-failed-visible[b-9dgxcj10me] { + display: block; +} + + +#components-reconnect-modal[b-9dgxcj10me] { + background-color: white; + width: 20rem; + margin: 20vh auto; + padding: 2rem; + border: 0; + border-radius: 0.5rem; + box-shadow: 0 3px 6px 2px rgba(0, 0, 0, 0.3); + opacity: 0; + transition: display 0.5s allow-discrete, overlay 0.5s allow-discrete; + animation: components-reconnect-modal-fadeOutOpacity-b-9dgxcj10me 0.5s both; + &[open] + +{ + animation: components-reconnect-modal-slideUp-b-9dgxcj10me 1.5s cubic-bezier(.05, .89, .25, 1.02) 0.3s, components-reconnect-modal-fadeInOpacity-b-9dgxcj10me 0.5s ease-in-out 0.3s; + animation-fill-mode: both; +} + +} + +#components-reconnect-modal[b-9dgxcj10me]::backdrop { + background-color: rgba(0, 0, 0, 0.4); + animation: components-reconnect-modal-fadeInOpacity-b-9dgxcj10me 0.5s ease-in-out; + opacity: 1; +} + +@keyframes components-reconnect-modal-slideUp-b-9dgxcj10me { + 0% { + transform: translateY(30px) scale(0.95); + } + + 100% { + transform: translateY(0); + } +} + +@keyframes components-reconnect-modal-fadeInOpacity-b-9dgxcj10me { + 0% { + opacity: 0; + } + + 100% { + opacity: 1; + } +} + +@keyframes components-reconnect-modal-fadeOutOpacity-b-9dgxcj10me { + 0% { + opacity: 1; + } + + 100% { + opacity: 0; + } +} + +.components-reconnect-container[b-9dgxcj10me] { + display: flex; + flex-direction: column; + align-items: center; + gap: 1rem; +} + +#components-reconnect-modal p[b-9dgxcj10me] { + margin: 0; + text-align: center; +} + +#components-reconnect-modal button[b-9dgxcj10me] { + border: 0; + background-color: #6b9ed2; + color: white; + padding: 4px 24px; + border-radius: 4px; +} + + #components-reconnect-modal button:hover[b-9dgxcj10me] { + background-color: #3b6ea2; + } + + #components-reconnect-modal button:active[b-9dgxcj10me] { + background-color: #6b9ed2; + } + +.components-rejoining-animation[b-9dgxcj10me] { + position: relative; + width: 80px; + height: 80px; +} + + .components-rejoining-animation div[b-9dgxcj10me] { + position: absolute; + border: 3px solid #0087ff; + opacity: 1; + border-radius: 50%; + animation: components-rejoining-animation-b-9dgxcj10me 1.5s cubic-bezier(0, 0.2, 0.8, 1) infinite; + } + + .components-rejoining-animation div:nth-child(2)[b-9dgxcj10me] { + animation-delay: -0.5s; + } + +@keyframes components-rejoining-animation-b-9dgxcj10me { + 0% { + top: 40px; + left: 40px; + width: 0; + height: 0; + opacity: 0; + } + + 4.9% { + top: 40px; + left: 40px; + width: 0; + height: 0; + opacity: 0; + } + + 5% { + top: 40px; + left: 40px; + width: 0; + height: 0; + opacity: 1; + } + + 100% { + top: 0px; + left: 0px; + width: 80px; + height: 80px; + opacity: 0; + } +} diff --git a/src/dotnet/QuantEngine.Web/obj/Debug/net10.0/staticwebassets.build.endpoints.json b/src/dotnet/QuantEngine.Web/obj/Debug/net10.0/staticwebassets.build.endpoints.json new file mode 100644 index 0000000..f857f6e --- /dev/null +++ b/src/dotnet/QuantEngine.Web/obj/Debug/net10.0/staticwebassets.build.endpoints.json @@ -0,0 +1 @@ +{"Version":1,"ManifestType":"Build","Endpoints":[{"Route":"Components/Layout/ReconnectModal.13ja33weya.razor.js","AssetFile":"Components/Layout/ReconnectModal.razor.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"2364"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"4zGYCWZ4pfXdYacNs7XaH1BXGvludoT6JCkX9NZucgI=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:34:32 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"13ja33weya"},{"Name":"integrity","Value":"sha256-4zGYCWZ4pfXdYacNs7XaH1BXGvludoT6JCkX9NZucgI="},{"Name":"label","Value":"Components/Layout/ReconnectModal.razor.js"},{"Name":"script-type","Value":"module"}]},{"Route":"Components/Layout/ReconnectModal.13ja33weya.razor.js","AssetFile":"Components/Layout/ReconnectModal.razor.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.001386962552"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"720"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"kQLxn+TSoZvHHUJJnDORp3qKU0F+kzVxLQB9TB0aEoY=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"13ja33weya"},{"Name":"integrity","Value":"sha256-4zGYCWZ4pfXdYacNs7XaH1BXGvludoT6JCkX9NZucgI="},{"Name":"label","Value":"Components/Layout/ReconnectModal.razor.js"},{"Name":"original-resource","Value":"\"4zGYCWZ4pfXdYacNs7XaH1BXGvludoT6JCkX9NZucgI=\""},{"Name":"script-type","Value":"module"}]},{"Route":"Components/Layout/ReconnectModal.13ja33weya.razor.js.gz","AssetFile":"Components/Layout/ReconnectModal.razor.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"720"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"kQLxn+TSoZvHHUJJnDORp3qKU0F+kzVxLQB9TB0aEoY=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"13ja33weya"},{"Name":"integrity","Value":"sha256-kQLxn+TSoZvHHUJJnDORp3qKU0F+kzVxLQB9TB0aEoY="},{"Name":"label","Value":"Components/Layout/ReconnectModal.razor.js.gz"}]},{"Route":"Components/Layout/ReconnectModal.razor.js","AssetFile":"Components/Layout/ReconnectModal.razor.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"2364"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"4zGYCWZ4pfXdYacNs7XaH1BXGvludoT6JCkX9NZucgI=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:34:32 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-4zGYCWZ4pfXdYacNs7XaH1BXGvludoT6JCkX9NZucgI="},{"Name":"script-type","Value":"module"}]},{"Route":"Components/Layout/ReconnectModal.razor.js","AssetFile":"Components/Layout/ReconnectModal.razor.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.001386962552"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"720"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"kQLxn+TSoZvHHUJJnDORp3qKU0F+kzVxLQB9TB0aEoY=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-4zGYCWZ4pfXdYacNs7XaH1BXGvludoT6JCkX9NZucgI="},{"Name":"original-resource","Value":"\"4zGYCWZ4pfXdYacNs7XaH1BXGvludoT6JCkX9NZucgI=\""},{"Name":"script-type","Value":"module"}]},{"Route":"Components/Layout/ReconnectModal.razor.js.gz","AssetFile":"Components/Layout/ReconnectModal.razor.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"720"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"kQLxn+TSoZvHHUJJnDORp3qKU0F+kzVxLQB9TB0aEoY=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-kQLxn+TSoZvHHUJJnDORp3qKU0F+kzVxLQB9TB0aEoY="}]},{"Route":"QuantEngine.Web.styles.css","AssetFile":"QuantEngine.Web.styles.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000402900886"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2481"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"eMUoaz34S9P8ffguerv/SxXWfTBS7zv7kXrquS2C5EE=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-GphsPL5Q7m5g2Ugk7RGmBY019LEDJjdfaTE9uXiHMcs="},{"Name":"original-resource","Value":"\"GphsPL5Q7m5g2Ugk7RGmBY019LEDJjdfaTE9uXiHMcs=\""}]},{"Route":"QuantEngine.Web.styles.css","AssetFile":"QuantEngine.Web.styles.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"10327"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"GphsPL5Q7m5g2Ugk7RGmBY019LEDJjdfaTE9uXiHMcs=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-GphsPL5Q7m5g2Ugk7RGmBY019LEDJjdfaTE9uXiHMcs="}]},{"Route":"QuantEngine.Web.styles.css.gz","AssetFile":"QuantEngine.Web.styles.css.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2481"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"eMUoaz34S9P8ffguerv/SxXWfTBS7zv7kXrquS2C5EE=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-eMUoaz34S9P8ffguerv/SxXWfTBS7zv7kXrquS2C5EE="}]},{"Route":"QuantEngine.Web.yi314np04p.styles.css","AssetFile":"QuantEngine.Web.styles.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000402900886"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2481"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"eMUoaz34S9P8ffguerv/SxXWfTBS7zv7kXrquS2C5EE=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"yi314np04p"},{"Name":"integrity","Value":"sha256-GphsPL5Q7m5g2Ugk7RGmBY019LEDJjdfaTE9uXiHMcs="},{"Name":"label","Value":"QuantEngine.Web.styles.css"},{"Name":"original-resource","Value":"\"GphsPL5Q7m5g2Ugk7RGmBY019LEDJjdfaTE9uXiHMcs=\""}]},{"Route":"QuantEngine.Web.yi314np04p.styles.css","AssetFile":"QuantEngine.Web.styles.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"10327"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"GphsPL5Q7m5g2Ugk7RGmBY019LEDJjdfaTE9uXiHMcs=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"yi314np04p"},{"Name":"integrity","Value":"sha256-GphsPL5Q7m5g2Ugk7RGmBY019LEDJjdfaTE9uXiHMcs="},{"Name":"label","Value":"QuantEngine.Web.styles.css"}]},{"Route":"QuantEngine.Web.yi314np04p.styles.css.gz","AssetFile":"QuantEngine.Web.styles.css.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2481"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"eMUoaz34S9P8ffguerv/SxXWfTBS7zv7kXrquS2C5EE=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"yi314np04p"},{"Name":"integrity","Value":"sha256-eMUoaz34S9P8ffguerv/SxXWfTBS7zv7kXrquS2C5EE="},{"Name":"label","Value":"QuantEngine.Web.styles.css.gz"}]},{"Route":"_framework/blazor.server.js","AssetFile":"_framework/blazor.server.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000022393909"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"44654"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"ahpIOLaxXwiWnLDSFUZfwZMfRrULpAls7jR+KeVK4ic=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Tv+kEpSEz2WDrK9B8F6f9WkB2KflgcYkRc7goTp7O9Q="},{"Name":"original-resource","Value":"\"Tv+kEpSEz2WDrK9B8F6f9WkB2KflgcYkRc7goTp7O9Q=\""}]},{"Route":"_framework/blazor.server.js","AssetFile":"_framework/blazor.server.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"164726"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"Tv+kEpSEz2WDrK9B8F6f9WkB2KflgcYkRc7goTp7O9Q=\""},{"Name":"Last-Modified","Value":"Fri, 24 Oct 2025 01:06:36 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Tv+kEpSEz2WDrK9B8F6f9WkB2KflgcYkRc7goTp7O9Q="}]},{"Route":"_framework/blazor.server.js.gz","AssetFile":"_framework/blazor.server.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"44654"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"ahpIOLaxXwiWnLDSFUZfwZMfRrULpAls7jR+KeVK4ic=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-ahpIOLaxXwiWnLDSFUZfwZMfRrULpAls7jR+KeVK4ic="}]},{"Route":"_framework/blazor.server.u1n4jc5v46.js","AssetFile":"_framework/blazor.server.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000022393909"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"44654"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"ahpIOLaxXwiWnLDSFUZfwZMfRrULpAls7jR+KeVK4ic=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"u1n4jc5v46"},{"Name":"integrity","Value":"sha256-Tv+kEpSEz2WDrK9B8F6f9WkB2KflgcYkRc7goTp7O9Q="},{"Name":"label","Value":"_framework/blazor.server.js"},{"Name":"original-resource","Value":"\"Tv+kEpSEz2WDrK9B8F6f9WkB2KflgcYkRc7goTp7O9Q=\""}]},{"Route":"_framework/blazor.server.u1n4jc5v46.js","AssetFile":"_framework/blazor.server.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"164726"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"Tv+kEpSEz2WDrK9B8F6f9WkB2KflgcYkRc7goTp7O9Q=\""},{"Name":"Last-Modified","Value":"Fri, 24 Oct 2025 01:06:36 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"u1n4jc5v46"},{"Name":"integrity","Value":"sha256-Tv+kEpSEz2WDrK9B8F6f9WkB2KflgcYkRc7goTp7O9Q="},{"Name":"label","Value":"_framework/blazor.server.js"}]},{"Route":"_framework/blazor.server.u1n4jc5v46.js.gz","AssetFile":"_framework/blazor.server.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"44654"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"ahpIOLaxXwiWnLDSFUZfwZMfRrULpAls7jR+KeVK4ic=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"u1n4jc5v46"},{"Name":"integrity","Value":"sha256-ahpIOLaxXwiWnLDSFUZfwZMfRrULpAls7jR+KeVK4ic="},{"Name":"label","Value":"_framework/blazor.server.js.gz"}]},{"Route":"_framework/blazor.web.j8lzlu28q6.js","AssetFile":"_framework/blazor.web.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000017975912"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"55629"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"VpDUbLuhAgB3D8PnpAYA58cbpiNNGy8iNBvD6LMHxhs=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"j8lzlu28q6"},{"Name":"integrity","Value":"sha256-vRwLU/ycEDb5TwHhutOGO6cpL7nIIRxLGPG7B9IvtHw="},{"Name":"label","Value":"_framework/blazor.web.js"},{"Name":"original-resource","Value":"\"vRwLU/ycEDb5TwHhutOGO6cpL7nIIRxLGPG7B9IvtHw=\""}]},{"Route":"_framework/blazor.web.j8lzlu28q6.js","AssetFile":"_framework/blazor.web.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"200101"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"vRwLU/ycEDb5TwHhutOGO6cpL7nIIRxLGPG7B9IvtHw=\""},{"Name":"Last-Modified","Value":"Fri, 24 Oct 2025 01:06:44 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"j8lzlu28q6"},{"Name":"integrity","Value":"sha256-vRwLU/ycEDb5TwHhutOGO6cpL7nIIRxLGPG7B9IvtHw="},{"Name":"label","Value":"_framework/blazor.web.js"}]},{"Route":"_framework/blazor.web.j8lzlu28q6.js.gz","AssetFile":"_framework/blazor.web.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"55629"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"VpDUbLuhAgB3D8PnpAYA58cbpiNNGy8iNBvD6LMHxhs=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"j8lzlu28q6"},{"Name":"integrity","Value":"sha256-VpDUbLuhAgB3D8PnpAYA58cbpiNNGy8iNBvD6LMHxhs="},{"Name":"label","Value":"_framework/blazor.web.js.gz"}]},{"Route":"_framework/blazor.web.js","AssetFile":"_framework/blazor.web.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000017975912"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"55629"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"VpDUbLuhAgB3D8PnpAYA58cbpiNNGy8iNBvD6LMHxhs=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-vRwLU/ycEDb5TwHhutOGO6cpL7nIIRxLGPG7B9IvtHw="},{"Name":"original-resource","Value":"\"vRwLU/ycEDb5TwHhutOGO6cpL7nIIRxLGPG7B9IvtHw=\""}]},{"Route":"_framework/blazor.web.js","AssetFile":"_framework/blazor.web.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"200101"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"vRwLU/ycEDb5TwHhutOGO6cpL7nIIRxLGPG7B9IvtHw=\""},{"Name":"Last-Modified","Value":"Fri, 24 Oct 2025 01:06:44 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-vRwLU/ycEDb5TwHhutOGO6cpL7nIIRxLGPG7B9IvtHw="}]},{"Route":"_framework/blazor.web.js.gz","AssetFile":"_framework/blazor.web.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"55629"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"VpDUbLuhAgB3D8PnpAYA58cbpiNNGy8iNBvD6LMHxhs=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-VpDUbLuhAgB3D8PnpAYA58cbpiNNGy8iNBvD6LMHxhs="}]},{"Route":"app.4c8rkwezul.css","AssetFile":"app.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000536480687"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1863"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"gnkzj8DwujHnit2MwKgV6YdKLWzKFbNT467LEBsdMTs=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:51:47 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"4c8rkwezul"},{"Name":"integrity","Value":"sha256-9BYQ1DEYdSZH7MBG7AQ28+OVGYKziE5nCfTTJOiedPU="},{"Name":"label","Value":"app.css"},{"Name":"original-resource","Value":"\"9BYQ1DEYdSZH7MBG7AQ28+OVGYKziE5nCfTTJOiedPU=\""}]},{"Route":"app.4c8rkwezul.css","AssetFile":"app.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"6554"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"9BYQ1DEYdSZH7MBG7AQ28+OVGYKziE5nCfTTJOiedPU=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:50:05 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"4c8rkwezul"},{"Name":"integrity","Value":"sha256-9BYQ1DEYdSZH7MBG7AQ28+OVGYKziE5nCfTTJOiedPU="},{"Name":"label","Value":"app.css"}]},{"Route":"app.4c8rkwezul.css.gz","AssetFile":"app.css.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1863"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"gnkzj8DwujHnit2MwKgV6YdKLWzKFbNT467LEBsdMTs=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:51:47 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"4c8rkwezul"},{"Name":"integrity","Value":"sha256-gnkzj8DwujHnit2MwKgV6YdKLWzKFbNT467LEBsdMTs="},{"Name":"label","Value":"app.css.gz"}]},{"Route":"app.css","AssetFile":"app.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000536480687"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1863"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"gnkzj8DwujHnit2MwKgV6YdKLWzKFbNT467LEBsdMTs=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:51:47 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-9BYQ1DEYdSZH7MBG7AQ28+OVGYKziE5nCfTTJOiedPU="},{"Name":"original-resource","Value":"\"9BYQ1DEYdSZH7MBG7AQ28+OVGYKziE5nCfTTJOiedPU=\""}]},{"Route":"app.css","AssetFile":"app.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"6554"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"9BYQ1DEYdSZH7MBG7AQ28+OVGYKziE5nCfTTJOiedPU=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:50:05 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-9BYQ1DEYdSZH7MBG7AQ28+OVGYKziE5nCfTTJOiedPU="}]},{"Route":"app.css.gz","AssetFile":"app.css.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1863"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"gnkzj8DwujHnit2MwKgV6YdKLWzKFbNT467LEBsdMTs=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:51:47 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-gnkzj8DwujHnit2MwKgV6YdKLWzKFbNT467LEBsdMTs="}]},{"Route":"favicon.ifv42okdf2.png","AssetFile":"favicon.png","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"1148"},{"Name":"Content-Type","Value":"image/png"},{"Name":"ETag","Value":"\"4mWsDy3aHl36ZbGt8zByK7Pvd4kRUoNgTYzRnwmPHwg=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:34:31 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ifv42okdf2"},{"Name":"integrity","Value":"sha256-4mWsDy3aHl36ZbGt8zByK7Pvd4kRUoNgTYzRnwmPHwg="},{"Name":"label","Value":"favicon.png"}]},{"Route":"favicon.png","AssetFile":"favicon.png","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=3600, must-revalidate"},{"Name":"Content-Length","Value":"1148"},{"Name":"Content-Type","Value":"image/png"},{"Name":"ETag","Value":"\"4mWsDy3aHl36ZbGt8zByK7Pvd4kRUoNgTYzRnwmPHwg=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:34:31 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-4mWsDy3aHl36ZbGt8zByK7Pvd4kRUoNgTYzRnwmPHwg="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.bqjiyaj88i.css","AssetFile":"lib/bootstrap/dist/css/bootstrap-grid.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000148235992"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"6745"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"jhvPrvWZn8BbeR49W+r+MLNcnTeFyaSXxry9n1ctwy4=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"bqjiyaj88i"},{"Name":"integrity","Value":"sha256-Yy5/hBqRmmU2MJ1TKwP2aXoTO6+OjzrLmJIsC2Wy4H8="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-grid.css"},{"Name":"original-resource","Value":"\"Yy5/hBqRmmU2MJ1TKwP2aXoTO6+OjzrLmJIsC2Wy4H8=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.bqjiyaj88i.css","AssetFile":"lib/bootstrap/dist/css/bootstrap-grid.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"70329"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"Yy5/hBqRmmU2MJ1TKwP2aXoTO6+OjzrLmJIsC2Wy4H8=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:34:31 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"bqjiyaj88i"},{"Name":"integrity","Value":"sha256-Yy5/hBqRmmU2MJ1TKwP2aXoTO6+OjzrLmJIsC2Wy4H8="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-grid.css"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.bqjiyaj88i.css.gz","AssetFile":"lib/bootstrap/dist/css/bootstrap-grid.css.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"6745"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"jhvPrvWZn8BbeR49W+r+MLNcnTeFyaSXxry9n1ctwy4=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"bqjiyaj88i"},{"Name":"integrity","Value":"sha256-jhvPrvWZn8BbeR49W+r+MLNcnTeFyaSXxry9n1ctwy4="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-grid.css.gz"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.css","AssetFile":"lib/bootstrap/dist/css/bootstrap-grid.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000148235992"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"6745"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"jhvPrvWZn8BbeR49W+r+MLNcnTeFyaSXxry9n1ctwy4=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Yy5/hBqRmmU2MJ1TKwP2aXoTO6+OjzrLmJIsC2Wy4H8="},{"Name":"original-resource","Value":"\"Yy5/hBqRmmU2MJ1TKwP2aXoTO6+OjzrLmJIsC2Wy4H8=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.css","AssetFile":"lib/bootstrap/dist/css/bootstrap-grid.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"70329"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"Yy5/hBqRmmU2MJ1TKwP2aXoTO6+OjzrLmJIsC2Wy4H8=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:34:31 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Yy5/hBqRmmU2MJ1TKwP2aXoTO6+OjzrLmJIsC2Wy4H8="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.css.c2jlpeoesf.map","AssetFile":"lib/bootstrap/dist/css/bootstrap-grid.css.map.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000030492453"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"32794"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"ALPf6qsZMu+Ui8l8jPJJF3MhTcq6uwrQhRWeWJL4ixU=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"c2jlpeoesf"},{"Name":"integrity","Value":"sha256-xAT+n25FE5hvOjj2fG4YdOwr1bl4IlAJBNg6PbhLT2E="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-grid.css.map"},{"Name":"original-resource","Value":"\"xAT+n25FE5hvOjj2fG4YdOwr1bl4IlAJBNg6PbhLT2E=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.css.c2jlpeoesf.map","AssetFile":"lib/bootstrap/dist/css/bootstrap-grid.css.map","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"203221"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"xAT+n25FE5hvOjj2fG4YdOwr1bl4IlAJBNg6PbhLT2E=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:34:31 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"c2jlpeoesf"},{"Name":"integrity","Value":"sha256-xAT+n25FE5hvOjj2fG4YdOwr1bl4IlAJBNg6PbhLT2E="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-grid.css.map"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.css.c2jlpeoesf.map.gz","AssetFile":"lib/bootstrap/dist/css/bootstrap-grid.css.map.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"32794"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"ALPf6qsZMu+Ui8l8jPJJF3MhTcq6uwrQhRWeWJL4ixU=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"c2jlpeoesf"},{"Name":"integrity","Value":"sha256-ALPf6qsZMu+Ui8l8jPJJF3MhTcq6uwrQhRWeWJL4ixU="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-grid.css.map.gz"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.css.gz","AssetFile":"lib/bootstrap/dist/css/bootstrap-grid.css.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"6745"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"jhvPrvWZn8BbeR49W+r+MLNcnTeFyaSXxry9n1ctwy4=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-jhvPrvWZn8BbeR49W+r+MLNcnTeFyaSXxry9n1ctwy4="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.css.map","AssetFile":"lib/bootstrap/dist/css/bootstrap-grid.css.map.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000030492453"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"32794"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"ALPf6qsZMu+Ui8l8jPJJF3MhTcq6uwrQhRWeWJL4ixU=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-xAT+n25FE5hvOjj2fG4YdOwr1bl4IlAJBNg6PbhLT2E="},{"Name":"original-resource","Value":"\"xAT+n25FE5hvOjj2fG4YdOwr1bl4IlAJBNg6PbhLT2E=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.css.map","AssetFile":"lib/bootstrap/dist/css/bootstrap-grid.css.map","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"203221"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"xAT+n25FE5hvOjj2fG4YdOwr1bl4IlAJBNg6PbhLT2E=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:34:31 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-xAT+n25FE5hvOjj2fG4YdOwr1bl4IlAJBNg6PbhLT2E="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.css.map.gz","AssetFile":"lib/bootstrap/dist/css/bootstrap-grid.css.map.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"32794"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"ALPf6qsZMu+Ui8l8jPJJF3MhTcq6uwrQhRWeWJL4ixU=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-ALPf6qsZMu+Ui8l8jPJJF3MhTcq6uwrQhRWeWJL4ixU="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.min.css","AssetFile":"lib/bootstrap/dist/css/bootstrap-grid.min.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000167504188"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"5969"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"y2vSlIdcL+ImKFhcBMT5ujdAP1cyOZlHZK434Aiu0KA=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-5nDHMGiyfZHl3UXePuhLDQR9ncPfBR1HJeZLXyJNV24="},{"Name":"original-resource","Value":"\"5nDHMGiyfZHl3UXePuhLDQR9ncPfBR1HJeZLXyJNV24=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.min.css","AssetFile":"lib/bootstrap/dist/css/bootstrap-grid.min.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"51795"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"5nDHMGiyfZHl3UXePuhLDQR9ncPfBR1HJeZLXyJNV24=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:34:31 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-5nDHMGiyfZHl3UXePuhLDQR9ncPfBR1HJeZLXyJNV24="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.min.css.aexeepp0ev.map","AssetFile":"lib/bootstrap/dist/css/bootstrap-grid.min.css.map.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000072343196"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"13822"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"UTpk2w6Qfw+RUZtUsUuWDVrQXTEdgzIWiLHb7gDcZZc=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"aexeepp0ev"},{"Name":"integrity","Value":"sha256-kgL+xwVmM8IOs15lnoHt9daR2LRMiBG/cYgUPcKQOY4="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-grid.min.css.map"},{"Name":"original-resource","Value":"\"kgL+xwVmM8IOs15lnoHt9daR2LRMiBG/cYgUPcKQOY4=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.min.css.aexeepp0ev.map","AssetFile":"lib/bootstrap/dist/css/bootstrap-grid.min.css.map","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"115986"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"kgL+xwVmM8IOs15lnoHt9daR2LRMiBG/cYgUPcKQOY4=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:34:31 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"aexeepp0ev"},{"Name":"integrity","Value":"sha256-kgL+xwVmM8IOs15lnoHt9daR2LRMiBG/cYgUPcKQOY4="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-grid.min.css.map"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.min.css.aexeepp0ev.map.gz","AssetFile":"lib/bootstrap/dist/css/bootstrap-grid.min.css.map.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"13822"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"UTpk2w6Qfw+RUZtUsUuWDVrQXTEdgzIWiLHb7gDcZZc=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"aexeepp0ev"},{"Name":"integrity","Value":"sha256-UTpk2w6Qfw+RUZtUsUuWDVrQXTEdgzIWiLHb7gDcZZc="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-grid.min.css.map.gz"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.min.css.gz","AssetFile":"lib/bootstrap/dist/css/bootstrap-grid.min.css.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"5969"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"y2vSlIdcL+ImKFhcBMT5ujdAP1cyOZlHZK434Aiu0KA=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-y2vSlIdcL+ImKFhcBMT5ujdAP1cyOZlHZK434Aiu0KA="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.min.css.map","AssetFile":"lib/bootstrap/dist/css/bootstrap-grid.min.css.map.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000072343196"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"13822"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"UTpk2w6Qfw+RUZtUsUuWDVrQXTEdgzIWiLHb7gDcZZc=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-kgL+xwVmM8IOs15lnoHt9daR2LRMiBG/cYgUPcKQOY4="},{"Name":"original-resource","Value":"\"kgL+xwVmM8IOs15lnoHt9daR2LRMiBG/cYgUPcKQOY4=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.min.css.map","AssetFile":"lib/bootstrap/dist/css/bootstrap-grid.min.css.map","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"115986"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"kgL+xwVmM8IOs15lnoHt9daR2LRMiBG/cYgUPcKQOY4=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:34:31 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-kgL+xwVmM8IOs15lnoHt9daR2LRMiBG/cYgUPcKQOY4="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.min.css.map.gz","AssetFile":"lib/bootstrap/dist/css/bootstrap-grid.min.css.map.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"13822"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"UTpk2w6Qfw+RUZtUsUuWDVrQXTEdgzIWiLHb7gDcZZc=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-UTpk2w6Qfw+RUZtUsUuWDVrQXTEdgzIWiLHb7gDcZZc="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.min.erw9l3u2r3.css","AssetFile":"lib/bootstrap/dist/css/bootstrap-grid.min.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000167504188"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"5969"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"y2vSlIdcL+ImKFhcBMT5ujdAP1cyOZlHZK434Aiu0KA=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"erw9l3u2r3"},{"Name":"integrity","Value":"sha256-5nDHMGiyfZHl3UXePuhLDQR9ncPfBR1HJeZLXyJNV24="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-grid.min.css"},{"Name":"original-resource","Value":"\"5nDHMGiyfZHl3UXePuhLDQR9ncPfBR1HJeZLXyJNV24=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.min.erw9l3u2r3.css","AssetFile":"lib/bootstrap/dist/css/bootstrap-grid.min.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"51795"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"5nDHMGiyfZHl3UXePuhLDQR9ncPfBR1HJeZLXyJNV24=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:34:31 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"erw9l3u2r3"},{"Name":"integrity","Value":"sha256-5nDHMGiyfZHl3UXePuhLDQR9ncPfBR1HJeZLXyJNV24="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-grid.min.css"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.min.erw9l3u2r3.css.gz","AssetFile":"lib/bootstrap/dist/css/bootstrap-grid.min.css.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"5969"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"y2vSlIdcL+ImKFhcBMT5ujdAP1cyOZlHZK434Aiu0KA=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"erw9l3u2r3"},{"Name":"integrity","Value":"sha256-y2vSlIdcL+ImKFhcBMT5ujdAP1cyOZlHZK434Aiu0KA="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-grid.min.css.gz"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.rtl.css","AssetFile":"lib/bootstrap/dist/css/bootstrap-grid.rtl.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000148148148"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"6749"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"P5V7Xl3ceCLw6wDeOyAezE6gOa9re3B7gTUN/H/cDsY=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-CZxoF8zjaLlyVkcvVCDlc8CeQR1w1RMrvgYx30cs8kM="},{"Name":"original-resource","Value":"\"CZxoF8zjaLlyVkcvVCDlc8CeQR1w1RMrvgYx30cs8kM=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.rtl.css","AssetFile":"lib/bootstrap/dist/css/bootstrap-grid.rtl.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"70403"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"CZxoF8zjaLlyVkcvVCDlc8CeQR1w1RMrvgYx30cs8kM=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:34:31 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-CZxoF8zjaLlyVkcvVCDlc8CeQR1w1RMrvgYx30cs8kM="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.rtl.css.ausgxo2sd3.map","AssetFile":"lib/bootstrap/dist/css/bootstrap-grid.rtl.css.map.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000030493383"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"32793"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"cWfRgogdfOCr54Ae/lxY515FP4TJyUwc4Ae6uejBPI0=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ausgxo2sd3"},{"Name":"integrity","Value":"sha256-/siQUA8yX830j+cL4amKHY3yBtn3n8z3Eg+VZ15f90k="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-grid.rtl.css.map"},{"Name":"original-resource","Value":"\"/siQUA8yX830j+cL4amKHY3yBtn3n8z3Eg+VZ15f90k=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.rtl.css.ausgxo2sd3.map","AssetFile":"lib/bootstrap/dist/css/bootstrap-grid.rtl.css.map","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"203225"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"/siQUA8yX830j+cL4amKHY3yBtn3n8z3Eg+VZ15f90k=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:34:31 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ausgxo2sd3"},{"Name":"integrity","Value":"sha256-/siQUA8yX830j+cL4amKHY3yBtn3n8z3Eg+VZ15f90k="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-grid.rtl.css.map"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.rtl.css.ausgxo2sd3.map.gz","AssetFile":"lib/bootstrap/dist/css/bootstrap-grid.rtl.css.map.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"32793"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"cWfRgogdfOCr54Ae/lxY515FP4TJyUwc4Ae6uejBPI0=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ausgxo2sd3"},{"Name":"integrity","Value":"sha256-cWfRgogdfOCr54Ae/lxY515FP4TJyUwc4Ae6uejBPI0="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-grid.rtl.css.map.gz"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.rtl.css.gz","AssetFile":"lib/bootstrap/dist/css/bootstrap-grid.rtl.css.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"6749"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"P5V7Xl3ceCLw6wDeOyAezE6gOa9re3B7gTUN/H/cDsY=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-P5V7Xl3ceCLw6wDeOyAezE6gOa9re3B7gTUN/H/cDsY="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.rtl.css.map","AssetFile":"lib/bootstrap/dist/css/bootstrap-grid.rtl.css.map.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000030493383"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"32793"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"cWfRgogdfOCr54Ae/lxY515FP4TJyUwc4Ae6uejBPI0=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-/siQUA8yX830j+cL4amKHY3yBtn3n8z3Eg+VZ15f90k="},{"Name":"original-resource","Value":"\"/siQUA8yX830j+cL4amKHY3yBtn3n8z3Eg+VZ15f90k=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.rtl.css.map","AssetFile":"lib/bootstrap/dist/css/bootstrap-grid.rtl.css.map","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"203225"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"/siQUA8yX830j+cL4amKHY3yBtn3n8z3Eg+VZ15f90k=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:34:31 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-/siQUA8yX830j+cL4amKHY3yBtn3n8z3Eg+VZ15f90k="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.rtl.css.map.gz","AssetFile":"lib/bootstrap/dist/css/bootstrap-grid.rtl.css.map.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"32793"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"cWfRgogdfOCr54Ae/lxY515FP4TJyUwc4Ae6uejBPI0=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-cWfRgogdfOCr54Ae/lxY515FP4TJyUwc4Ae6uejBPI0="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.rtl.d7shbmvgxk.css","AssetFile":"lib/bootstrap/dist/css/bootstrap-grid.rtl.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000148148148"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"6749"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"P5V7Xl3ceCLw6wDeOyAezE6gOa9re3B7gTUN/H/cDsY=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"d7shbmvgxk"},{"Name":"integrity","Value":"sha256-CZxoF8zjaLlyVkcvVCDlc8CeQR1w1RMrvgYx30cs8kM="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-grid.rtl.css"},{"Name":"original-resource","Value":"\"CZxoF8zjaLlyVkcvVCDlc8CeQR1w1RMrvgYx30cs8kM=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.rtl.d7shbmvgxk.css","AssetFile":"lib/bootstrap/dist/css/bootstrap-grid.rtl.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"70403"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"CZxoF8zjaLlyVkcvVCDlc8CeQR1w1RMrvgYx30cs8kM=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:34:31 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"d7shbmvgxk"},{"Name":"integrity","Value":"sha256-CZxoF8zjaLlyVkcvVCDlc8CeQR1w1RMrvgYx30cs8kM="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-grid.rtl.css"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.rtl.d7shbmvgxk.css.gz","AssetFile":"lib/bootstrap/dist/css/bootstrap-grid.rtl.css.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"6749"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"P5V7Xl3ceCLw6wDeOyAezE6gOa9re3B7gTUN/H/cDsY=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"d7shbmvgxk"},{"Name":"integrity","Value":"sha256-P5V7Xl3ceCLw6wDeOyAezE6gOa9re3B7gTUN/H/cDsY="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-grid.rtl.css.gz"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css","AssetFile":"lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000167448091"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"5971"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"ujhFfu7SIw4cL8FWI0ezmD29C7bGSesJvlEcySm5beY=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-vMxTcvkC4Ly7LiAT3G8yEy9EpTr7Fge4SczWp07/p3k="},{"Name":"original-resource","Value":"\"vMxTcvkC4Ly7LiAT3G8yEy9EpTr7Fge4SczWp07/p3k=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css","AssetFile":"lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"51870"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"vMxTcvkC4Ly7LiAT3G8yEy9EpTr7Fge4SczWp07/p3k=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:34:31 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-vMxTcvkC4Ly7LiAT3G8yEy9EpTr7Fge4SczWp07/p3k="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.cosvhxvwiu.map","AssetFile":"lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.map.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000072306580"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"13829"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"yZDV5sXfkOihH9inqXh6D0ZmlFp3/eRZrXuPmmaGXhA=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"cosvhxvwiu"},{"Name":"integrity","Value":"sha256-7GdOlw7U/wgyaeUtFmxPz5/MphdvVSPtVOOlTn9c33Q="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.map"},{"Name":"original-resource","Value":"\"7GdOlw7U/wgyaeUtFmxPz5/MphdvVSPtVOOlTn9c33Q=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.cosvhxvwiu.map","AssetFile":"lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.map","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"116063"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"7GdOlw7U/wgyaeUtFmxPz5/MphdvVSPtVOOlTn9c33Q=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:34:31 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"cosvhxvwiu"},{"Name":"integrity","Value":"sha256-7GdOlw7U/wgyaeUtFmxPz5/MphdvVSPtVOOlTn9c33Q="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.map"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.cosvhxvwiu.map.gz","AssetFile":"lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.map.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"13829"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"yZDV5sXfkOihH9inqXh6D0ZmlFp3/eRZrXuPmmaGXhA=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"cosvhxvwiu"},{"Name":"integrity","Value":"sha256-yZDV5sXfkOihH9inqXh6D0ZmlFp3/eRZrXuPmmaGXhA="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.map.gz"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.gz","AssetFile":"lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"5971"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"ujhFfu7SIw4cL8FWI0ezmD29C7bGSesJvlEcySm5beY=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-ujhFfu7SIw4cL8FWI0ezmD29C7bGSesJvlEcySm5beY="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.map","AssetFile":"lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.map.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000072306580"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"13829"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"yZDV5sXfkOihH9inqXh6D0ZmlFp3/eRZrXuPmmaGXhA=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-7GdOlw7U/wgyaeUtFmxPz5/MphdvVSPtVOOlTn9c33Q="},{"Name":"original-resource","Value":"\"7GdOlw7U/wgyaeUtFmxPz5/MphdvVSPtVOOlTn9c33Q=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.map","AssetFile":"lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.map","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"116063"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"7GdOlw7U/wgyaeUtFmxPz5/MphdvVSPtVOOlTn9c33Q=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:34:31 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-7GdOlw7U/wgyaeUtFmxPz5/MphdvVSPtVOOlTn9c33Q="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.map.gz","AssetFile":"lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.map.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"13829"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"yZDV5sXfkOihH9inqXh6D0ZmlFp3/eRZrXuPmmaGXhA=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-yZDV5sXfkOihH9inqXh6D0ZmlFp3/eRZrXuPmmaGXhA="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.rtl.min.k8d9w2qqmf.css","AssetFile":"lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000167448091"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"5971"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"ujhFfu7SIw4cL8FWI0ezmD29C7bGSesJvlEcySm5beY=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"k8d9w2qqmf"},{"Name":"integrity","Value":"sha256-vMxTcvkC4Ly7LiAT3G8yEy9EpTr7Fge4SczWp07/p3k="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css"},{"Name":"original-resource","Value":"\"vMxTcvkC4Ly7LiAT3G8yEy9EpTr7Fge4SczWp07/p3k=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.rtl.min.k8d9w2qqmf.css","AssetFile":"lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"51870"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"vMxTcvkC4Ly7LiAT3G8yEy9EpTr7Fge4SczWp07/p3k=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:34:31 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"k8d9w2qqmf"},{"Name":"integrity","Value":"sha256-vMxTcvkC4Ly7LiAT3G8yEy9EpTr7Fge4SczWp07/p3k="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.rtl.min.k8d9w2qqmf.css.gz","AssetFile":"lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"5971"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"ujhFfu7SIw4cL8FWI0ezmD29C7bGSesJvlEcySm5beY=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"k8d9w2qqmf"},{"Name":"integrity","Value":"sha256-ujhFfu7SIw4cL8FWI0ezmD29C7bGSesJvlEcySm5beY="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.gz"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.css","AssetFile":"lib/bootstrap/dist/css/bootstrap-reboot.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000295770482"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"3380"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"+EIaQ03ZHgfVopnrJFjz7ZgQSAO9GeMOK+bzccTIQyE=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-lo9YI82OF03vojdu+XOR3+DRrLIpMhpzZNmHbM5CDMA="},{"Name":"original-resource","Value":"\"lo9YI82OF03vojdu+XOR3+DRrLIpMhpzZNmHbM5CDMA=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.css","AssetFile":"lib/bootstrap/dist/css/bootstrap-reboot.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"12065"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"lo9YI82OF03vojdu+XOR3+DRrLIpMhpzZNmHbM5CDMA=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:34:31 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-lo9YI82OF03vojdu+XOR3+DRrLIpMhpzZNmHbM5CDMA="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.css.fvhpjtyr6v.map","AssetFile":"lib/bootstrap/dist/css/bootstrap-reboot.css.map.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000038725167"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"25822"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"uuPRBE+KJ7rhQC/ul/m33YS7RxoQPGY3ZcuTz6+ooTc=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"fvhpjtyr6v"},{"Name":"integrity","Value":"sha256-RXJ/QZiBfHXoPtXR2EgC+bFo2pe3GtbZO722RtiLGzQ="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-reboot.css.map"},{"Name":"original-resource","Value":"\"RXJ/QZiBfHXoPtXR2EgC+bFo2pe3GtbZO722RtiLGzQ=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.css.fvhpjtyr6v.map","AssetFile":"lib/bootstrap/dist/css/bootstrap-reboot.css.map","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"129371"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"RXJ/QZiBfHXoPtXR2EgC+bFo2pe3GtbZO722RtiLGzQ=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:34:31 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"fvhpjtyr6v"},{"Name":"integrity","Value":"sha256-RXJ/QZiBfHXoPtXR2EgC+bFo2pe3GtbZO722RtiLGzQ="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-reboot.css.map"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.css.fvhpjtyr6v.map.gz","AssetFile":"lib/bootstrap/dist/css/bootstrap-reboot.css.map.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"25822"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"uuPRBE+KJ7rhQC/ul/m33YS7RxoQPGY3ZcuTz6+ooTc=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"fvhpjtyr6v"},{"Name":"integrity","Value":"sha256-uuPRBE+KJ7rhQC/ul/m33YS7RxoQPGY3ZcuTz6+ooTc="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-reboot.css.map.gz"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.css.gz","AssetFile":"lib/bootstrap/dist/css/bootstrap-reboot.css.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"3380"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"+EIaQ03ZHgfVopnrJFjz7ZgQSAO9GeMOK+bzccTIQyE=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-+EIaQ03ZHgfVopnrJFjz7ZgQSAO9GeMOK+bzccTIQyE="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.css.map","AssetFile":"lib/bootstrap/dist/css/bootstrap-reboot.css.map.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000038725167"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"25822"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"uuPRBE+KJ7rhQC/ul/m33YS7RxoQPGY3ZcuTz6+ooTc=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-RXJ/QZiBfHXoPtXR2EgC+bFo2pe3GtbZO722RtiLGzQ="},{"Name":"original-resource","Value":"\"RXJ/QZiBfHXoPtXR2EgC+bFo2pe3GtbZO722RtiLGzQ=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.css.map","AssetFile":"lib/bootstrap/dist/css/bootstrap-reboot.css.map","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"129371"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"RXJ/QZiBfHXoPtXR2EgC+bFo2pe3GtbZO722RtiLGzQ=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:34:31 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-RXJ/QZiBfHXoPtXR2EgC+bFo2pe3GtbZO722RtiLGzQ="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.css.map.gz","AssetFile":"lib/bootstrap/dist/css/bootstrap-reboot.css.map.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"25822"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"uuPRBE+KJ7rhQC/ul/m33YS7RxoQPGY3ZcuTz6+ooTc=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-uuPRBE+KJ7rhQC/ul/m33YS7RxoQPGY3ZcuTz6+ooTc="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.min.b7pk76d08c.css","AssetFile":"lib/bootstrap/dist/css/bootstrap-reboot.min.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000311138768"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"3213"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"Z9B/f6Ax/2JeBbNo3F1oaFvmOzRvs3yS0nnykt272Wc=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"b7pk76d08c"},{"Name":"integrity","Value":"sha256-l8vt5oozv958eMd9TFsPAWgl9JJK9YKfbVSs8mchQ84="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-reboot.min.css"},{"Name":"original-resource","Value":"\"l8vt5oozv958eMd9TFsPAWgl9JJK9YKfbVSs8mchQ84=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.min.b7pk76d08c.css","AssetFile":"lib/bootstrap/dist/css/bootstrap-reboot.min.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"10126"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"l8vt5oozv958eMd9TFsPAWgl9JJK9YKfbVSs8mchQ84=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:34:31 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"b7pk76d08c"},{"Name":"integrity","Value":"sha256-l8vt5oozv958eMd9TFsPAWgl9JJK9YKfbVSs8mchQ84="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-reboot.min.css"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.min.b7pk76d08c.css.gz","AssetFile":"lib/bootstrap/dist/css/bootstrap-reboot.min.css.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"3213"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"Z9B/f6Ax/2JeBbNo3F1oaFvmOzRvs3yS0nnykt272Wc=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"b7pk76d08c"},{"Name":"integrity","Value":"sha256-Z9B/f6Ax/2JeBbNo3F1oaFvmOzRvs3yS0nnykt272Wc="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-reboot.min.css.gz"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.min.css","AssetFile":"lib/bootstrap/dist/css/bootstrap-reboot.min.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000311138768"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"3213"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"Z9B/f6Ax/2JeBbNo3F1oaFvmOzRvs3yS0nnykt272Wc=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-l8vt5oozv958eMd9TFsPAWgl9JJK9YKfbVSs8mchQ84="},{"Name":"original-resource","Value":"\"l8vt5oozv958eMd9TFsPAWgl9JJK9YKfbVSs8mchQ84=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.min.css","AssetFile":"lib/bootstrap/dist/css/bootstrap-reboot.min.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"10126"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"l8vt5oozv958eMd9TFsPAWgl9JJK9YKfbVSs8mchQ84=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:34:31 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-l8vt5oozv958eMd9TFsPAWgl9JJK9YKfbVSs8mchQ84="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.min.css.fsbi9cje9m.map","AssetFile":"lib/bootstrap/dist/css/bootstrap-reboot.min.css.map.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000079447049"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"12586"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"88yfwCB1JJrw5DzTwttuDUNRg1MC/QUUovOQTnyxGHA=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"fsbi9cje9m"},{"Name":"integrity","Value":"sha256-0eqVT62kqRLJh9oTqLeIH4UnQskqVjib8hl2fXxl4lg="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-reboot.min.css.map"},{"Name":"original-resource","Value":"\"0eqVT62kqRLJh9oTqLeIH4UnQskqVjib8hl2fXxl4lg=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.min.css.fsbi9cje9m.map","AssetFile":"lib/bootstrap/dist/css/bootstrap-reboot.min.css.map","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"51369"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"0eqVT62kqRLJh9oTqLeIH4UnQskqVjib8hl2fXxl4lg=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:34:31 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"fsbi9cje9m"},{"Name":"integrity","Value":"sha256-0eqVT62kqRLJh9oTqLeIH4UnQskqVjib8hl2fXxl4lg="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-reboot.min.css.map"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.min.css.fsbi9cje9m.map.gz","AssetFile":"lib/bootstrap/dist/css/bootstrap-reboot.min.css.map.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"12586"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"88yfwCB1JJrw5DzTwttuDUNRg1MC/QUUovOQTnyxGHA=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"fsbi9cje9m"},{"Name":"integrity","Value":"sha256-88yfwCB1JJrw5DzTwttuDUNRg1MC/QUUovOQTnyxGHA="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-reboot.min.css.map.gz"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.min.css.gz","AssetFile":"lib/bootstrap/dist/css/bootstrap-reboot.min.css.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"3213"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"Z9B/f6Ax/2JeBbNo3F1oaFvmOzRvs3yS0nnykt272Wc=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Z9B/f6Ax/2JeBbNo3F1oaFvmOzRvs3yS0nnykt272Wc="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.min.css.map","AssetFile":"lib/bootstrap/dist/css/bootstrap-reboot.min.css.map.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000079447049"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"12586"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"88yfwCB1JJrw5DzTwttuDUNRg1MC/QUUovOQTnyxGHA=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-0eqVT62kqRLJh9oTqLeIH4UnQskqVjib8hl2fXxl4lg="},{"Name":"original-resource","Value":"\"0eqVT62kqRLJh9oTqLeIH4UnQskqVjib8hl2fXxl4lg=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.min.css.map","AssetFile":"lib/bootstrap/dist/css/bootstrap-reboot.min.css.map","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"51369"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"0eqVT62kqRLJh9oTqLeIH4UnQskqVjib8hl2fXxl4lg=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:34:31 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-0eqVT62kqRLJh9oTqLeIH4UnQskqVjib8hl2fXxl4lg="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.min.css.map.gz","AssetFile":"lib/bootstrap/dist/css/bootstrap-reboot.min.css.map.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"12586"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"88yfwCB1JJrw5DzTwttuDUNRg1MC/QUUovOQTnyxGHA=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-88yfwCB1JJrw5DzTwttuDUNRg1MC/QUUovOQTnyxGHA="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.css","AssetFile":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000296912114"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"3367"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"bhwmNaLC/7dOUfZxpXsnreiNsp2lbllRXrZLXndYFgA=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-V8psnHoJS/MPlCXWwc/J3tGtp9c3gGFRmqsIQgpn+Gg="},{"Name":"original-resource","Value":"\"V8psnHoJS/MPlCXWwc/J3tGtp9c3gGFRmqsIQgpn+Gg=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.css","AssetFile":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"12058"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"V8psnHoJS/MPlCXWwc/J3tGtp9c3gGFRmqsIQgpn+Gg=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:34:31 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-V8psnHoJS/MPlCXWwc/J3tGtp9c3gGFRmqsIQgpn+Gg="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.ee0r1s7dh0.map","AssetFile":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.map.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000038708678"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"25833"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"sl2J4PyaPSvjqR/Hna2zAWkp1RoiFiSsNBf28UxmegA=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ee0r1s7dh0"},{"Name":"integrity","Value":"sha256-OoQVwh7Arp7bVoK2ZiTx2S//KrnPrSPzPZ93CqCMhe8="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.map"},{"Name":"original-resource","Value":"\"OoQVwh7Arp7bVoK2ZiTx2S//KrnPrSPzPZ93CqCMhe8=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.ee0r1s7dh0.map","AssetFile":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.map","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"129386"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"OoQVwh7Arp7bVoK2ZiTx2S//KrnPrSPzPZ93CqCMhe8=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:34:31 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ee0r1s7dh0"},{"Name":"integrity","Value":"sha256-OoQVwh7Arp7bVoK2ZiTx2S//KrnPrSPzPZ93CqCMhe8="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.map"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.ee0r1s7dh0.map.gz","AssetFile":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.map.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"25833"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"sl2J4PyaPSvjqR/Hna2zAWkp1RoiFiSsNBf28UxmegA=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ee0r1s7dh0"},{"Name":"integrity","Value":"sha256-sl2J4PyaPSvjqR/Hna2zAWkp1RoiFiSsNBf28UxmegA="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.map.gz"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.gz","AssetFile":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"3367"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"bhwmNaLC/7dOUfZxpXsnreiNsp2lbllRXrZLXndYFgA=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-bhwmNaLC/7dOUfZxpXsnreiNsp2lbllRXrZLXndYFgA="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.map","AssetFile":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.map.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000038708678"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"25833"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"sl2J4PyaPSvjqR/Hna2zAWkp1RoiFiSsNBf28UxmegA=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-OoQVwh7Arp7bVoK2ZiTx2S//KrnPrSPzPZ93CqCMhe8="},{"Name":"original-resource","Value":"\"OoQVwh7Arp7bVoK2ZiTx2S//KrnPrSPzPZ93CqCMhe8=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.map","AssetFile":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.map","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"129386"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"OoQVwh7Arp7bVoK2ZiTx2S//KrnPrSPzPZ93CqCMhe8=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:34:31 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-OoQVwh7Arp7bVoK2ZiTx2S//KrnPrSPzPZ93CqCMhe8="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.map.gz","AssetFile":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.map.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"25833"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"sl2J4PyaPSvjqR/Hna2zAWkp1RoiFiSsNBf28UxmegA=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-sl2J4PyaPSvjqR/Hna2zAWkp1RoiFiSsNBf28UxmegA="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css","AssetFile":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000307976594"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"3246"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"qNJnRAEMymFdtmi8gvc2VbVtDDk/UjeSnp+VQ10+cl0=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-/8jh8hcEMFKyS6goWqnNu7t3EzZPCGdQZgO6sCkI8tI="},{"Name":"original-resource","Value":"\"/8jh8hcEMFKyS6goWqnNu7t3EzZPCGdQZgO6sCkI8tI=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css","AssetFile":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"10198"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"/8jh8hcEMFKyS6goWqnNu7t3EzZPCGdQZgO6sCkI8tI=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:34:31 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-/8jh8hcEMFKyS6goWqnNu7t3EzZPCGdQZgO6sCkI8tI="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.gz","AssetFile":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"3246"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"qNJnRAEMymFdtmi8gvc2VbVtDDk/UjeSnp+VQ10+cl0=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-qNJnRAEMymFdtmi8gvc2VbVtDDk/UjeSnp+VQ10+cl0="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.jd9uben2k1.map","AssetFile":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.map.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000066242713"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"15095"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"M4FJKHpyw4IJV5nzbfV0Vwvv60A8wkjnquz6IK029pA=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"jd9uben2k1"},{"Name":"integrity","Value":"sha256-910zw+rMdcg0Ls48ATp65vEn8rd5HvPxOKm2x3/CBII="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.map"},{"Name":"original-resource","Value":"\"910zw+rMdcg0Ls48ATp65vEn8rd5HvPxOKm2x3/CBII=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.jd9uben2k1.map","AssetFile":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.map","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"63943"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"910zw+rMdcg0Ls48ATp65vEn8rd5HvPxOKm2x3/CBII=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:34:31 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"jd9uben2k1"},{"Name":"integrity","Value":"sha256-910zw+rMdcg0Ls48ATp65vEn8rd5HvPxOKm2x3/CBII="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.map"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.jd9uben2k1.map.gz","AssetFile":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.map.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"15095"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"M4FJKHpyw4IJV5nzbfV0Vwvv60A8wkjnquz6IK029pA=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"jd9uben2k1"},{"Name":"integrity","Value":"sha256-M4FJKHpyw4IJV5nzbfV0Vwvv60A8wkjnquz6IK029pA="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.map.gz"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.map","AssetFile":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.map.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000066242713"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"15095"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"M4FJKHpyw4IJV5nzbfV0Vwvv60A8wkjnquz6IK029pA=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-910zw+rMdcg0Ls48ATp65vEn8rd5HvPxOKm2x3/CBII="},{"Name":"original-resource","Value":"\"910zw+rMdcg0Ls48ATp65vEn8rd5HvPxOKm2x3/CBII=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.map","AssetFile":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.map","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"63943"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"910zw+rMdcg0Ls48ATp65vEn8rd5HvPxOKm2x3/CBII=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:34:31 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-910zw+rMdcg0Ls48ATp65vEn8rd5HvPxOKm2x3/CBII="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.map.gz","AssetFile":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.map.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"15095"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"M4FJKHpyw4IJV5nzbfV0Vwvv60A8wkjnquz6IK029pA=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-M4FJKHpyw4IJV5nzbfV0Vwvv60A8wkjnquz6IK029pA="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.dxx9fxp4il.css","AssetFile":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000307976594"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"3246"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"qNJnRAEMymFdtmi8gvc2VbVtDDk/UjeSnp+VQ10+cl0=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"dxx9fxp4il"},{"Name":"integrity","Value":"sha256-/8jh8hcEMFKyS6goWqnNu7t3EzZPCGdQZgO6sCkI8tI="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css"},{"Name":"original-resource","Value":"\"/8jh8hcEMFKyS6goWqnNu7t3EzZPCGdQZgO6sCkI8tI=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.dxx9fxp4il.css","AssetFile":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"10198"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"/8jh8hcEMFKyS6goWqnNu7t3EzZPCGdQZgO6sCkI8tI=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:34:31 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"dxx9fxp4il"},{"Name":"integrity","Value":"sha256-/8jh8hcEMFKyS6goWqnNu7t3EzZPCGdQZgO6sCkI8tI="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.dxx9fxp4il.css.gz","AssetFile":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"3246"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"qNJnRAEMymFdtmi8gvc2VbVtDDk/UjeSnp+VQ10+cl0=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"dxx9fxp4il"},{"Name":"integrity","Value":"sha256-qNJnRAEMymFdtmi8gvc2VbVtDDk/UjeSnp+VQ10+cl0="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.gz"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.rzd6atqjts.css","AssetFile":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000296912114"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"3367"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"bhwmNaLC/7dOUfZxpXsnreiNsp2lbllRXrZLXndYFgA=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"rzd6atqjts"},{"Name":"integrity","Value":"sha256-V8psnHoJS/MPlCXWwc/J3tGtp9c3gGFRmqsIQgpn+Gg="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.css"},{"Name":"original-resource","Value":"\"V8psnHoJS/MPlCXWwc/J3tGtp9c3gGFRmqsIQgpn+Gg=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.rzd6atqjts.css","AssetFile":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"12058"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"V8psnHoJS/MPlCXWwc/J3tGtp9c3gGFRmqsIQgpn+Gg=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:34:31 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"rzd6atqjts"},{"Name":"integrity","Value":"sha256-V8psnHoJS/MPlCXWwc/J3tGtp9c3gGFRmqsIQgpn+Gg="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.css"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.rzd6atqjts.css.gz","AssetFile":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"3367"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"bhwmNaLC/7dOUfZxpXsnreiNsp2lbllRXrZLXndYFgA=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"rzd6atqjts"},{"Name":"integrity","Value":"sha256-bhwmNaLC/7dOUfZxpXsnreiNsp2lbllRXrZLXndYFgA="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.gz"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.ub07r2b239.css","AssetFile":"lib/bootstrap/dist/css/bootstrap-reboot.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000295770482"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"3380"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"+EIaQ03ZHgfVopnrJFjz7ZgQSAO9GeMOK+bzccTIQyE=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ub07r2b239"},{"Name":"integrity","Value":"sha256-lo9YI82OF03vojdu+XOR3+DRrLIpMhpzZNmHbM5CDMA="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-reboot.css"},{"Name":"original-resource","Value":"\"lo9YI82OF03vojdu+XOR3+DRrLIpMhpzZNmHbM5CDMA=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.ub07r2b239.css","AssetFile":"lib/bootstrap/dist/css/bootstrap-reboot.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"12065"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"lo9YI82OF03vojdu+XOR3+DRrLIpMhpzZNmHbM5CDMA=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:34:31 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ub07r2b239"},{"Name":"integrity","Value":"sha256-lo9YI82OF03vojdu+XOR3+DRrLIpMhpzZNmHbM5CDMA="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-reboot.css"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.ub07r2b239.css.gz","AssetFile":"lib/bootstrap/dist/css/bootstrap-reboot.css.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"3380"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"+EIaQ03ZHgfVopnrJFjz7ZgQSAO9GeMOK+bzccTIQyE=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ub07r2b239"},{"Name":"integrity","Value":"sha256-+EIaQ03ZHgfVopnrJFjz7ZgQSAO9GeMOK+bzccTIQyE="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-reboot.css.gz"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.css","AssetFile":"lib/bootstrap/dist/css/bootstrap-utilities.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000083388926"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"11991"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"8+5oxr92QYcYeV3zAk8RS4XmZo6Y5i3ZmbiJXj9KVQo=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-2BubgNUPlQSF/0wLFcRXQ/Yjzk9vsUbDAeK2QM+h+yo="},{"Name":"original-resource","Value":"\"2BubgNUPlQSF/0wLFcRXQ/Yjzk9vsUbDAeK2QM+h+yo=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.css","AssetFile":"lib/bootstrap/dist/css/bootstrap-utilities.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"107823"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"2BubgNUPlQSF/0wLFcRXQ/Yjzk9vsUbDAeK2QM+h+yo=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:34:31 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-2BubgNUPlQSF/0wLFcRXQ/Yjzk9vsUbDAeK2QM+h+yo="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.css.gz","AssetFile":"lib/bootstrap/dist/css/bootstrap-utilities.css.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"11991"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"8+5oxr92QYcYeV3zAk8RS4XmZo6Y5i3ZmbiJXj9KVQo=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-8+5oxr92QYcYeV3zAk8RS4XmZo6Y5i3ZmbiJXj9KVQo="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.css.map","AssetFile":"lib/bootstrap/dist/css/bootstrap-utilities.css.map.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000022662890"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"44124"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"G+vjiEeP6kST5cIl0dMgkpqYVHtGzW2FoEEhPm8uXFQ=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Nfjrc4Ur9Fv2oBEswQWIyBnNDP99q+LhL+z9553O0cY="},{"Name":"original-resource","Value":"\"Nfjrc4Ur9Fv2oBEswQWIyBnNDP99q+LhL+z9553O0cY=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.css.map","AssetFile":"lib/bootstrap/dist/css/bootstrap-utilities.css.map","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"267535"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"Nfjrc4Ur9Fv2oBEswQWIyBnNDP99q+LhL+z9553O0cY=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:34:31 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Nfjrc4Ur9Fv2oBEswQWIyBnNDP99q+LhL+z9553O0cY="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.css.map.gz","AssetFile":"lib/bootstrap/dist/css/bootstrap-utilities.css.map.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"44124"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"G+vjiEeP6kST5cIl0dMgkpqYVHtGzW2FoEEhPm8uXFQ=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-G+vjiEeP6kST5cIl0dMgkpqYVHtGzW2FoEEhPm8uXFQ="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.css.r4e9w2rdcm.map","AssetFile":"lib/bootstrap/dist/css/bootstrap-utilities.css.map.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000022662890"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"44124"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"G+vjiEeP6kST5cIl0dMgkpqYVHtGzW2FoEEhPm8uXFQ=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"r4e9w2rdcm"},{"Name":"integrity","Value":"sha256-Nfjrc4Ur9Fv2oBEswQWIyBnNDP99q+LhL+z9553O0cY="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-utilities.css.map"},{"Name":"original-resource","Value":"\"Nfjrc4Ur9Fv2oBEswQWIyBnNDP99q+LhL+z9553O0cY=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.css.r4e9w2rdcm.map","AssetFile":"lib/bootstrap/dist/css/bootstrap-utilities.css.map","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"267535"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"Nfjrc4Ur9Fv2oBEswQWIyBnNDP99q+LhL+z9553O0cY=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:34:31 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"r4e9w2rdcm"},{"Name":"integrity","Value":"sha256-Nfjrc4Ur9Fv2oBEswQWIyBnNDP99q+LhL+z9553O0cY="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-utilities.css.map"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.css.r4e9w2rdcm.map.gz","AssetFile":"lib/bootstrap/dist/css/bootstrap-utilities.css.map.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"44124"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"G+vjiEeP6kST5cIl0dMgkpqYVHtGzW2FoEEhPm8uXFQ=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"r4e9w2rdcm"},{"Name":"integrity","Value":"sha256-G+vjiEeP6kST5cIl0dMgkpqYVHtGzW2FoEEhPm8uXFQ="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-utilities.css.map.gz"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.khv3u5hwcm.css","AssetFile":"lib/bootstrap/dist/css/bootstrap-utilities.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000083388926"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"11991"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"8+5oxr92QYcYeV3zAk8RS4XmZo6Y5i3ZmbiJXj9KVQo=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"khv3u5hwcm"},{"Name":"integrity","Value":"sha256-2BubgNUPlQSF/0wLFcRXQ/Yjzk9vsUbDAeK2QM+h+yo="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-utilities.css"},{"Name":"original-resource","Value":"\"2BubgNUPlQSF/0wLFcRXQ/Yjzk9vsUbDAeK2QM+h+yo=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.khv3u5hwcm.css","AssetFile":"lib/bootstrap/dist/css/bootstrap-utilities.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"107823"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"2BubgNUPlQSF/0wLFcRXQ/Yjzk9vsUbDAeK2QM+h+yo=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:34:31 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"khv3u5hwcm"},{"Name":"integrity","Value":"sha256-2BubgNUPlQSF/0wLFcRXQ/Yjzk9vsUbDAeK2QM+h+yo="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-utilities.css"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.khv3u5hwcm.css.gz","AssetFile":"lib/bootstrap/dist/css/bootstrap-utilities.css.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"11991"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"8+5oxr92QYcYeV3zAk8RS4XmZo6Y5i3ZmbiJXj9KVQo=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"khv3u5hwcm"},{"Name":"integrity","Value":"sha256-8+5oxr92QYcYeV3zAk8RS4XmZo6Y5i3ZmbiJXj9KVQo="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-utilities.css.gz"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.min.css","AssetFile":"lib/bootstrap/dist/css/bootstrap-utilities.min.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000090383225"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"11063"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"xp5LPZ0vlqmxQrG+KjPm7ijhhJ+gD7VeH35lOUwBTWM=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-KyE9xbKO9CuYx0HXpIKgsWIvXkAfITtiQ172j26wmRs="},{"Name":"original-resource","Value":"\"KyE9xbKO9CuYx0HXpIKgsWIvXkAfITtiQ172j26wmRs=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.min.css","AssetFile":"lib/bootstrap/dist/css/bootstrap-utilities.min.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"85352"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"KyE9xbKO9CuYx0HXpIKgsWIvXkAfITtiQ172j26wmRs=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:34:31 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-KyE9xbKO9CuYx0HXpIKgsWIvXkAfITtiQ172j26wmRs="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.min.css.c2oey78nd0.map","AssetFile":"lib/bootstrap/dist/css/bootstrap-utilities.min.css.map.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000041062703"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"24352"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"TQK1gkY5TwZe0PcEU9oPCPHWKcNR7OXqgO0AeBYCb3U=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"c2oey78nd0"},{"Name":"integrity","Value":"sha256-rHDmip4JZzuaGOcSQ1QSQrIbG0Eb3Zja9whqSF1zYIU="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-utilities.min.css.map"},{"Name":"original-resource","Value":"\"rHDmip4JZzuaGOcSQ1QSQrIbG0Eb3Zja9whqSF1zYIU=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.min.css.c2oey78nd0.map","AssetFile":"lib/bootstrap/dist/css/bootstrap-utilities.min.css.map","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"180381"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"rHDmip4JZzuaGOcSQ1QSQrIbG0Eb3Zja9whqSF1zYIU=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:34:31 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"c2oey78nd0"},{"Name":"integrity","Value":"sha256-rHDmip4JZzuaGOcSQ1QSQrIbG0Eb3Zja9whqSF1zYIU="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-utilities.min.css.map"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.min.css.c2oey78nd0.map.gz","AssetFile":"lib/bootstrap/dist/css/bootstrap-utilities.min.css.map.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"24352"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"TQK1gkY5TwZe0PcEU9oPCPHWKcNR7OXqgO0AeBYCb3U=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"c2oey78nd0"},{"Name":"integrity","Value":"sha256-TQK1gkY5TwZe0PcEU9oPCPHWKcNR7OXqgO0AeBYCb3U="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-utilities.min.css.map.gz"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.min.css.gz","AssetFile":"lib/bootstrap/dist/css/bootstrap-utilities.min.css.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"11063"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"xp5LPZ0vlqmxQrG+KjPm7ijhhJ+gD7VeH35lOUwBTWM=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-xp5LPZ0vlqmxQrG+KjPm7ijhhJ+gD7VeH35lOUwBTWM="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.min.css.map","AssetFile":"lib/bootstrap/dist/css/bootstrap-utilities.min.css.map.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000041062703"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"24352"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"TQK1gkY5TwZe0PcEU9oPCPHWKcNR7OXqgO0AeBYCb3U=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-rHDmip4JZzuaGOcSQ1QSQrIbG0Eb3Zja9whqSF1zYIU="},{"Name":"original-resource","Value":"\"rHDmip4JZzuaGOcSQ1QSQrIbG0Eb3Zja9whqSF1zYIU=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.min.css.map","AssetFile":"lib/bootstrap/dist/css/bootstrap-utilities.min.css.map","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"180381"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"rHDmip4JZzuaGOcSQ1QSQrIbG0Eb3Zja9whqSF1zYIU=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:34:31 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-rHDmip4JZzuaGOcSQ1QSQrIbG0Eb3Zja9whqSF1zYIU="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.min.css.map.gz","AssetFile":"lib/bootstrap/dist/css/bootstrap-utilities.min.css.map.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"24352"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"TQK1gkY5TwZe0PcEU9oPCPHWKcNR7OXqgO0AeBYCb3U=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-TQK1gkY5TwZe0PcEU9oPCPHWKcNR7OXqgO0AeBYCb3U="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.min.lcd1t2u6c8.css","AssetFile":"lib/bootstrap/dist/css/bootstrap-utilities.min.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000090383225"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"11063"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"xp5LPZ0vlqmxQrG+KjPm7ijhhJ+gD7VeH35lOUwBTWM=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"lcd1t2u6c8"},{"Name":"integrity","Value":"sha256-KyE9xbKO9CuYx0HXpIKgsWIvXkAfITtiQ172j26wmRs="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-utilities.min.css"},{"Name":"original-resource","Value":"\"KyE9xbKO9CuYx0HXpIKgsWIvXkAfITtiQ172j26wmRs=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.min.lcd1t2u6c8.css","AssetFile":"lib/bootstrap/dist/css/bootstrap-utilities.min.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"85352"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"KyE9xbKO9CuYx0HXpIKgsWIvXkAfITtiQ172j26wmRs=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:34:31 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"lcd1t2u6c8"},{"Name":"integrity","Value":"sha256-KyE9xbKO9CuYx0HXpIKgsWIvXkAfITtiQ172j26wmRs="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-utilities.min.css"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.min.lcd1t2u6c8.css.gz","AssetFile":"lib/bootstrap/dist/css/bootstrap-utilities.min.css.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"11063"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"xp5LPZ0vlqmxQrG+KjPm7ijhhJ+gD7VeH35lOUwBTWM=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"lcd1t2u6c8"},{"Name":"integrity","Value":"sha256-xp5LPZ0vlqmxQrG+KjPm7ijhhJ+gD7VeH35lOUwBTWM="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-utilities.min.css.gz"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.css","AssetFile":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000083794201"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"11933"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"QAnDcxiLhrclwEVeKtd/GREdZNbXO2rZP5agorcS5EM=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-H6wkBbSwjua2veJoThJo4uy161jp+DOiZTloUlcZ6qQ="},{"Name":"original-resource","Value":"\"H6wkBbSwjua2veJoThJo4uy161jp+DOiZTloUlcZ6qQ=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.css","AssetFile":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"107691"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"H6wkBbSwjua2veJoThJo4uy161jp+DOiZTloUlcZ6qQ=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:34:31 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-H6wkBbSwjua2veJoThJo4uy161jp+DOiZTloUlcZ6qQ="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.gz","AssetFile":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"11933"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"QAnDcxiLhrclwEVeKtd/GREdZNbXO2rZP5agorcS5EM=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-QAnDcxiLhrclwEVeKtd/GREdZNbXO2rZP5agorcS5EM="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.j5mq2jizvt.map","AssetFile":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.map.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000022676765"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"44097"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"e4SKSeUBYAMQYk9aT6NqaEr3vUfkTqZB8L0KIC7EPak=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"j5mq2jizvt"},{"Name":"integrity","Value":"sha256-p0BVq5Ve/dohBIdfbrZsoQNu02JSsKh1g0wbyiQiUaU="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.map"},{"Name":"original-resource","Value":"\"p0BVq5Ve/dohBIdfbrZsoQNu02JSsKh1g0wbyiQiUaU=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.j5mq2jizvt.map","AssetFile":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.map","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"267476"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"p0BVq5Ve/dohBIdfbrZsoQNu02JSsKh1g0wbyiQiUaU=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:34:31 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"j5mq2jizvt"},{"Name":"integrity","Value":"sha256-p0BVq5Ve/dohBIdfbrZsoQNu02JSsKh1g0wbyiQiUaU="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.map"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.j5mq2jizvt.map.gz","AssetFile":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.map.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"44097"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"e4SKSeUBYAMQYk9aT6NqaEr3vUfkTqZB8L0KIC7EPak=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"j5mq2jizvt"},{"Name":"integrity","Value":"sha256-e4SKSeUBYAMQYk9aT6NqaEr3vUfkTqZB8L0KIC7EPak="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.map.gz"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.map","AssetFile":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.map.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000022676765"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"44097"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"e4SKSeUBYAMQYk9aT6NqaEr3vUfkTqZB8L0KIC7EPak=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-p0BVq5Ve/dohBIdfbrZsoQNu02JSsKh1g0wbyiQiUaU="},{"Name":"original-resource","Value":"\"p0BVq5Ve/dohBIdfbrZsoQNu02JSsKh1g0wbyiQiUaU=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.map","AssetFile":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.map","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"267476"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"p0BVq5Ve/dohBIdfbrZsoQNu02JSsKh1g0wbyiQiUaU=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:34:31 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-p0BVq5Ve/dohBIdfbrZsoQNu02JSsKh1g0wbyiQiUaU="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.map.gz","AssetFile":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.map.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"44097"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"e4SKSeUBYAMQYk9aT6NqaEr3vUfkTqZB8L0KIC7EPak=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-e4SKSeUBYAMQYk9aT6NqaEr3vUfkTqZB8L0KIC7EPak="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.06098lyss8.css","AssetFile":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000090522314"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"11046"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"hXLxKxNQS6hkMWOc1Po5uxTK8ovzNg0xvRC9wMKOZiM=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"06098lyss8"},{"Name":"integrity","Value":"sha256-GAUum6FjwQ8HrXGaoFRnHTqQQLpljXGavT7mBX8E9qU="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css"},{"Name":"original-resource","Value":"\"GAUum6FjwQ8HrXGaoFRnHTqQQLpljXGavT7mBX8E9qU=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.06098lyss8.css","AssetFile":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"85281"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"GAUum6FjwQ8HrXGaoFRnHTqQQLpljXGavT7mBX8E9qU=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:34:31 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"06098lyss8"},{"Name":"integrity","Value":"sha256-GAUum6FjwQ8HrXGaoFRnHTqQQLpljXGavT7mBX8E9qU="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.06098lyss8.css.gz","AssetFile":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"11046"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"hXLxKxNQS6hkMWOc1Po5uxTK8ovzNg0xvRC9wMKOZiM=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"06098lyss8"},{"Name":"integrity","Value":"sha256-hXLxKxNQS6hkMWOc1Po5uxTK8ovzNg0xvRC9wMKOZiM="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.gz"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css","AssetFile":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000090522314"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"11046"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"hXLxKxNQS6hkMWOc1Po5uxTK8ovzNg0xvRC9wMKOZiM=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-GAUum6FjwQ8HrXGaoFRnHTqQQLpljXGavT7mBX8E9qU="},{"Name":"original-resource","Value":"\"GAUum6FjwQ8HrXGaoFRnHTqQQLpljXGavT7mBX8E9qU=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css","AssetFile":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"85281"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"GAUum6FjwQ8HrXGaoFRnHTqQQLpljXGavT7mBX8E9qU=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:34:31 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-GAUum6FjwQ8HrXGaoFRnHTqQQLpljXGavT7mBX8E9qU="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.gz","AssetFile":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"11046"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"hXLxKxNQS6hkMWOc1Po5uxTK8ovzNg0xvRC9wMKOZiM=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-hXLxKxNQS6hkMWOc1Po5uxTK8ovzNg0xvRC9wMKOZiM="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.map","AssetFile":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.map.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000041137027"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"24308"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"cHE9/Oryzx3rvDz6rg6kwVAGdOFlXOCmBgU/SG5fJjA=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-o8XK32mcY/FfcOQ1D2HJvVuZ0YTXSURZDLXCK0fnQeA="},{"Name":"original-resource","Value":"\"o8XK32mcY/FfcOQ1D2HJvVuZ0YTXSURZDLXCK0fnQeA=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.map","AssetFile":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.map","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"180217"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"o8XK32mcY/FfcOQ1D2HJvVuZ0YTXSURZDLXCK0fnQeA=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:34:31 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-o8XK32mcY/FfcOQ1D2HJvVuZ0YTXSURZDLXCK0fnQeA="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.map.gz","AssetFile":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.map.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"24308"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"cHE9/Oryzx3rvDz6rg6kwVAGdOFlXOCmBgU/SG5fJjA=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-cHE9/Oryzx3rvDz6rg6kwVAGdOFlXOCmBgU/SG5fJjA="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.nvvlpmu67g.map","AssetFile":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.map.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000041137027"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"24308"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"cHE9/Oryzx3rvDz6rg6kwVAGdOFlXOCmBgU/SG5fJjA=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"nvvlpmu67g"},{"Name":"integrity","Value":"sha256-o8XK32mcY/FfcOQ1D2HJvVuZ0YTXSURZDLXCK0fnQeA="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.map"},{"Name":"original-resource","Value":"\"o8XK32mcY/FfcOQ1D2HJvVuZ0YTXSURZDLXCK0fnQeA=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.nvvlpmu67g.map","AssetFile":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.map","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"180217"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"o8XK32mcY/FfcOQ1D2HJvVuZ0YTXSURZDLXCK0fnQeA=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:34:31 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"nvvlpmu67g"},{"Name":"integrity","Value":"sha256-o8XK32mcY/FfcOQ1D2HJvVuZ0YTXSURZDLXCK0fnQeA="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.map"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.nvvlpmu67g.map.gz","AssetFile":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.map.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"24308"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"cHE9/Oryzx3rvDz6rg6kwVAGdOFlXOCmBgU/SG5fJjA=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"nvvlpmu67g"},{"Name":"integrity","Value":"sha256-cHE9/Oryzx3rvDz6rg6kwVAGdOFlXOCmBgU/SG5fJjA="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.map.gz"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.tdbxkamptv.css","AssetFile":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000083794201"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"11933"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"QAnDcxiLhrclwEVeKtd/GREdZNbXO2rZP5agorcS5EM=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"tdbxkamptv"},{"Name":"integrity","Value":"sha256-H6wkBbSwjua2veJoThJo4uy161jp+DOiZTloUlcZ6qQ="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.css"},{"Name":"original-resource","Value":"\"H6wkBbSwjua2veJoThJo4uy161jp+DOiZTloUlcZ6qQ=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.tdbxkamptv.css","AssetFile":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"107691"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"H6wkBbSwjua2veJoThJo4uy161jp+DOiZTloUlcZ6qQ=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:34:31 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"tdbxkamptv"},{"Name":"integrity","Value":"sha256-H6wkBbSwjua2veJoThJo4uy161jp+DOiZTloUlcZ6qQ="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.css"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.tdbxkamptv.css.gz","AssetFile":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"11933"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"QAnDcxiLhrclwEVeKtd/GREdZNbXO2rZP5agorcS5EM=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"tdbxkamptv"},{"Name":"integrity","Value":"sha256-QAnDcxiLhrclwEVeKtd/GREdZNbXO2rZP5agorcS5EM="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.gz"}]},{"Route":"lib/bootstrap/dist/css/bootstrap.css","AssetFile":"lib/bootstrap/dist/css/bootstrap.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000030067050"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"33258"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"pt+WNxTLLUqq6vRWwSTT2gtyBZCFg8ZA7nmeS+5+Z/s=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-GKEF18s44B5e0MolXAkpkqLiEbOVlKf6VyYr/G/E6pw="},{"Name":"original-resource","Value":"\"GKEF18s44B5e0MolXAkpkqLiEbOVlKf6VyYr/G/E6pw=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap.css","AssetFile":"lib/bootstrap/dist/css/bootstrap.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"281046"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"GKEF18s44B5e0MolXAkpkqLiEbOVlKf6VyYr/G/E6pw=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:34:31 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-GKEF18s44B5e0MolXAkpkqLiEbOVlKf6VyYr/G/E6pw="}]},{"Route":"lib/bootstrap/dist/css/bootstrap.css.gz","AssetFile":"lib/bootstrap/dist/css/bootstrap.css.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"33258"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"pt+WNxTLLUqq6vRWwSTT2gtyBZCFg8ZA7nmeS+5+Z/s=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-pt+WNxTLLUqq6vRWwSTT2gtyBZCFg8ZA7nmeS+5+Z/s="}]},{"Route":"lib/bootstrap/dist/css/bootstrap.css.map","AssetFile":"lib/bootstrap/dist/css/bootstrap.css.map.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000008694367"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"115016"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"8MRqubXMeZHymG3Y+Uqns/oONNVcvUoxMPBYRNZmiNs=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-KzNVR3p7UZGba94dnCtlc6jXjK5urSPiZ/eNnKTmDkw="},{"Name":"original-resource","Value":"\"KzNVR3p7UZGba94dnCtlc6jXjK5urSPiZ/eNnKTmDkw=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap.css.map","AssetFile":"lib/bootstrap/dist/css/bootstrap.css.map","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"679755"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"KzNVR3p7UZGba94dnCtlc6jXjK5urSPiZ/eNnKTmDkw=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:34:31 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-KzNVR3p7UZGba94dnCtlc6jXjK5urSPiZ/eNnKTmDkw="}]},{"Route":"lib/bootstrap/dist/css/bootstrap.css.map.gz","AssetFile":"lib/bootstrap/dist/css/bootstrap.css.map.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"115016"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"8MRqubXMeZHymG3Y+Uqns/oONNVcvUoxMPBYRNZmiNs=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-8MRqubXMeZHymG3Y+Uqns/oONNVcvUoxMPBYRNZmiNs="}]},{"Route":"lib/bootstrap/dist/css/bootstrap.css.pj5nd1wqec.map","AssetFile":"lib/bootstrap/dist/css/bootstrap.css.map.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000008694367"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"115016"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"8MRqubXMeZHymG3Y+Uqns/oONNVcvUoxMPBYRNZmiNs=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"pj5nd1wqec"},{"Name":"integrity","Value":"sha256-KzNVR3p7UZGba94dnCtlc6jXjK5urSPiZ/eNnKTmDkw="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap.css.map"},{"Name":"original-resource","Value":"\"KzNVR3p7UZGba94dnCtlc6jXjK5urSPiZ/eNnKTmDkw=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap.css.pj5nd1wqec.map","AssetFile":"lib/bootstrap/dist/css/bootstrap.css.map","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"679755"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"KzNVR3p7UZGba94dnCtlc6jXjK5urSPiZ/eNnKTmDkw=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:34:31 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"pj5nd1wqec"},{"Name":"integrity","Value":"sha256-KzNVR3p7UZGba94dnCtlc6jXjK5urSPiZ/eNnKTmDkw="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap.css.map"}]},{"Route":"lib/bootstrap/dist/css/bootstrap.css.pj5nd1wqec.map.gz","AssetFile":"lib/bootstrap/dist/css/bootstrap.css.map.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"115016"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"8MRqubXMeZHymG3Y+Uqns/oONNVcvUoxMPBYRNZmiNs=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"pj5nd1wqec"},{"Name":"integrity","Value":"sha256-8MRqubXMeZHymG3Y+Uqns/oONNVcvUoxMPBYRNZmiNs="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap.css.map.gz"}]},{"Route":"lib/bootstrap/dist/css/bootstrap.min.46ein0sx1k.css","AssetFile":"lib/bootstrap/dist/css/bootstrap.min.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000032288270"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"30970"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"ct6gh3bWPabPIUEmUcCXl7mxgr/V6roHfypeQaXerHU=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"46ein0sx1k"},{"Name":"integrity","Value":"sha256-PI8n5gCcz9cQqQXm3PEtDuPG8qx9oFsFctPg0S5zb8g="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap.min.css"},{"Name":"original-resource","Value":"\"PI8n5gCcz9cQqQXm3PEtDuPG8qx9oFsFctPg0S5zb8g=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap.min.46ein0sx1k.css","AssetFile":"lib/bootstrap/dist/css/bootstrap.min.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"232803"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"PI8n5gCcz9cQqQXm3PEtDuPG8qx9oFsFctPg0S5zb8g=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:34:31 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"46ein0sx1k"},{"Name":"integrity","Value":"sha256-PI8n5gCcz9cQqQXm3PEtDuPG8qx9oFsFctPg0S5zb8g="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap.min.css"}]},{"Route":"lib/bootstrap/dist/css/bootstrap.min.46ein0sx1k.css.gz","AssetFile":"lib/bootstrap/dist/css/bootstrap.min.css.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"30970"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"ct6gh3bWPabPIUEmUcCXl7mxgr/V6roHfypeQaXerHU=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"46ein0sx1k"},{"Name":"integrity","Value":"sha256-ct6gh3bWPabPIUEmUcCXl7mxgr/V6roHfypeQaXerHU="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap.min.css.gz"}]},{"Route":"lib/bootstrap/dist/css/bootstrap.min.css","AssetFile":"lib/bootstrap/dist/css/bootstrap.min.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000032288270"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"30970"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"ct6gh3bWPabPIUEmUcCXl7mxgr/V6roHfypeQaXerHU=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-PI8n5gCcz9cQqQXm3PEtDuPG8qx9oFsFctPg0S5zb8g="},{"Name":"original-resource","Value":"\"PI8n5gCcz9cQqQXm3PEtDuPG8qx9oFsFctPg0S5zb8g=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap.min.css","AssetFile":"lib/bootstrap/dist/css/bootstrap.min.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"232803"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"PI8n5gCcz9cQqQXm3PEtDuPG8qx9oFsFctPg0S5zb8g=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:34:31 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-PI8n5gCcz9cQqQXm3PEtDuPG8qx9oFsFctPg0S5zb8g="}]},{"Route":"lib/bootstrap/dist/css/bootstrap.min.css.gz","AssetFile":"lib/bootstrap/dist/css/bootstrap.min.css.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"30970"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"ct6gh3bWPabPIUEmUcCXl7mxgr/V6roHfypeQaXerHU=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-ct6gh3bWPabPIUEmUcCXl7mxgr/V6roHfypeQaXerHU="}]},{"Route":"lib/bootstrap/dist/css/bootstrap.min.css.map","AssetFile":"lib/bootstrap/dist/css/bootstrap.min.css.map.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000010890399"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"91823"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"9CI2KGakklFWR2ih9heBHyKNfnUGsALtlWASIJRc25A=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-8SM4U2NQpCLGTQLW5D/x3qSTwxVq2CP+GXYc3V1WwFs="},{"Name":"original-resource","Value":"\"8SM4U2NQpCLGTQLW5D/x3qSTwxVq2CP+GXYc3V1WwFs=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap.min.css.map","AssetFile":"lib/bootstrap/dist/css/bootstrap.min.css.map","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"589892"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"8SM4U2NQpCLGTQLW5D/x3qSTwxVq2CP+GXYc3V1WwFs=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:34:31 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-8SM4U2NQpCLGTQLW5D/x3qSTwxVq2CP+GXYc3V1WwFs="}]},{"Route":"lib/bootstrap/dist/css/bootstrap.min.css.map.gz","AssetFile":"lib/bootstrap/dist/css/bootstrap.min.css.map.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"91823"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"9CI2KGakklFWR2ih9heBHyKNfnUGsALtlWASIJRc25A=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-9CI2KGakklFWR2ih9heBHyKNfnUGsALtlWASIJRc25A="}]},{"Route":"lib/bootstrap/dist/css/bootstrap.min.css.v0zj4ognzu.map","AssetFile":"lib/bootstrap/dist/css/bootstrap.min.css.map.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000010890399"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"91823"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"9CI2KGakklFWR2ih9heBHyKNfnUGsALtlWASIJRc25A=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"v0zj4ognzu"},{"Name":"integrity","Value":"sha256-8SM4U2NQpCLGTQLW5D/x3qSTwxVq2CP+GXYc3V1WwFs="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap.min.css.map"},{"Name":"original-resource","Value":"\"8SM4U2NQpCLGTQLW5D/x3qSTwxVq2CP+GXYc3V1WwFs=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap.min.css.v0zj4ognzu.map","AssetFile":"lib/bootstrap/dist/css/bootstrap.min.css.map","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"589892"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"8SM4U2NQpCLGTQLW5D/x3qSTwxVq2CP+GXYc3V1WwFs=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:34:31 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"v0zj4ognzu"},{"Name":"integrity","Value":"sha256-8SM4U2NQpCLGTQLW5D/x3qSTwxVq2CP+GXYc3V1WwFs="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap.min.css.map"}]},{"Route":"lib/bootstrap/dist/css/bootstrap.min.css.v0zj4ognzu.map.gz","AssetFile":"lib/bootstrap/dist/css/bootstrap.min.css.map.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"91823"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"9CI2KGakklFWR2ih9heBHyKNfnUGsALtlWASIJRc25A=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"v0zj4ognzu"},{"Name":"integrity","Value":"sha256-9CI2KGakklFWR2ih9heBHyKNfnUGsALtlWASIJRc25A="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap.min.css.map.gz"}]},{"Route":"lib/bootstrap/dist/css/bootstrap.rtl.37tfw0ft22.css","AssetFile":"lib/bootstrap/dist/css/bootstrap.rtl.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000030203268"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"33108"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"fs1OjihDYC1UL3EjGsC/xVxgtu8ombjnF8kOmQxQ+Mo=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"37tfw0ft22"},{"Name":"integrity","Value":"sha256-j5E4XIj1p1kNnDi0x1teX9RXoh1/FNlPvCML9YmRh2Q="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap.rtl.css"},{"Name":"original-resource","Value":"\"j5E4XIj1p1kNnDi0x1teX9RXoh1/FNlPvCML9YmRh2Q=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap.rtl.37tfw0ft22.css","AssetFile":"lib/bootstrap/dist/css/bootstrap.rtl.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"280259"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"j5E4XIj1p1kNnDi0x1teX9RXoh1/FNlPvCML9YmRh2Q=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:34:31 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"37tfw0ft22"},{"Name":"integrity","Value":"sha256-j5E4XIj1p1kNnDi0x1teX9RXoh1/FNlPvCML9YmRh2Q="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap.rtl.css"}]},{"Route":"lib/bootstrap/dist/css/bootstrap.rtl.37tfw0ft22.css.gz","AssetFile":"lib/bootstrap/dist/css/bootstrap.rtl.css.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"33108"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"fs1OjihDYC1UL3EjGsC/xVxgtu8ombjnF8kOmQxQ+Mo=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"37tfw0ft22"},{"Name":"integrity","Value":"sha256-fs1OjihDYC1UL3EjGsC/xVxgtu8ombjnF8kOmQxQ+Mo="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap.rtl.css.gz"}]},{"Route":"lib/bootstrap/dist/css/bootstrap.rtl.css","AssetFile":"lib/bootstrap/dist/css/bootstrap.rtl.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000030203268"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"33108"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"fs1OjihDYC1UL3EjGsC/xVxgtu8ombjnF8kOmQxQ+Mo=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-j5E4XIj1p1kNnDi0x1teX9RXoh1/FNlPvCML9YmRh2Q="},{"Name":"original-resource","Value":"\"j5E4XIj1p1kNnDi0x1teX9RXoh1/FNlPvCML9YmRh2Q=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap.rtl.css","AssetFile":"lib/bootstrap/dist/css/bootstrap.rtl.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"280259"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"j5E4XIj1p1kNnDi0x1teX9RXoh1/FNlPvCML9YmRh2Q=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:34:31 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-j5E4XIj1p1kNnDi0x1teX9RXoh1/FNlPvCML9YmRh2Q="}]},{"Route":"lib/bootstrap/dist/css/bootstrap.rtl.css.gz","AssetFile":"lib/bootstrap/dist/css/bootstrap.rtl.css.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"33108"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"fs1OjihDYC1UL3EjGsC/xVxgtu8ombjnF8kOmQxQ+Mo=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-fs1OjihDYC1UL3EjGsC/xVxgtu8ombjnF8kOmQxQ+Mo="}]},{"Route":"lib/bootstrap/dist/css/bootstrap.rtl.css.hrwsygsryq.map","AssetFile":"lib/bootstrap/dist/css/bootstrap.rtl.css.map.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000008698678"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"114959"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"u1Hpz3sxsOpr+ltBsyKbue1Mz8VL9c8goySlIAwPCh8=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"hrwsygsryq"},{"Name":"integrity","Value":"sha256-3bYWUiiVYMZfv2wq5JnXIsHlQKgSKs/VcRivgjgZ1ho="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap.rtl.css.map"},{"Name":"original-resource","Value":"\"3bYWUiiVYMZfv2wq5JnXIsHlQKgSKs/VcRivgjgZ1ho=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap.rtl.css.hrwsygsryq.map","AssetFile":"lib/bootstrap/dist/css/bootstrap.rtl.css.map","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"679615"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"3bYWUiiVYMZfv2wq5JnXIsHlQKgSKs/VcRivgjgZ1ho=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:34:31 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"hrwsygsryq"},{"Name":"integrity","Value":"sha256-3bYWUiiVYMZfv2wq5JnXIsHlQKgSKs/VcRivgjgZ1ho="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap.rtl.css.map"}]},{"Route":"lib/bootstrap/dist/css/bootstrap.rtl.css.hrwsygsryq.map.gz","AssetFile":"lib/bootstrap/dist/css/bootstrap.rtl.css.map.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"114959"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"u1Hpz3sxsOpr+ltBsyKbue1Mz8VL9c8goySlIAwPCh8=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"hrwsygsryq"},{"Name":"integrity","Value":"sha256-u1Hpz3sxsOpr+ltBsyKbue1Mz8VL9c8goySlIAwPCh8="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap.rtl.css.map.gz"}]},{"Route":"lib/bootstrap/dist/css/bootstrap.rtl.css.map","AssetFile":"lib/bootstrap/dist/css/bootstrap.rtl.css.map.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000008698678"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"114959"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"u1Hpz3sxsOpr+ltBsyKbue1Mz8VL9c8goySlIAwPCh8=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-3bYWUiiVYMZfv2wq5JnXIsHlQKgSKs/VcRivgjgZ1ho="},{"Name":"original-resource","Value":"\"3bYWUiiVYMZfv2wq5JnXIsHlQKgSKs/VcRivgjgZ1ho=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap.rtl.css.map","AssetFile":"lib/bootstrap/dist/css/bootstrap.rtl.css.map","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"679615"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"3bYWUiiVYMZfv2wq5JnXIsHlQKgSKs/VcRivgjgZ1ho=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:34:31 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-3bYWUiiVYMZfv2wq5JnXIsHlQKgSKs/VcRivgjgZ1ho="}]},{"Route":"lib/bootstrap/dist/css/bootstrap.rtl.css.map.gz","AssetFile":"lib/bootstrap/dist/css/bootstrap.rtl.css.map.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"114959"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"u1Hpz3sxsOpr+ltBsyKbue1Mz8VL9c8goySlIAwPCh8=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-u1Hpz3sxsOpr+ltBsyKbue1Mz8VL9c8goySlIAwPCh8="}]},{"Route":"lib/bootstrap/dist/css/bootstrap.rtl.min.css","AssetFile":"lib/bootstrap/dist/css/bootstrap.rtl.min.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000032265350"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"30992"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"WwwE+3A7x1trge8XZeN9oKwkvd6mA0Oad5mAbTfmMtQ=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-h5lE7Nm8SkeIpBHHYxN99spP3VuGFKl5NZgsocil7zk="},{"Name":"original-resource","Value":"\"h5lE7Nm8SkeIpBHHYxN99spP3VuGFKl5NZgsocil7zk=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap.rtl.min.css","AssetFile":"lib/bootstrap/dist/css/bootstrap.rtl.min.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"232911"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"h5lE7Nm8SkeIpBHHYxN99spP3VuGFKl5NZgsocil7zk=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:34:31 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-h5lE7Nm8SkeIpBHHYxN99spP3VuGFKl5NZgsocil7zk="}]},{"Route":"lib/bootstrap/dist/css/bootstrap.rtl.min.css.ft3s53vfgj.map","AssetFile":"lib/bootstrap/dist/css/bootstrap.rtl.min.css.map.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000010903223"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"91715"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"j64rFxRLhZHmUPsE/gjIPruUNUfXs1ivjm1eS9HMeoo=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ft3s53vfgj"},{"Name":"integrity","Value":"sha256-rTzXlnepcb/vgFAiB+U7ODQAfOlJLfM3gY6IU7eIANk="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap.rtl.min.css.map"},{"Name":"original-resource","Value":"\"rTzXlnepcb/vgFAiB+U7ODQAfOlJLfM3gY6IU7eIANk=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap.rtl.min.css.ft3s53vfgj.map","AssetFile":"lib/bootstrap/dist/css/bootstrap.rtl.min.css.map","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"589087"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"rTzXlnepcb/vgFAiB+U7ODQAfOlJLfM3gY6IU7eIANk=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:34:31 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ft3s53vfgj"},{"Name":"integrity","Value":"sha256-rTzXlnepcb/vgFAiB+U7ODQAfOlJLfM3gY6IU7eIANk="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap.rtl.min.css.map"}]},{"Route":"lib/bootstrap/dist/css/bootstrap.rtl.min.css.ft3s53vfgj.map.gz","AssetFile":"lib/bootstrap/dist/css/bootstrap.rtl.min.css.map.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"91715"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"j64rFxRLhZHmUPsE/gjIPruUNUfXs1ivjm1eS9HMeoo=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ft3s53vfgj"},{"Name":"integrity","Value":"sha256-j64rFxRLhZHmUPsE/gjIPruUNUfXs1ivjm1eS9HMeoo="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap.rtl.min.css.map.gz"}]},{"Route":"lib/bootstrap/dist/css/bootstrap.rtl.min.css.gz","AssetFile":"lib/bootstrap/dist/css/bootstrap.rtl.min.css.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"30992"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"WwwE+3A7x1trge8XZeN9oKwkvd6mA0Oad5mAbTfmMtQ=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-WwwE+3A7x1trge8XZeN9oKwkvd6mA0Oad5mAbTfmMtQ="}]},{"Route":"lib/bootstrap/dist/css/bootstrap.rtl.min.css.map","AssetFile":"lib/bootstrap/dist/css/bootstrap.rtl.min.css.map.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000010903223"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"91715"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"j64rFxRLhZHmUPsE/gjIPruUNUfXs1ivjm1eS9HMeoo=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-rTzXlnepcb/vgFAiB+U7ODQAfOlJLfM3gY6IU7eIANk="},{"Name":"original-resource","Value":"\"rTzXlnepcb/vgFAiB+U7ODQAfOlJLfM3gY6IU7eIANk=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap.rtl.min.css.map","AssetFile":"lib/bootstrap/dist/css/bootstrap.rtl.min.css.map","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"589087"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"rTzXlnepcb/vgFAiB+U7ODQAfOlJLfM3gY6IU7eIANk=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:34:31 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-rTzXlnepcb/vgFAiB+U7ODQAfOlJLfM3gY6IU7eIANk="}]},{"Route":"lib/bootstrap/dist/css/bootstrap.rtl.min.css.map.gz","AssetFile":"lib/bootstrap/dist/css/bootstrap.rtl.min.css.map.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"91715"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"j64rFxRLhZHmUPsE/gjIPruUNUfXs1ivjm1eS9HMeoo=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-j64rFxRLhZHmUPsE/gjIPruUNUfXs1ivjm1eS9HMeoo="}]},{"Route":"lib/bootstrap/dist/css/bootstrap.rtl.min.pk9g2wxc8p.css","AssetFile":"lib/bootstrap/dist/css/bootstrap.rtl.min.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000032265350"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"30992"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"WwwE+3A7x1trge8XZeN9oKwkvd6mA0Oad5mAbTfmMtQ=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"pk9g2wxc8p"},{"Name":"integrity","Value":"sha256-h5lE7Nm8SkeIpBHHYxN99spP3VuGFKl5NZgsocil7zk="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap.rtl.min.css"},{"Name":"original-resource","Value":"\"h5lE7Nm8SkeIpBHHYxN99spP3VuGFKl5NZgsocil7zk=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap.rtl.min.pk9g2wxc8p.css","AssetFile":"lib/bootstrap/dist/css/bootstrap.rtl.min.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"232911"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"h5lE7Nm8SkeIpBHHYxN99spP3VuGFKl5NZgsocil7zk=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:34:31 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"pk9g2wxc8p"},{"Name":"integrity","Value":"sha256-h5lE7Nm8SkeIpBHHYxN99spP3VuGFKl5NZgsocil7zk="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap.rtl.min.css"}]},{"Route":"lib/bootstrap/dist/css/bootstrap.rtl.min.pk9g2wxc8p.css.gz","AssetFile":"lib/bootstrap/dist/css/bootstrap.rtl.min.css.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"30992"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"WwwE+3A7x1trge8XZeN9oKwkvd6mA0Oad5mAbTfmMtQ=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"pk9g2wxc8p"},{"Name":"integrity","Value":"sha256-WwwE+3A7x1trge8XZeN9oKwkvd6mA0Oad5mAbTfmMtQ="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap.rtl.min.css.gz"}]},{"Route":"lib/bootstrap/dist/css/bootstrap.s35ty4nyc5.css","AssetFile":"lib/bootstrap/dist/css/bootstrap.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000030067050"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"33258"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"pt+WNxTLLUqq6vRWwSTT2gtyBZCFg8ZA7nmeS+5+Z/s=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"s35ty4nyc5"},{"Name":"integrity","Value":"sha256-GKEF18s44B5e0MolXAkpkqLiEbOVlKf6VyYr/G/E6pw="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap.css"},{"Name":"original-resource","Value":"\"GKEF18s44B5e0MolXAkpkqLiEbOVlKf6VyYr/G/E6pw=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap.s35ty4nyc5.css","AssetFile":"lib/bootstrap/dist/css/bootstrap.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"281046"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"GKEF18s44B5e0MolXAkpkqLiEbOVlKf6VyYr/G/E6pw=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:34:31 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"s35ty4nyc5"},{"Name":"integrity","Value":"sha256-GKEF18s44B5e0MolXAkpkqLiEbOVlKf6VyYr/G/E6pw="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap.css"}]},{"Route":"lib/bootstrap/dist/css/bootstrap.s35ty4nyc5.css.gz","AssetFile":"lib/bootstrap/dist/css/bootstrap.css.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"33258"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"pt+WNxTLLUqq6vRWwSTT2gtyBZCFg8ZA7nmeS+5+Z/s=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"s35ty4nyc5"},{"Name":"integrity","Value":"sha256-pt+WNxTLLUqq6vRWwSTT2gtyBZCFg8ZA7nmeS+5+Z/s="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap.css.gz"}]},{"Route":"lib/bootstrap/dist/js/bootstrap.bundle.6cfz1n2cew.js","AssetFile":"lib/bootstrap/dist/js/bootstrap.bundle.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000022545881"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"44353"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"FwlVZHaqt/fCokCRPrJXpP3g8Xz8yowIwHYza63e5sA=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"6cfz1n2cew"},{"Name":"integrity","Value":"sha256-mkoRoV24jV+rCPWcHDR5awPx8VuzzJKN0ibhxZ9/WaM="},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.bundle.js"},{"Name":"original-resource","Value":"\"mkoRoV24jV+rCPWcHDR5awPx8VuzzJKN0ibhxZ9/WaM=\""}]},{"Route":"lib/bootstrap/dist/js/bootstrap.bundle.6cfz1n2cew.js","AssetFile":"lib/bootstrap/dist/js/bootstrap.bundle.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"207819"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"mkoRoV24jV+rCPWcHDR5awPx8VuzzJKN0ibhxZ9/WaM=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:34:31 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"6cfz1n2cew"},{"Name":"integrity","Value":"sha256-mkoRoV24jV+rCPWcHDR5awPx8VuzzJKN0ibhxZ9/WaM="},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.bundle.js"}]},{"Route":"lib/bootstrap/dist/js/bootstrap.bundle.6cfz1n2cew.js.gz","AssetFile":"lib/bootstrap/dist/js/bootstrap.bundle.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"44353"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"FwlVZHaqt/fCokCRPrJXpP3g8Xz8yowIwHYza63e5sA=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"6cfz1n2cew"},{"Name":"integrity","Value":"sha256-FwlVZHaqt/fCokCRPrJXpP3g8Xz8yowIwHYza63e5sA="},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.bundle.js.gz"}]},{"Route":"lib/bootstrap/dist/js/bootstrap.bundle.js","AssetFile":"lib/bootstrap/dist/js/bootstrap.bundle.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000022545881"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"44353"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"FwlVZHaqt/fCokCRPrJXpP3g8Xz8yowIwHYza63e5sA=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-mkoRoV24jV+rCPWcHDR5awPx8VuzzJKN0ibhxZ9/WaM="},{"Name":"original-resource","Value":"\"mkoRoV24jV+rCPWcHDR5awPx8VuzzJKN0ibhxZ9/WaM=\""}]},{"Route":"lib/bootstrap/dist/js/bootstrap.bundle.js","AssetFile":"lib/bootstrap/dist/js/bootstrap.bundle.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"207819"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"mkoRoV24jV+rCPWcHDR5awPx8VuzzJKN0ibhxZ9/WaM=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:34:31 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-mkoRoV24jV+rCPWcHDR5awPx8VuzzJKN0ibhxZ9/WaM="}]},{"Route":"lib/bootstrap/dist/js/bootstrap.bundle.js.6pdc2jztkx.map","AssetFile":"lib/bootstrap/dist/js/bootstrap.bundle.js.map.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000010860947"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"92072"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"1e0S5mPPo/9Qad4mnR2UVH1bu8Tevi6r+JvHAAykgfg=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"6pdc2jztkx"},{"Name":"integrity","Value":"sha256-Wq4aWW1rQdJ+6oAgy1JQc9IBjHL9T3MKfXTBNqOv02c="},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.bundle.js.map"},{"Name":"original-resource","Value":"\"Wq4aWW1rQdJ+6oAgy1JQc9IBjHL9T3MKfXTBNqOv02c=\""}]},{"Route":"lib/bootstrap/dist/js/bootstrap.bundle.js.6pdc2jztkx.map","AssetFile":"lib/bootstrap/dist/js/bootstrap.bundle.js.map","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"444579"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"Wq4aWW1rQdJ+6oAgy1JQc9IBjHL9T3MKfXTBNqOv02c=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:34:31 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"6pdc2jztkx"},{"Name":"integrity","Value":"sha256-Wq4aWW1rQdJ+6oAgy1JQc9IBjHL9T3MKfXTBNqOv02c="},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.bundle.js.map"}]},{"Route":"lib/bootstrap/dist/js/bootstrap.bundle.js.6pdc2jztkx.map.gz","AssetFile":"lib/bootstrap/dist/js/bootstrap.bundle.js.map.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"92072"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"1e0S5mPPo/9Qad4mnR2UVH1bu8Tevi6r+JvHAAykgfg=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"6pdc2jztkx"},{"Name":"integrity","Value":"sha256-1e0S5mPPo/9Qad4mnR2UVH1bu8Tevi6r+JvHAAykgfg="},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.bundle.js.map.gz"}]},{"Route":"lib/bootstrap/dist/js/bootstrap.bundle.js.gz","AssetFile":"lib/bootstrap/dist/js/bootstrap.bundle.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"44353"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"FwlVZHaqt/fCokCRPrJXpP3g8Xz8yowIwHYza63e5sA=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-FwlVZHaqt/fCokCRPrJXpP3g8Xz8yowIwHYza63e5sA="}]},{"Route":"lib/bootstrap/dist/js/bootstrap.bundle.js.map","AssetFile":"lib/bootstrap/dist/js/bootstrap.bundle.js.map.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000010860947"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"92072"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"1e0S5mPPo/9Qad4mnR2UVH1bu8Tevi6r+JvHAAykgfg=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Wq4aWW1rQdJ+6oAgy1JQc9IBjHL9T3MKfXTBNqOv02c="},{"Name":"original-resource","Value":"\"Wq4aWW1rQdJ+6oAgy1JQc9IBjHL9T3MKfXTBNqOv02c=\""}]},{"Route":"lib/bootstrap/dist/js/bootstrap.bundle.js.map","AssetFile":"lib/bootstrap/dist/js/bootstrap.bundle.js.map","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"444579"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"Wq4aWW1rQdJ+6oAgy1JQc9IBjHL9T3MKfXTBNqOv02c=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:34:31 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Wq4aWW1rQdJ+6oAgy1JQc9IBjHL9T3MKfXTBNqOv02c="}]},{"Route":"lib/bootstrap/dist/js/bootstrap.bundle.js.map.gz","AssetFile":"lib/bootstrap/dist/js/bootstrap.bundle.js.map.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"92072"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"1e0S5mPPo/9Qad4mnR2UVH1bu8Tevi6r+JvHAAykgfg=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-1e0S5mPPo/9Qad4mnR2UVH1bu8Tevi6r+JvHAAykgfg="}]},{"Route":"lib/bootstrap/dist/js/bootstrap.bundle.min.493y06b0oq.js","AssetFile":"lib/bootstrap/dist/js/bootstrap.bundle.min.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000041692725"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"23984"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"PUb7rj1jLHgIo7Hwm3lvukBcGKDry7n7W2fa1xrz+zY=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"493y06b0oq"},{"Name":"integrity","Value":"sha256-CDOy6cOibCWEdsRiZuaHf8dSGGJRYuBGC+mjoJimHGw="},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.bundle.min.js"},{"Name":"original-resource","Value":"\"CDOy6cOibCWEdsRiZuaHf8dSGGJRYuBGC+mjoJimHGw=\""}]},{"Route":"lib/bootstrap/dist/js/bootstrap.bundle.min.493y06b0oq.js","AssetFile":"lib/bootstrap/dist/js/bootstrap.bundle.min.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"80721"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"CDOy6cOibCWEdsRiZuaHf8dSGGJRYuBGC+mjoJimHGw=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:34:31 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"493y06b0oq"},{"Name":"integrity","Value":"sha256-CDOy6cOibCWEdsRiZuaHf8dSGGJRYuBGC+mjoJimHGw="},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.bundle.min.js"}]},{"Route":"lib/bootstrap/dist/js/bootstrap.bundle.min.493y06b0oq.js.gz","AssetFile":"lib/bootstrap/dist/js/bootstrap.bundle.min.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"23984"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"PUb7rj1jLHgIo7Hwm3lvukBcGKDry7n7W2fa1xrz+zY=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"493y06b0oq"},{"Name":"integrity","Value":"sha256-PUb7rj1jLHgIo7Hwm3lvukBcGKDry7n7W2fa1xrz+zY="},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.bundle.min.js.gz"}]},{"Route":"lib/bootstrap/dist/js/bootstrap.bundle.min.js","AssetFile":"lib/bootstrap/dist/js/bootstrap.bundle.min.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000041692725"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"23984"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"PUb7rj1jLHgIo7Hwm3lvukBcGKDry7n7W2fa1xrz+zY=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-CDOy6cOibCWEdsRiZuaHf8dSGGJRYuBGC+mjoJimHGw="},{"Name":"original-resource","Value":"\"CDOy6cOibCWEdsRiZuaHf8dSGGJRYuBGC+mjoJimHGw=\""}]},{"Route":"lib/bootstrap/dist/js/bootstrap.bundle.min.js","AssetFile":"lib/bootstrap/dist/js/bootstrap.bundle.min.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"80721"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"CDOy6cOibCWEdsRiZuaHf8dSGGJRYuBGC+mjoJimHGw=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:34:31 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-CDOy6cOibCWEdsRiZuaHf8dSGGJRYuBGC+mjoJimHGw="}]},{"Route":"lib/bootstrap/dist/js/bootstrap.bundle.min.js.gz","AssetFile":"lib/bootstrap/dist/js/bootstrap.bundle.min.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"23984"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"PUb7rj1jLHgIo7Hwm3lvukBcGKDry7n7W2fa1xrz+zY=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-PUb7rj1jLHgIo7Hwm3lvukBcGKDry7n7W2fa1xrz+zY="}]},{"Route":"lib/bootstrap/dist/js/bootstrap.bundle.min.js.iovd86k7lj.map","AssetFile":"lib/bootstrap/dist/js/bootstrap.bundle.min.js.map.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000011499276"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"86961"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"u2o8ZZaXgiYQGBSiviq197ts6elMTLIFCM5h/r+YzpI=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"iovd86k7lj"},{"Name":"integrity","Value":"sha256-Xj4HYxZBQ7qqHKBwa2EAugRS+RHWzpcTtI49vgezUSU="},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.bundle.min.js.map"},{"Name":"original-resource","Value":"\"Xj4HYxZBQ7qqHKBwa2EAugRS+RHWzpcTtI49vgezUSU=\""}]},{"Route":"lib/bootstrap/dist/js/bootstrap.bundle.min.js.iovd86k7lj.map","AssetFile":"lib/bootstrap/dist/js/bootstrap.bundle.min.js.map","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"332090"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"Xj4HYxZBQ7qqHKBwa2EAugRS+RHWzpcTtI49vgezUSU=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:34:32 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"iovd86k7lj"},{"Name":"integrity","Value":"sha256-Xj4HYxZBQ7qqHKBwa2EAugRS+RHWzpcTtI49vgezUSU="},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.bundle.min.js.map"}]},{"Route":"lib/bootstrap/dist/js/bootstrap.bundle.min.js.iovd86k7lj.map.gz","AssetFile":"lib/bootstrap/dist/js/bootstrap.bundle.min.js.map.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"86961"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"u2o8ZZaXgiYQGBSiviq197ts6elMTLIFCM5h/r+YzpI=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"iovd86k7lj"},{"Name":"integrity","Value":"sha256-u2o8ZZaXgiYQGBSiviq197ts6elMTLIFCM5h/r+YzpI="},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.bundle.min.js.map.gz"}]},{"Route":"lib/bootstrap/dist/js/bootstrap.bundle.min.js.map","AssetFile":"lib/bootstrap/dist/js/bootstrap.bundle.min.js.map.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000011499276"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"86961"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"u2o8ZZaXgiYQGBSiviq197ts6elMTLIFCM5h/r+YzpI=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Xj4HYxZBQ7qqHKBwa2EAugRS+RHWzpcTtI49vgezUSU="},{"Name":"original-resource","Value":"\"Xj4HYxZBQ7qqHKBwa2EAugRS+RHWzpcTtI49vgezUSU=\""}]},{"Route":"lib/bootstrap/dist/js/bootstrap.bundle.min.js.map","AssetFile":"lib/bootstrap/dist/js/bootstrap.bundle.min.js.map","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"332090"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"Xj4HYxZBQ7qqHKBwa2EAugRS+RHWzpcTtI49vgezUSU=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:34:32 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Xj4HYxZBQ7qqHKBwa2EAugRS+RHWzpcTtI49vgezUSU="}]},{"Route":"lib/bootstrap/dist/js/bootstrap.bundle.min.js.map.gz","AssetFile":"lib/bootstrap/dist/js/bootstrap.bundle.min.js.map.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"86961"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"u2o8ZZaXgiYQGBSiviq197ts6elMTLIFCM5h/r+YzpI=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-u2o8ZZaXgiYQGBSiviq197ts6elMTLIFCM5h/r+YzpI="}]},{"Route":"lib/bootstrap/dist/js/bootstrap.esm.js","AssetFile":"lib/bootstrap/dist/js/bootstrap.esm.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000034659642"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"28851"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"wol+HTj/xiv1aZ5rAh91hRF83nnYHIOeqPJDujYZBV4=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-exiXZNJDwucXfuje3CbXPbuS6+Ery3z9sP+pgmvh8nA="},{"Name":"original-resource","Value":"\"exiXZNJDwucXfuje3CbXPbuS6+Ery3z9sP+pgmvh8nA=\""}]},{"Route":"lib/bootstrap/dist/js/bootstrap.esm.js","AssetFile":"lib/bootstrap/dist/js/bootstrap.esm.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"135829"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"exiXZNJDwucXfuje3CbXPbuS6+Ery3z9sP+pgmvh8nA=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:34:32 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-exiXZNJDwucXfuje3CbXPbuS6+Ery3z9sP+pgmvh8nA="}]},{"Route":"lib/bootstrap/dist/js/bootstrap.esm.js.gz","AssetFile":"lib/bootstrap/dist/js/bootstrap.esm.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"28851"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"wol+HTj/xiv1aZ5rAh91hRF83nnYHIOeqPJDujYZBV4=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-wol+HTj/xiv1aZ5rAh91hRF83nnYHIOeqPJDujYZBV4="}]},{"Route":"lib/bootstrap/dist/js/bootstrap.esm.js.kbrnm935zg.map","AssetFile":"lib/bootstrap/dist/js/bootstrap.esm.js.map.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000015592110"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"64134"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"FEVLoM8EBjBfNDxtN98NEdEJHpCjMxcAkjqPlv3oXEc=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"kbrnm935zg"},{"Name":"integrity","Value":"sha256-EPRLgpqWkahLxEn6CUjdM76RIYIw1xdHwTbeHssuj/4="},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.esm.js.map"},{"Name":"original-resource","Value":"\"EPRLgpqWkahLxEn6CUjdM76RIYIw1xdHwTbeHssuj/4=\""}]},{"Route":"lib/bootstrap/dist/js/bootstrap.esm.js.kbrnm935zg.map","AssetFile":"lib/bootstrap/dist/js/bootstrap.esm.js.map","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"305438"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"EPRLgpqWkahLxEn6CUjdM76RIYIw1xdHwTbeHssuj/4=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:34:32 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"kbrnm935zg"},{"Name":"integrity","Value":"sha256-EPRLgpqWkahLxEn6CUjdM76RIYIw1xdHwTbeHssuj/4="},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.esm.js.map"}]},{"Route":"lib/bootstrap/dist/js/bootstrap.esm.js.kbrnm935zg.map.gz","AssetFile":"lib/bootstrap/dist/js/bootstrap.esm.js.map.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"64134"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"FEVLoM8EBjBfNDxtN98NEdEJHpCjMxcAkjqPlv3oXEc=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"kbrnm935zg"},{"Name":"integrity","Value":"sha256-FEVLoM8EBjBfNDxtN98NEdEJHpCjMxcAkjqPlv3oXEc="},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.esm.js.map.gz"}]},{"Route":"lib/bootstrap/dist/js/bootstrap.esm.js.map","AssetFile":"lib/bootstrap/dist/js/bootstrap.esm.js.map.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000015592110"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"64134"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"FEVLoM8EBjBfNDxtN98NEdEJHpCjMxcAkjqPlv3oXEc=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-EPRLgpqWkahLxEn6CUjdM76RIYIw1xdHwTbeHssuj/4="},{"Name":"original-resource","Value":"\"EPRLgpqWkahLxEn6CUjdM76RIYIw1xdHwTbeHssuj/4=\""}]},{"Route":"lib/bootstrap/dist/js/bootstrap.esm.js.map","AssetFile":"lib/bootstrap/dist/js/bootstrap.esm.js.map","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"305438"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"EPRLgpqWkahLxEn6CUjdM76RIYIw1xdHwTbeHssuj/4=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:34:32 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-EPRLgpqWkahLxEn6CUjdM76RIYIw1xdHwTbeHssuj/4="}]},{"Route":"lib/bootstrap/dist/js/bootstrap.esm.js.map.gz","AssetFile":"lib/bootstrap/dist/js/bootstrap.esm.js.map.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"64134"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"FEVLoM8EBjBfNDxtN98NEdEJHpCjMxcAkjqPlv3oXEc=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-FEVLoM8EBjBfNDxtN98NEdEJHpCjMxcAkjqPlv3oXEc="}]},{"Route":"lib/bootstrap/dist/js/bootstrap.esm.min.jj8uyg4cgr.js","AssetFile":"lib/bootstrap/dist/js/bootstrap.esm.min.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000053659584"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"18635"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"WmNnoBgejwchZUYVA3o03QOAGOuMRS778DeXvhP6suo=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"jj8uyg4cgr"},{"Name":"integrity","Value":"sha256-QZdFT1ZNdly4rmgUBtXmXFS9BU1FTa+sPe6h794sFRQ="},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.esm.min.js"},{"Name":"original-resource","Value":"\"QZdFT1ZNdly4rmgUBtXmXFS9BU1FTa+sPe6h794sFRQ=\""}]},{"Route":"lib/bootstrap/dist/js/bootstrap.esm.min.jj8uyg4cgr.js","AssetFile":"lib/bootstrap/dist/js/bootstrap.esm.min.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"73935"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"QZdFT1ZNdly4rmgUBtXmXFS9BU1FTa+sPe6h794sFRQ=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:34:32 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"jj8uyg4cgr"},{"Name":"integrity","Value":"sha256-QZdFT1ZNdly4rmgUBtXmXFS9BU1FTa+sPe6h794sFRQ="},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.esm.min.js"}]},{"Route":"lib/bootstrap/dist/js/bootstrap.esm.min.jj8uyg4cgr.js.gz","AssetFile":"lib/bootstrap/dist/js/bootstrap.esm.min.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"18635"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"WmNnoBgejwchZUYVA3o03QOAGOuMRS778DeXvhP6suo=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"jj8uyg4cgr"},{"Name":"integrity","Value":"sha256-WmNnoBgejwchZUYVA3o03QOAGOuMRS778DeXvhP6suo="},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.esm.min.js.gz"}]},{"Route":"lib/bootstrap/dist/js/bootstrap.esm.min.js","AssetFile":"lib/bootstrap/dist/js/bootstrap.esm.min.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000053659584"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"18635"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"WmNnoBgejwchZUYVA3o03QOAGOuMRS778DeXvhP6suo=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-QZdFT1ZNdly4rmgUBtXmXFS9BU1FTa+sPe6h794sFRQ="},{"Name":"original-resource","Value":"\"QZdFT1ZNdly4rmgUBtXmXFS9BU1FTa+sPe6h794sFRQ=\""}]},{"Route":"lib/bootstrap/dist/js/bootstrap.esm.min.js","AssetFile":"lib/bootstrap/dist/js/bootstrap.esm.min.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"73935"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"QZdFT1ZNdly4rmgUBtXmXFS9BU1FTa+sPe6h794sFRQ=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:34:32 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-QZdFT1ZNdly4rmgUBtXmXFS9BU1FTa+sPe6h794sFRQ="}]},{"Route":"lib/bootstrap/dist/js/bootstrap.esm.min.js.gz","AssetFile":"lib/bootstrap/dist/js/bootstrap.esm.min.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"18635"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"WmNnoBgejwchZUYVA3o03QOAGOuMRS778DeXvhP6suo=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-WmNnoBgejwchZUYVA3o03QOAGOuMRS778DeXvhP6suo="}]},{"Route":"lib/bootstrap/dist/js/bootstrap.esm.min.js.map","AssetFile":"lib/bootstrap/dist/js/bootstrap.esm.min.js.map.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000017645709"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"56670"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"j6u/zn+GRIVR7DjCioj3tkq2zAKNpSIfRdlNSkhuWuM=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Tsbv8z6VlNgVET8xvz/yLo/v5iJHTAj2J4hkhjP1rHM="},{"Name":"original-resource","Value":"\"Tsbv8z6VlNgVET8xvz/yLo/v5iJHTAj2J4hkhjP1rHM=\""}]},{"Route":"lib/bootstrap/dist/js/bootstrap.esm.min.js.map","AssetFile":"lib/bootstrap/dist/js/bootstrap.esm.min.js.map","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"222455"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"Tsbv8z6VlNgVET8xvz/yLo/v5iJHTAj2J4hkhjP1rHM=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:34:32 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Tsbv8z6VlNgVET8xvz/yLo/v5iJHTAj2J4hkhjP1rHM="}]},{"Route":"lib/bootstrap/dist/js/bootstrap.esm.min.js.map.gz","AssetFile":"lib/bootstrap/dist/js/bootstrap.esm.min.js.map.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"56670"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"j6u/zn+GRIVR7DjCioj3tkq2zAKNpSIfRdlNSkhuWuM=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-j6u/zn+GRIVR7DjCioj3tkq2zAKNpSIfRdlNSkhuWuM="}]},{"Route":"lib/bootstrap/dist/js/bootstrap.esm.min.js.y7v9cxd14o.map","AssetFile":"lib/bootstrap/dist/js/bootstrap.esm.min.js.map.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000017645709"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"56670"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"j6u/zn+GRIVR7DjCioj3tkq2zAKNpSIfRdlNSkhuWuM=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"y7v9cxd14o"},{"Name":"integrity","Value":"sha256-Tsbv8z6VlNgVET8xvz/yLo/v5iJHTAj2J4hkhjP1rHM="},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.esm.min.js.map"},{"Name":"original-resource","Value":"\"Tsbv8z6VlNgVET8xvz/yLo/v5iJHTAj2J4hkhjP1rHM=\""}]},{"Route":"lib/bootstrap/dist/js/bootstrap.esm.min.js.y7v9cxd14o.map","AssetFile":"lib/bootstrap/dist/js/bootstrap.esm.min.js.map","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"222455"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"Tsbv8z6VlNgVET8xvz/yLo/v5iJHTAj2J4hkhjP1rHM=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:34:32 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"y7v9cxd14o"},{"Name":"integrity","Value":"sha256-Tsbv8z6VlNgVET8xvz/yLo/v5iJHTAj2J4hkhjP1rHM="},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.esm.min.js.map"}]},{"Route":"lib/bootstrap/dist/js/bootstrap.esm.min.js.y7v9cxd14o.map.gz","AssetFile":"lib/bootstrap/dist/js/bootstrap.esm.min.js.map.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"56670"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"j6u/zn+GRIVR7DjCioj3tkq2zAKNpSIfRdlNSkhuWuM=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"y7v9cxd14o"},{"Name":"integrity","Value":"sha256-j6u/zn+GRIVR7DjCioj3tkq2zAKNpSIfRdlNSkhuWuM="},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.esm.min.js.map.gz"}]},{"Route":"lib/bootstrap/dist/js/bootstrap.esm.vr1egmr9el.js","AssetFile":"lib/bootstrap/dist/js/bootstrap.esm.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000034659642"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"28851"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"wol+HTj/xiv1aZ5rAh91hRF83nnYHIOeqPJDujYZBV4=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"vr1egmr9el"},{"Name":"integrity","Value":"sha256-exiXZNJDwucXfuje3CbXPbuS6+Ery3z9sP+pgmvh8nA="},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.esm.js"},{"Name":"original-resource","Value":"\"exiXZNJDwucXfuje3CbXPbuS6+Ery3z9sP+pgmvh8nA=\""}]},{"Route":"lib/bootstrap/dist/js/bootstrap.esm.vr1egmr9el.js","AssetFile":"lib/bootstrap/dist/js/bootstrap.esm.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"135829"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"exiXZNJDwucXfuje3CbXPbuS6+Ery3z9sP+pgmvh8nA=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:34:32 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"vr1egmr9el"},{"Name":"integrity","Value":"sha256-exiXZNJDwucXfuje3CbXPbuS6+Ery3z9sP+pgmvh8nA="},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.esm.js"}]},{"Route":"lib/bootstrap/dist/js/bootstrap.esm.vr1egmr9el.js.gz","AssetFile":"lib/bootstrap/dist/js/bootstrap.esm.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"28851"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"wol+HTj/xiv1aZ5rAh91hRF83nnYHIOeqPJDujYZBV4=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"vr1egmr9el"},{"Name":"integrity","Value":"sha256-wol+HTj/xiv1aZ5rAh91hRF83nnYHIOeqPJDujYZBV4="},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.esm.js.gz"}]},{"Route":"lib/bootstrap/dist/js/bootstrap.js","AssetFile":"lib/bootstrap/dist/js/bootstrap.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000033819203"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"29568"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"vxTpQ/skdGaK1fWKJ6bpuKiCsKR5FwPOZXzuVrUcz58=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-+UW802wgVfnjaSbdwyHLlU7AVplb0WToOlvN1CnzIac="},{"Name":"original-resource","Value":"\"+UW802wgVfnjaSbdwyHLlU7AVplb0WToOlvN1CnzIac=\""}]},{"Route":"lib/bootstrap/dist/js/bootstrap.js","AssetFile":"lib/bootstrap/dist/js/bootstrap.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"145401"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"+UW802wgVfnjaSbdwyHLlU7AVplb0WToOlvN1CnzIac=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:34:32 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-+UW802wgVfnjaSbdwyHLlU7AVplb0WToOlvN1CnzIac="}]},{"Route":"lib/bootstrap/dist/js/bootstrap.js.gz","AssetFile":"lib/bootstrap/dist/js/bootstrap.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"29568"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"vxTpQ/skdGaK1fWKJ6bpuKiCsKR5FwPOZXzuVrUcz58=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-vxTpQ/skdGaK1fWKJ6bpuKiCsKR5FwPOZXzuVrUcz58="}]},{"Route":"lib/bootstrap/dist/js/bootstrap.js.h1s4sie4z3.map","AssetFile":"lib/bootstrap/dist/js/bootstrap.js.map.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000015519516"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"64434"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"6GxMyK5YAexwvliYNqeiH6oCqjjSdf0iOFokuntpNcU=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"h1s4sie4z3"},{"Name":"integrity","Value":"sha256-9Wr7Hxe8gCJDoIHh5xP29ldXvC3kN2GkifQj9c8vYx4="},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.js.map"},{"Name":"original-resource","Value":"\"9Wr7Hxe8gCJDoIHh5xP29ldXvC3kN2GkifQj9c8vYx4=\""}]},{"Route":"lib/bootstrap/dist/js/bootstrap.js.h1s4sie4z3.map","AssetFile":"lib/bootstrap/dist/js/bootstrap.js.map","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"306606"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"9Wr7Hxe8gCJDoIHh5xP29ldXvC3kN2GkifQj9c8vYx4=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:34:32 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"h1s4sie4z3"},{"Name":"integrity","Value":"sha256-9Wr7Hxe8gCJDoIHh5xP29ldXvC3kN2GkifQj9c8vYx4="},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.js.map"}]},{"Route":"lib/bootstrap/dist/js/bootstrap.js.h1s4sie4z3.map.gz","AssetFile":"lib/bootstrap/dist/js/bootstrap.js.map.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"64434"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"6GxMyK5YAexwvliYNqeiH6oCqjjSdf0iOFokuntpNcU=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"h1s4sie4z3"},{"Name":"integrity","Value":"sha256-6GxMyK5YAexwvliYNqeiH6oCqjjSdf0iOFokuntpNcU="},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.js.map.gz"}]},{"Route":"lib/bootstrap/dist/js/bootstrap.js.map","AssetFile":"lib/bootstrap/dist/js/bootstrap.js.map.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000015519516"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"64434"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"6GxMyK5YAexwvliYNqeiH6oCqjjSdf0iOFokuntpNcU=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-9Wr7Hxe8gCJDoIHh5xP29ldXvC3kN2GkifQj9c8vYx4="},{"Name":"original-resource","Value":"\"9Wr7Hxe8gCJDoIHh5xP29ldXvC3kN2GkifQj9c8vYx4=\""}]},{"Route":"lib/bootstrap/dist/js/bootstrap.js.map","AssetFile":"lib/bootstrap/dist/js/bootstrap.js.map","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"306606"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"9Wr7Hxe8gCJDoIHh5xP29ldXvC3kN2GkifQj9c8vYx4=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:34:32 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-9Wr7Hxe8gCJDoIHh5xP29ldXvC3kN2GkifQj9c8vYx4="}]},{"Route":"lib/bootstrap/dist/js/bootstrap.js.map.gz","AssetFile":"lib/bootstrap/dist/js/bootstrap.js.map.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"64434"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"6GxMyK5YAexwvliYNqeiH6oCqjjSdf0iOFokuntpNcU=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-6GxMyK5YAexwvliYNqeiH6oCqjjSdf0iOFokuntpNcU="}]},{"Route":"lib/bootstrap/dist/js/bootstrap.min.63fj8s7r0e.js","AssetFile":"lib/bootstrap/dist/js/bootstrap.min.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000060106990"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"16636"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"bIPgOT88ycSklHWxEzFQVPvNsgNbss3QQbyTqHho4PA=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"63fj8s7r0e"},{"Name":"integrity","Value":"sha256-3gQJhtmj7YnV1fmtbVcnAV6eI4ws0Tr48bVZCThtCGQ="},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.min.js"},{"Name":"original-resource","Value":"\"3gQJhtmj7YnV1fmtbVcnAV6eI4ws0Tr48bVZCThtCGQ=\""}]},{"Route":"lib/bootstrap/dist/js/bootstrap.min.63fj8s7r0e.js","AssetFile":"lib/bootstrap/dist/js/bootstrap.min.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"60635"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"3gQJhtmj7YnV1fmtbVcnAV6eI4ws0Tr48bVZCThtCGQ=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:34:32 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"63fj8s7r0e"},{"Name":"integrity","Value":"sha256-3gQJhtmj7YnV1fmtbVcnAV6eI4ws0Tr48bVZCThtCGQ="},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.min.js"}]},{"Route":"lib/bootstrap/dist/js/bootstrap.min.63fj8s7r0e.js.gz","AssetFile":"lib/bootstrap/dist/js/bootstrap.min.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"16636"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"bIPgOT88ycSklHWxEzFQVPvNsgNbss3QQbyTqHho4PA=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"63fj8s7r0e"},{"Name":"integrity","Value":"sha256-bIPgOT88ycSklHWxEzFQVPvNsgNbss3QQbyTqHho4PA="},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.min.js.gz"}]},{"Route":"lib/bootstrap/dist/js/bootstrap.min.js","AssetFile":"lib/bootstrap/dist/js/bootstrap.min.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000060106990"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"16636"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"bIPgOT88ycSklHWxEzFQVPvNsgNbss3QQbyTqHho4PA=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-3gQJhtmj7YnV1fmtbVcnAV6eI4ws0Tr48bVZCThtCGQ="},{"Name":"original-resource","Value":"\"3gQJhtmj7YnV1fmtbVcnAV6eI4ws0Tr48bVZCThtCGQ=\""}]},{"Route":"lib/bootstrap/dist/js/bootstrap.min.js","AssetFile":"lib/bootstrap/dist/js/bootstrap.min.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"60635"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"3gQJhtmj7YnV1fmtbVcnAV6eI4ws0Tr48bVZCThtCGQ=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:34:32 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-3gQJhtmj7YnV1fmtbVcnAV6eI4ws0Tr48bVZCThtCGQ="}]},{"Route":"lib/bootstrap/dist/js/bootstrap.min.js.0j3bgjxly4.map","AssetFile":"lib/bootstrap/dist/js/bootstrap.min.js.map.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000017904782"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"55850"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"jqz3zWDVmly0HcVfO6RQ1Ew/6DCbF9EVmEe2DJdcW6Y=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"0j3bgjxly4"},{"Name":"integrity","Value":"sha256-ZI01e/ns473GKvACG4McggJdxvFfFIw4xspwQiG8Ye4="},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.min.js.map"},{"Name":"original-resource","Value":"\"ZI01e/ns473GKvACG4McggJdxvFfFIw4xspwQiG8Ye4=\""}]},{"Route":"lib/bootstrap/dist/js/bootstrap.min.js.0j3bgjxly4.map","AssetFile":"lib/bootstrap/dist/js/bootstrap.min.js.map","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"220561"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"ZI01e/ns473GKvACG4McggJdxvFfFIw4xspwQiG8Ye4=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:34:32 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"0j3bgjxly4"},{"Name":"integrity","Value":"sha256-ZI01e/ns473GKvACG4McggJdxvFfFIw4xspwQiG8Ye4="},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.min.js.map"}]},{"Route":"lib/bootstrap/dist/js/bootstrap.min.js.0j3bgjxly4.map.gz","AssetFile":"lib/bootstrap/dist/js/bootstrap.min.js.map.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"55850"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"jqz3zWDVmly0HcVfO6RQ1Ew/6DCbF9EVmEe2DJdcW6Y=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"0j3bgjxly4"},{"Name":"integrity","Value":"sha256-jqz3zWDVmly0HcVfO6RQ1Ew/6DCbF9EVmEe2DJdcW6Y="},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.min.js.map.gz"}]},{"Route":"lib/bootstrap/dist/js/bootstrap.min.js.gz","AssetFile":"lib/bootstrap/dist/js/bootstrap.min.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"16636"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"bIPgOT88ycSklHWxEzFQVPvNsgNbss3QQbyTqHho4PA=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-bIPgOT88ycSklHWxEzFQVPvNsgNbss3QQbyTqHho4PA="}]},{"Route":"lib/bootstrap/dist/js/bootstrap.min.js.map","AssetFile":"lib/bootstrap/dist/js/bootstrap.min.js.map.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000017904782"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"55850"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"jqz3zWDVmly0HcVfO6RQ1Ew/6DCbF9EVmEe2DJdcW6Y=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-ZI01e/ns473GKvACG4McggJdxvFfFIw4xspwQiG8Ye4="},{"Name":"original-resource","Value":"\"ZI01e/ns473GKvACG4McggJdxvFfFIw4xspwQiG8Ye4=\""}]},{"Route":"lib/bootstrap/dist/js/bootstrap.min.js.map","AssetFile":"lib/bootstrap/dist/js/bootstrap.min.js.map","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"220561"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"ZI01e/ns473GKvACG4McggJdxvFfFIw4xspwQiG8Ye4=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:34:32 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-ZI01e/ns473GKvACG4McggJdxvFfFIw4xspwQiG8Ye4="}]},{"Route":"lib/bootstrap/dist/js/bootstrap.min.js.map.gz","AssetFile":"lib/bootstrap/dist/js/bootstrap.min.js.map.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"55850"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"jqz3zWDVmly0HcVfO6RQ1Ew/6DCbF9EVmEe2DJdcW6Y=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-jqz3zWDVmly0HcVfO6RQ1Ew/6DCbF9EVmEe2DJdcW6Y="}]},{"Route":"lib/bootstrap/dist/js/bootstrap.notf2xhcfb.js","AssetFile":"lib/bootstrap/dist/js/bootstrap.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000033819203"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"29568"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"vxTpQ/skdGaK1fWKJ6bpuKiCsKR5FwPOZXzuVrUcz58=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"notf2xhcfb"},{"Name":"integrity","Value":"sha256-+UW802wgVfnjaSbdwyHLlU7AVplb0WToOlvN1CnzIac="},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.js"},{"Name":"original-resource","Value":"\"+UW802wgVfnjaSbdwyHLlU7AVplb0WToOlvN1CnzIac=\""}]},{"Route":"lib/bootstrap/dist/js/bootstrap.notf2xhcfb.js","AssetFile":"lib/bootstrap/dist/js/bootstrap.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"145401"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"+UW802wgVfnjaSbdwyHLlU7AVplb0WToOlvN1CnzIac=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:34:32 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"notf2xhcfb"},{"Name":"integrity","Value":"sha256-+UW802wgVfnjaSbdwyHLlU7AVplb0WToOlvN1CnzIac="},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.js"}]},{"Route":"lib/bootstrap/dist/js/bootstrap.notf2xhcfb.js.gz","AssetFile":"lib/bootstrap/dist/js/bootstrap.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"29568"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"vxTpQ/skdGaK1fWKJ6bpuKiCsKR5FwPOZXzuVrUcz58=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"notf2xhcfb"},{"Name":"integrity","Value":"sha256-vxTpQ/skdGaK1fWKJ6bpuKiCsKR5FwPOZXzuVrUcz58="},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.js.gz"}]}]} \ No newline at end of file diff --git a/src/dotnet/QuantEngine.Web/obj/Debug/net10.0/staticwebassets.build.json b/src/dotnet/QuantEngine.Web/obj/Debug/net10.0/staticwebassets.build.json new file mode 100644 index 0000000..39da8f6 --- /dev/null +++ b/src/dotnet/QuantEngine.Web/obj/Debug/net10.0/staticwebassets.build.json @@ -0,0 +1 @@ +{"Version":1,"Hash":"4LK/w2orh93WuWIoS6Q+AfrmJB/D8ueRfB9DooE9Vho=","Source":"QuantEngine.Web","BasePath":"/","Mode":"Root","ManifestType":"Build","ReferencedProjectsConfiguration":[],"DiscoveryPatterns":[{"Name":"QuantEngine.Web\\wwwroot","Source":"QuantEngine.Web","ContentRoot":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\","BasePath":"/","Pattern":"**"}],"Assets":[{"Identity":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\Components\\Layout\\ReconnectModal.razor.js","SourceId":"QuantEngine.Web","SourceType":"Discovered","ContentRoot":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\","BasePath":"/","RelativePath":"Components/Layout/ReconnectModal#[.{fingerprint}]?.razor.js","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"13ja33weya","Integrity":"4zGYCWZ4pfXdYacNs7XaH1BXGvludoT6JCkX9NZucgI=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"Components\\Layout\\ReconnectModal.razor.js","FileLength":2364,"LastWriteTime":"2026-06-25T06:34:32+00:00"},{"Identity":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Debug\\net10.0\\compressed\\0auc0xnlsy-{0}-jd9uben2k1-jd9uben2k1.gz","SourceId":"QuantEngine.Web","SourceType":"Discovered","ContentRoot":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css#[.{fingerprint=jd9uben2k1}]?.map.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-reboot.rtl.min.css.map","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"nzry3760zn","Integrity":"M4FJKHpyw4IJV5nzbfV0Vwvv60A8wkjnquz6IK029pA=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-reboot.rtl.min.css.map","FileLength":15095,"LastWriteTime":"2026-06-25T06:35:09+00:00"},{"Identity":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Debug\\net10.0\\compressed\\0p7lrldjgj-{0}-dxx9fxp4il-dxx9fxp4il.gz","SourceId":"QuantEngine.Web","SourceType":"Discovered","ContentRoot":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.min#[.{fingerprint=dxx9fxp4il}]?.css.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-reboot.rtl.min.css","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"cv8bd5rjwi","Integrity":"qNJnRAEMymFdtmi8gvc2VbVtDDk/UjeSnp+VQ10+cl0=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-reboot.rtl.min.css","FileLength":3246,"LastWriteTime":"2026-06-25T06:35:09+00:00"},{"Identity":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Debug\\net10.0\\compressed\\0x3oeluflx-{0}-jj8uyg4cgr-jj8uyg4cgr.gz","SourceId":"QuantEngine.Web","SourceType":"Discovered","ContentRoot":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"lib/bootstrap/dist/js/bootstrap.esm.min#[.{fingerprint=jj8uyg4cgr}]?.js.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\lib\\bootstrap\\dist\\js\\bootstrap.esm.min.js","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"erkthljg5u","Integrity":"WmNnoBgejwchZUYVA3o03QOAGOuMRS778DeXvhP6suo=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\lib\\bootstrap\\dist\\js\\bootstrap.esm.min.js","FileLength":18635,"LastWriteTime":"2026-06-25T06:35:09+00:00"},{"Identity":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Debug\\net10.0\\compressed\\110gjqadz3-{0}-ub07r2b239-ub07r2b239.gz","SourceId":"QuantEngine.Web","SourceType":"Discovered","ContentRoot":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"lib/bootstrap/dist/css/bootstrap-reboot#[.{fingerprint=ub07r2b239}]?.css.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-reboot.css","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"4tzbrq9c6f","Integrity":"+EIaQ03ZHgfVopnrJFjz7ZgQSAO9GeMOK+bzccTIQyE=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-reboot.css","FileLength":3380,"LastWriteTime":"2026-06-25T06:35:09+00:00"},{"Identity":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Debug\\net10.0\\compressed\\1xufxwh45d-{0}-cosvhxvwiu-cosvhxvwiu.gz","SourceId":"QuantEngine.Web","SourceType":"Discovered","ContentRoot":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css#[.{fingerprint=cosvhxvwiu}]?.map.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-grid.rtl.min.css.map","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"b3w75f5vch","Integrity":"yZDV5sXfkOihH9inqXh6D0ZmlFp3/eRZrXuPmmaGXhA=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-grid.rtl.min.css.map","FileLength":13829,"LastWriteTime":"2026-06-25T06:35:09+00:00"},{"Identity":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Debug\\net10.0\\compressed\\4072jq1i2h-{0}-46ein0sx1k-46ein0sx1k.gz","SourceId":"QuantEngine.Web","SourceType":"Discovered","ContentRoot":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"lib/bootstrap/dist/css/bootstrap.min#[.{fingerprint=46ein0sx1k}]?.css.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap.min.css","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"qdu3l469pp","Integrity":"ct6gh3bWPabPIUEmUcCXl7mxgr/V6roHfypeQaXerHU=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap.min.css","FileLength":30970,"LastWriteTime":"2026-06-25T06:35:09+00:00"},{"Identity":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Debug\\net10.0\\compressed\\44s2eqp64d-{0}-nvvlpmu67g-nvvlpmu67g.gz","SourceId":"QuantEngine.Web","SourceType":"Discovered","ContentRoot":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css#[.{fingerprint=nvvlpmu67g}]?.map.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-utilities.rtl.min.css.map","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"sh96df5cjm","Integrity":"cHE9/Oryzx3rvDz6rg6kwVAGdOFlXOCmBgU/SG5fJjA=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-utilities.rtl.min.css.map","FileLength":24308,"LastWriteTime":"2026-06-25T06:35:09+00:00"},{"Identity":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Debug\\net10.0\\compressed\\4cblaxq6jh-{0}-06098lyss8-06098lyss8.gz","SourceId":"QuantEngine.Web","SourceType":"Discovered","ContentRoot":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.min#[.{fingerprint=06098lyss8}]?.css.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-utilities.rtl.min.css","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"1dromj56xs","Integrity":"hXLxKxNQS6hkMWOc1Po5uxTK8ovzNg0xvRC9wMKOZiM=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-utilities.rtl.min.css","FileLength":11046,"LastWriteTime":"2026-06-25T06:35:09+00:00"},{"Identity":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Debug\\net10.0\\compressed\\61rmegrlmv-{0}-kbrnm935zg-kbrnm935zg.gz","SourceId":"QuantEngine.Web","SourceType":"Discovered","ContentRoot":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"lib/bootstrap/dist/js/bootstrap.esm.js#[.{fingerprint=kbrnm935zg}]?.map.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\lib\\bootstrap\\dist\\js\\bootstrap.esm.js.map","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"09larch0sh","Integrity":"FEVLoM8EBjBfNDxtN98NEdEJHpCjMxcAkjqPlv3oXEc=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\lib\\bootstrap\\dist\\js\\bootstrap.esm.js.map","FileLength":64134,"LastWriteTime":"2026-06-25T06:35:09+00:00"},{"Identity":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Debug\\net10.0\\compressed\\79raj0bcrr-{0}-r4e9w2rdcm-r4e9w2rdcm.gz","SourceId":"QuantEngine.Web","SourceType":"Discovered","ContentRoot":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"lib/bootstrap/dist/css/bootstrap-utilities.css#[.{fingerprint=r4e9w2rdcm}]?.map.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-utilities.css.map","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"xl5q2t2qh8","Integrity":"G+vjiEeP6kST5cIl0dMgkpqYVHtGzW2FoEEhPm8uXFQ=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-utilities.css.map","FileLength":44124,"LastWriteTime":"2026-06-25T06:35:09+00:00"},{"Identity":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Debug\\net10.0\\compressed\\8q9g0t5yrl-{0}-0j3bgjxly4-0j3bgjxly4.gz","SourceId":"QuantEngine.Web","SourceType":"Discovered","ContentRoot":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"lib/bootstrap/dist/js/bootstrap.min.js#[.{fingerprint=0j3bgjxly4}]?.map.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\lib\\bootstrap\\dist\\js\\bootstrap.min.js.map","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"6bewb6sjbi","Integrity":"jqz3zWDVmly0HcVfO6RQ1Ew/6DCbF9EVmEe2DJdcW6Y=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\lib\\bootstrap\\dist\\js\\bootstrap.min.js.map","FileLength":55850,"LastWriteTime":"2026-06-25T06:35:09+00:00"},{"Identity":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Debug\\net10.0\\compressed\\a1937s5xj1-{0}-notf2xhcfb-notf2xhcfb.gz","SourceId":"QuantEngine.Web","SourceType":"Discovered","ContentRoot":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"lib/bootstrap/dist/js/bootstrap#[.{fingerprint=notf2xhcfb}]?.js.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\lib\\bootstrap\\dist\\js\\bootstrap.js","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"t5fact64or","Integrity":"vxTpQ/skdGaK1fWKJ6bpuKiCsKR5FwPOZXzuVrUcz58=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\lib\\bootstrap\\dist\\js\\bootstrap.js","FileLength":29568,"LastWriteTime":"2026-06-25T06:35:09+00:00"},{"Identity":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Debug\\net10.0\\compressed\\a4eqfiv3ub-{0}-v0zj4ognzu-v0zj4ognzu.gz","SourceId":"QuantEngine.Web","SourceType":"Discovered","ContentRoot":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"lib/bootstrap/dist/css/bootstrap.min.css#[.{fingerprint=v0zj4ognzu}]?.map.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap.min.css.map","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"ofsc0aqs07","Integrity":"9CI2KGakklFWR2ih9heBHyKNfnUGsALtlWASIJRc25A=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap.min.css.map","FileLength":91823,"LastWriteTime":"2026-06-25T06:35:09+00:00"},{"Identity":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Debug\\net10.0\\compressed\\a7rq2yiqop-{0}-h1s4sie4z3-h1s4sie4z3.gz","SourceId":"QuantEngine.Web","SourceType":"Discovered","ContentRoot":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"lib/bootstrap/dist/js/bootstrap.js#[.{fingerprint=h1s4sie4z3}]?.map.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\lib\\bootstrap\\dist\\js\\bootstrap.js.map","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"0qg1e9lysy","Integrity":"6GxMyK5YAexwvliYNqeiH6oCqjjSdf0iOFokuntpNcU=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\lib\\bootstrap\\dist\\js\\bootstrap.js.map","FileLength":64434,"LastWriteTime":"2026-06-25T06:35:09+00:00"},{"Identity":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Debug\\net10.0\\compressed\\b7jn6yc0gz-{0}-yi314np04p-yi314np04p.gz","SourceId":"QuantEngine.Web","SourceType":"Computed","ContentRoot":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"QuantEngine.Web#[.{fingerprint=yi314np04p}]?.styles.css.gz","AssetKind":"All","AssetMode":"CurrentProject","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Debug\\net10.0\\scopedcss\\bundle\\QuantEngine.Web.styles.css","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"snvxky03e7","Integrity":"eMUoaz34S9P8ffguerv/SxXWfTBS7zv7kXrquS2C5EE=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Debug\\net10.0\\scopedcss\\bundle\\QuantEngine.Web.styles.css","FileLength":2481,"LastWriteTime":"2026-06-25T06:35:09+00:00"},{"Identity":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Debug\\net10.0\\compressed\\buy0lgnna4-{0}-ausgxo2sd3-ausgxo2sd3.gz","SourceId":"QuantEngine.Web","SourceType":"Discovered","ContentRoot":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"lib/bootstrap/dist/css/bootstrap-grid.rtl.css#[.{fingerprint=ausgxo2sd3}]?.map.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-grid.rtl.css.map","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"vo1c50q1ou","Integrity":"cWfRgogdfOCr54Ae/lxY515FP4TJyUwc4Ae6uejBPI0=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-grid.rtl.css.map","FileLength":32793,"LastWriteTime":"2026-06-25T06:35:09+00:00"},{"Identity":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Debug\\net10.0\\compressed\\c34v41vs4l-{0}-ee0r1s7dh0-ee0r1s7dh0.gz","SourceId":"QuantEngine.Web","SourceType":"Discovered","ContentRoot":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.css#[.{fingerprint=ee0r1s7dh0}]?.map.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-reboot.rtl.css.map","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"uoletomx83","Integrity":"sl2J4PyaPSvjqR/Hna2zAWkp1RoiFiSsNBf28UxmegA=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-reboot.rtl.css.map","FileLength":25833,"LastWriteTime":"2026-06-25T06:35:09+00:00"},{"Identity":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Debug\\net10.0\\compressed\\dd5v02aqjc-{0}-vr1egmr9el-vr1egmr9el.gz","SourceId":"QuantEngine.Web","SourceType":"Discovered","ContentRoot":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"lib/bootstrap/dist/js/bootstrap.esm#[.{fingerprint=vr1egmr9el}]?.js.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\lib\\bootstrap\\dist\\js\\bootstrap.esm.js","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"ewj29n48yh","Integrity":"wol+HTj/xiv1aZ5rAh91hRF83nnYHIOeqPJDujYZBV4=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\lib\\bootstrap\\dist\\js\\bootstrap.esm.js","FileLength":28851,"LastWriteTime":"2026-06-25T06:35:09+00:00"},{"Identity":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Debug\\net10.0\\compressed\\dgr8mv739g-{0}-bqjiyaj88i-bqjiyaj88i.gz","SourceId":"QuantEngine.Web","SourceType":"Discovered","ContentRoot":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"lib/bootstrap/dist/css/bootstrap-grid#[.{fingerprint=bqjiyaj88i}]?.css.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-grid.css","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"yf1pcrzlgs","Integrity":"jhvPrvWZn8BbeR49W+r+MLNcnTeFyaSXxry9n1ctwy4=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-grid.css","FileLength":6745,"LastWriteTime":"2026-06-25T06:35:09+00:00"},{"Identity":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Debug\\net10.0\\compressed\\dt9lb9me9i-{0}-tdbxkamptv-tdbxkamptv.gz","SourceId":"QuantEngine.Web","SourceType":"Discovered","ContentRoot":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"lib/bootstrap/dist/css/bootstrap-utilities.rtl#[.{fingerprint=tdbxkamptv}]?.css.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-utilities.rtl.css","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"c9nucnnawf","Integrity":"QAnDcxiLhrclwEVeKtd/GREdZNbXO2rZP5agorcS5EM=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-utilities.rtl.css","FileLength":11933,"LastWriteTime":"2026-06-25T06:35:09+00:00"},{"Identity":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Debug\\net10.0\\compressed\\dym80g6kqp-{0}-u1n4jc5v46-u1n4jc5v46.gz","SourceId":"QuantEngine.Web","SourceType":"Discovered","ContentRoot":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/blazor.server#[.{fingerprint=u1n4jc5v46}]?.js.gz","AssetKind":"All","AssetMode":"CurrentProject","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"C:\\Users\\kjh20\\.nuget\\packages\\microsoft.aspnetcore.app.internal.assets\\10.0.0\\_framework\\blazor.server.js","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"2xzbvrtzq9","Integrity":"ahpIOLaxXwiWnLDSFUZfwZMfRrULpAls7jR+KeVK4ic=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"C:\\Users\\kjh20\\.nuget\\packages\\microsoft.aspnetcore.app.internal.assets\\10.0.0\\_framework\\blazor.server.js","FileLength":44654,"LastWriteTime":"2026-06-25T06:35:09+00:00"},{"Identity":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Debug\\net10.0\\compressed\\gcxof6xqvd-{0}-s35ty4nyc5-s35ty4nyc5.gz","SourceId":"QuantEngine.Web","SourceType":"Discovered","ContentRoot":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"lib/bootstrap/dist/css/bootstrap#[.{fingerprint=s35ty4nyc5}]?.css.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap.css","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"q82kg63fyj","Integrity":"pt+WNxTLLUqq6vRWwSTT2gtyBZCFg8ZA7nmeS+5+Z/s=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap.css","FileLength":33258,"LastWriteTime":"2026-06-25T06:35:09+00:00"},{"Identity":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Debug\\net10.0\\compressed\\gfm26p5c1q-{0}-6pdc2jztkx-6pdc2jztkx.gz","SourceId":"QuantEngine.Web","SourceType":"Discovered","ContentRoot":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"lib/bootstrap/dist/js/bootstrap.bundle.js#[.{fingerprint=6pdc2jztkx}]?.map.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\lib\\bootstrap\\dist\\js\\bootstrap.bundle.js.map","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"teo9u7j6tg","Integrity":"1e0S5mPPo/9Qad4mnR2UVH1bu8Tevi6r+JvHAAykgfg=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\lib\\bootstrap\\dist\\js\\bootstrap.bundle.js.map","FileLength":92072,"LastWriteTime":"2026-06-25T06:35:09+00:00"},{"Identity":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Debug\\net10.0\\compressed\\gomvvqnjlm-{0}-rzd6atqjts-rzd6atqjts.gz","SourceId":"QuantEngine.Web","SourceType":"Discovered","ContentRoot":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"lib/bootstrap/dist/css/bootstrap-reboot.rtl#[.{fingerprint=rzd6atqjts}]?.css.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-reboot.rtl.css","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"ukcr8jbv0r","Integrity":"bhwmNaLC/7dOUfZxpXsnreiNsp2lbllRXrZLXndYFgA=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-reboot.rtl.css","FileLength":3367,"LastWriteTime":"2026-06-25T06:35:09+00:00"},{"Identity":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Debug\\net10.0\\compressed\\h7pf8rqo63-{0}-y7v9cxd14o-y7v9cxd14o.gz","SourceId":"QuantEngine.Web","SourceType":"Discovered","ContentRoot":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"lib/bootstrap/dist/js/bootstrap.esm.min.js#[.{fingerprint=y7v9cxd14o}]?.map.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\lib\\bootstrap\\dist\\js\\bootstrap.esm.min.js.map","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"fgg5tvzes2","Integrity":"j6u/zn+GRIVR7DjCioj3tkq2zAKNpSIfRdlNSkhuWuM=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\lib\\bootstrap\\dist\\js\\bootstrap.esm.min.js.map","FileLength":56670,"LastWriteTime":"2026-06-25T06:35:09+00:00"},{"Identity":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Debug\\net10.0\\compressed\\i5gc3220r3-{0}-b7pk76d08c-b7pk76d08c.gz","SourceId":"QuantEngine.Web","SourceType":"Discovered","ContentRoot":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"lib/bootstrap/dist/css/bootstrap-reboot.min#[.{fingerprint=b7pk76d08c}]?.css.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-reboot.min.css","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"r79n6nskqp","Integrity":"Z9B/f6Ax/2JeBbNo3F1oaFvmOzRvs3yS0nnykt272Wc=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-reboot.min.css","FileLength":3213,"LastWriteTime":"2026-06-25T06:35:09+00:00"},{"Identity":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Debug\\net10.0\\compressed\\jomvpxly64-{0}-hrwsygsryq-hrwsygsryq.gz","SourceId":"QuantEngine.Web","SourceType":"Discovered","ContentRoot":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"lib/bootstrap/dist/css/bootstrap.rtl.css#[.{fingerprint=hrwsygsryq}]?.map.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap.rtl.css.map","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"n9eqbjfi82","Integrity":"u1Hpz3sxsOpr+ltBsyKbue1Mz8VL9c8goySlIAwPCh8=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap.rtl.css.map","FileLength":114959,"LastWriteTime":"2026-06-25T06:35:09+00:00"},{"Identity":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Debug\\net10.0\\compressed\\jqrauj2svw-{0}-lcd1t2u6c8-lcd1t2u6c8.gz","SourceId":"QuantEngine.Web","SourceType":"Discovered","ContentRoot":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"lib/bootstrap/dist/css/bootstrap-utilities.min#[.{fingerprint=lcd1t2u6c8}]?.css.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-utilities.min.css","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"iqwesyid6h","Integrity":"xp5LPZ0vlqmxQrG+KjPm7ijhhJ+gD7VeH35lOUwBTWM=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-utilities.min.css","FileLength":11063,"LastWriteTime":"2026-06-25T06:35:09+00:00"},{"Identity":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Debug\\net10.0\\compressed\\l0f1c41wbh-{0}-c2jlpeoesf-c2jlpeoesf.gz","SourceId":"QuantEngine.Web","SourceType":"Discovered","ContentRoot":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"lib/bootstrap/dist/css/bootstrap-grid.css#[.{fingerprint=c2jlpeoesf}]?.map.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-grid.css.map","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"goh6yfn9uv","Integrity":"ALPf6qsZMu+Ui8l8jPJJF3MhTcq6uwrQhRWeWJL4ixU=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-grid.css.map","FileLength":32794,"LastWriteTime":"2026-06-25T06:35:09+00:00"},{"Identity":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Debug\\net10.0\\compressed\\lwh7ckeki7-{0}-j5mq2jizvt-j5mq2jizvt.gz","SourceId":"QuantEngine.Web","SourceType":"Discovered","ContentRoot":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.css#[.{fingerprint=j5mq2jizvt}]?.map.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-utilities.rtl.css.map","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"7tueh08f2r","Integrity":"e4SKSeUBYAMQYk9aT6NqaEr3vUfkTqZB8L0KIC7EPak=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-utilities.rtl.css.map","FileLength":44097,"LastWriteTime":"2026-06-25T06:35:09+00:00"},{"Identity":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Debug\\net10.0\\compressed\\moveir2wlt-{0}-fvhpjtyr6v-fvhpjtyr6v.gz","SourceId":"QuantEngine.Web","SourceType":"Discovered","ContentRoot":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"lib/bootstrap/dist/css/bootstrap-reboot.css#[.{fingerprint=fvhpjtyr6v}]?.map.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-reboot.css.map","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"a7s6g2nqt8","Integrity":"uuPRBE+KJ7rhQC/ul/m33YS7RxoQPGY3ZcuTz6+ooTc=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-reboot.css.map","FileLength":25822,"LastWriteTime":"2026-06-25T06:35:09+00:00"},{"Identity":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Debug\\net10.0\\compressed\\nr5locadir-{0}-j8lzlu28q6-j8lzlu28q6.gz","SourceId":"QuantEngine.Web","SourceType":"Discovered","ContentRoot":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/blazor.web#[.{fingerprint=j8lzlu28q6}]?.js.gz","AssetKind":"All","AssetMode":"CurrentProject","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"C:\\Users\\kjh20\\.nuget\\packages\\microsoft.aspnetcore.app.internal.assets\\10.0.0\\_framework\\blazor.web.js","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"emvxm763pk","Integrity":"VpDUbLuhAgB3D8PnpAYA58cbpiNNGy8iNBvD6LMHxhs=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"C:\\Users\\kjh20\\.nuget\\packages\\microsoft.aspnetcore.app.internal.assets\\10.0.0\\_framework\\blazor.web.js","FileLength":55629,"LastWriteTime":"2026-06-25T06:35:09+00:00"},{"Identity":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Debug\\net10.0\\compressed\\ny3xbgedo0-{0}-erw9l3u2r3-erw9l3u2r3.gz","SourceId":"QuantEngine.Web","SourceType":"Discovered","ContentRoot":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"lib/bootstrap/dist/css/bootstrap-grid.min#[.{fingerprint=erw9l3u2r3}]?.css.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-grid.min.css","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"ff2i3b225l","Integrity":"y2vSlIdcL+ImKFhcBMT5ujdAP1cyOZlHZK434Aiu0KA=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-grid.min.css","FileLength":5969,"LastWriteTime":"2026-06-25T06:35:09+00:00"},{"Identity":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Debug\\net10.0\\compressed\\oog3rser0x-{0}-iovd86k7lj-iovd86k7lj.gz","SourceId":"QuantEngine.Web","SourceType":"Discovered","ContentRoot":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"lib/bootstrap/dist/js/bootstrap.bundle.min.js#[.{fingerprint=iovd86k7lj}]?.map.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\lib\\bootstrap\\dist\\js\\bootstrap.bundle.min.js.map","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"ffl9ue03p7","Integrity":"u2o8ZZaXgiYQGBSiviq197ts6elMTLIFCM5h/r+YzpI=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\lib\\bootstrap\\dist\\js\\bootstrap.bundle.min.js.map","FileLength":86961,"LastWriteTime":"2026-06-25T06:35:09+00:00"},{"Identity":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Debug\\net10.0\\compressed\\pbeu27ik9w-{0}-khv3u5hwcm-khv3u5hwcm.gz","SourceId":"QuantEngine.Web","SourceType":"Discovered","ContentRoot":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"lib/bootstrap/dist/css/bootstrap-utilities#[.{fingerprint=khv3u5hwcm}]?.css.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-utilities.css","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"bub42mguo1","Integrity":"8+5oxr92QYcYeV3zAk8RS4XmZo6Y5i3ZmbiJXj9KVQo=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-utilities.css","FileLength":11991,"LastWriteTime":"2026-06-25T06:35:09+00:00"},{"Identity":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Debug\\net10.0\\compressed\\pj5n2mkkzw-{0}-c2oey78nd0-c2oey78nd0.gz","SourceId":"QuantEngine.Web","SourceType":"Discovered","ContentRoot":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"lib/bootstrap/dist/css/bootstrap-utilities.min.css#[.{fingerprint=c2oey78nd0}]?.map.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-utilities.min.css.map","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"x3ccebqzaz","Integrity":"TQK1gkY5TwZe0PcEU9oPCPHWKcNR7OXqgO0AeBYCb3U=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-utilities.min.css.map","FileLength":24352,"LastWriteTime":"2026-06-25T06:35:09+00:00"},{"Identity":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Debug\\net10.0\\compressed\\q2w3mddmwi-{0}-4c8rkwezul-4c8rkwezul.gz","SourceId":"QuantEngine.Web","SourceType":"Discovered","ContentRoot":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"app#[.{fingerprint=4c8rkwezul}]?.css.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\app.css","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"231480yupm","Integrity":"gnkzj8DwujHnit2MwKgV6YdKLWzKFbNT467LEBsdMTs=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\app.css","FileLength":1863,"LastWriteTime":"2026-06-25T06:51:47+00:00"},{"Identity":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Debug\\net10.0\\compressed\\rftpckz71e-{0}-k8d9w2qqmf-k8d9w2qqmf.gz","SourceId":"QuantEngine.Web","SourceType":"Discovered","ContentRoot":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"lib/bootstrap/dist/css/bootstrap-grid.rtl.min#[.{fingerprint=k8d9w2qqmf}]?.css.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-grid.rtl.min.css","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"2yj3hsx47l","Integrity":"ujhFfu7SIw4cL8FWI0ezmD29C7bGSesJvlEcySm5beY=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-grid.rtl.min.css","FileLength":5971,"LastWriteTime":"2026-06-25T06:35:09+00:00"},{"Identity":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Debug\\net10.0\\compressed\\rg0bjkw6wb-{0}-37tfw0ft22-37tfw0ft22.gz","SourceId":"QuantEngine.Web","SourceType":"Discovered","ContentRoot":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"lib/bootstrap/dist/css/bootstrap.rtl#[.{fingerprint=37tfw0ft22}]?.css.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap.rtl.css","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"mefuw9cu11","Integrity":"fs1OjihDYC1UL3EjGsC/xVxgtu8ombjnF8kOmQxQ+Mo=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap.rtl.css","FileLength":33108,"LastWriteTime":"2026-06-25T06:35:09+00:00"},{"Identity":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Debug\\net10.0\\compressed\\ryegp6ubqi-{0}-6cfz1n2cew-6cfz1n2cew.gz","SourceId":"QuantEngine.Web","SourceType":"Discovered","ContentRoot":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"lib/bootstrap/dist/js/bootstrap.bundle#[.{fingerprint=6cfz1n2cew}]?.js.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\lib\\bootstrap\\dist\\js\\bootstrap.bundle.js","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"xq6bctm6a0","Integrity":"FwlVZHaqt/fCokCRPrJXpP3g8Xz8yowIwHYza63e5sA=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\lib\\bootstrap\\dist\\js\\bootstrap.bundle.js","FileLength":44353,"LastWriteTime":"2026-06-25T06:35:09+00:00"},{"Identity":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Debug\\net10.0\\compressed\\s45yklcy5s-{0}-ft3s53vfgj-ft3s53vfgj.gz","SourceId":"QuantEngine.Web","SourceType":"Discovered","ContentRoot":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"lib/bootstrap/dist/css/bootstrap.rtl.min.css#[.{fingerprint=ft3s53vfgj}]?.map.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap.rtl.min.css.map","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"57zd6ih4o4","Integrity":"j64rFxRLhZHmUPsE/gjIPruUNUfXs1ivjm1eS9HMeoo=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap.rtl.min.css.map","FileLength":91715,"LastWriteTime":"2026-06-25T06:35:09+00:00"},{"Identity":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Debug\\net10.0\\compressed\\s8tfmvcl6l-{0}-d7shbmvgxk-d7shbmvgxk.gz","SourceId":"QuantEngine.Web","SourceType":"Discovered","ContentRoot":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"lib/bootstrap/dist/css/bootstrap-grid.rtl#[.{fingerprint=d7shbmvgxk}]?.css.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-grid.rtl.css","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"td9xh3ux7u","Integrity":"P5V7Xl3ceCLw6wDeOyAezE6gOa9re3B7gTUN/H/cDsY=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-grid.rtl.css","FileLength":6749,"LastWriteTime":"2026-06-25T06:35:09+00:00"},{"Identity":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Debug\\net10.0\\compressed\\t9yb5ynpxl-{0}-13ja33weya-13ja33weya.gz","SourceId":"QuantEngine.Web","SourceType":"Discovered","ContentRoot":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"Components/Layout/ReconnectModal#[.{fingerprint=13ja33weya}]?.razor.js.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\Components\\Layout\\ReconnectModal.razor.js","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"7yymvlbkex","Integrity":"kQLxn+TSoZvHHUJJnDORp3qKU0F+kzVxLQB9TB0aEoY=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\Components\\Layout\\ReconnectModal.razor.js","FileLength":720,"LastWriteTime":"2026-06-25T06:35:09+00:00"},{"Identity":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Debug\\net10.0\\compressed\\u4l44l4mup-{0}-pk9g2wxc8p-pk9g2wxc8p.gz","SourceId":"QuantEngine.Web","SourceType":"Discovered","ContentRoot":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"lib/bootstrap/dist/css/bootstrap.rtl.min#[.{fingerprint=pk9g2wxc8p}]?.css.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap.rtl.min.css","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"zqhq0cwegi","Integrity":"WwwE+3A7x1trge8XZeN9oKwkvd6mA0Oad5mAbTfmMtQ=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap.rtl.min.css","FileLength":30992,"LastWriteTime":"2026-06-25T06:35:09+00:00"},{"Identity":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Debug\\net10.0\\compressed\\vpvw6nj9ax-{0}-yi314np04p-yi314np04p.gz","SourceId":"QuantEngine.Web","SourceType":"Computed","ContentRoot":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"QuantEngine.Web#[.{fingerprint=yi314np04p}]!.bundle.scp.css.gz","AssetKind":"All","AssetMode":"Reference","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Debug\\net10.0\\scopedcss\\projectbundle\\QuantEngine.Web.bundle.scp.css","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"snvxky03e7","Integrity":"eMUoaz34S9P8ffguerv/SxXWfTBS7zv7kXrquS2C5EE=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Debug\\net10.0\\scopedcss\\projectbundle\\QuantEngine.Web.bundle.scp.css","FileLength":2481,"LastWriteTime":"2026-06-25T06:35:09+00:00"},{"Identity":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Debug\\net10.0\\compressed\\wh1z5habmz-{0}-493y06b0oq-493y06b0oq.gz","SourceId":"QuantEngine.Web","SourceType":"Discovered","ContentRoot":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"lib/bootstrap/dist/js/bootstrap.bundle.min#[.{fingerprint=493y06b0oq}]?.js.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\lib\\bootstrap\\dist\\js\\bootstrap.bundle.min.js","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"9t6fi9687k","Integrity":"PUb7rj1jLHgIo7Hwm3lvukBcGKDry7n7W2fa1xrz+zY=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\lib\\bootstrap\\dist\\js\\bootstrap.bundle.min.js","FileLength":23984,"LastWriteTime":"2026-06-25T06:35:09+00:00"},{"Identity":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Debug\\net10.0\\compressed\\xhunqdkvqb-{0}-fsbi9cje9m-fsbi9cje9m.gz","SourceId":"QuantEngine.Web","SourceType":"Discovered","ContentRoot":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"lib/bootstrap/dist/css/bootstrap-reboot.min.css#[.{fingerprint=fsbi9cje9m}]?.map.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-reboot.min.css.map","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"1zet6b707b","Integrity":"88yfwCB1JJrw5DzTwttuDUNRg1MC/QUUovOQTnyxGHA=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-reboot.min.css.map","FileLength":12586,"LastWriteTime":"2026-06-25T06:35:09+00:00"},{"Identity":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Debug\\net10.0\\compressed\\ykh8zi7pka-{0}-63fj8s7r0e-63fj8s7r0e.gz","SourceId":"QuantEngine.Web","SourceType":"Discovered","ContentRoot":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"lib/bootstrap/dist/js/bootstrap.min#[.{fingerprint=63fj8s7r0e}]?.js.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\lib\\bootstrap\\dist\\js\\bootstrap.min.js","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"on09t9pmch","Integrity":"bIPgOT88ycSklHWxEzFQVPvNsgNbss3QQbyTqHho4PA=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\lib\\bootstrap\\dist\\js\\bootstrap.min.js","FileLength":16636,"LastWriteTime":"2026-06-25T06:35:09+00:00"},{"Identity":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Debug\\net10.0\\compressed\\yyzux970us-{0}-aexeepp0ev-aexeepp0ev.gz","SourceId":"QuantEngine.Web","SourceType":"Discovered","ContentRoot":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"lib/bootstrap/dist/css/bootstrap-grid.min.css#[.{fingerprint=aexeepp0ev}]?.map.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-grid.min.css.map","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"vsujj85h0t","Integrity":"UTpk2w6Qfw+RUZtUsUuWDVrQXTEdgzIWiLHb7gDcZZc=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-grid.min.css.map","FileLength":13822,"LastWriteTime":"2026-06-25T06:35:09+00:00"},{"Identity":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Debug\\net10.0\\compressed\\z9wv7fs72k-{0}-pj5nd1wqec-pj5nd1wqec.gz","SourceId":"QuantEngine.Web","SourceType":"Discovered","ContentRoot":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"lib/bootstrap/dist/css/bootstrap.css#[.{fingerprint=pj5nd1wqec}]?.map.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap.css.map","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"styftcjj6c","Integrity":"8MRqubXMeZHymG3Y+Uqns/oONNVcvUoxMPBYRNZmiNs=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap.css.map","FileLength":115016,"LastWriteTime":"2026-06-25T06:35:09+00:00"},{"Identity":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Debug\\net10.0\\scopedcss\\bundle\\QuantEngine.Web.styles.css","SourceId":"QuantEngine.Web","SourceType":"Computed","ContentRoot":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Debug\\net10.0\\scopedcss\\bundle\\","BasePath":"/","RelativePath":"QuantEngine.Web#[.{fingerprint}]?.styles.css","AssetKind":"All","AssetMode":"CurrentProject","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"ScopedCss","AssetTraitValue":"ApplicationBundle","Fingerprint":"yi314np04p","Integrity":"GphsPL5Q7m5g2Ugk7RGmBY019LEDJjdfaTE9uXiHMcs=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Debug\\net10.0\\scopedcss\\bundle\\QuantEngine.Web.styles.css","FileLength":10327,"LastWriteTime":"2026-06-25T06:35:09+00:00"},{"Identity":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Debug\\net10.0\\scopedcss\\projectbundle\\QuantEngine.Web.bundle.scp.css","SourceId":"QuantEngine.Web","SourceType":"Computed","ContentRoot":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Debug\\net10.0\\scopedcss\\projectbundle\\","BasePath":"/","RelativePath":"QuantEngine.Web#[.{fingerprint}]!.bundle.scp.css","AssetKind":"All","AssetMode":"Reference","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"ScopedCss","AssetTraitValue":"ProjectBundle","Fingerprint":"yi314np04p","Integrity":"GphsPL5Q7m5g2Ugk7RGmBY019LEDJjdfaTE9uXiHMcs=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Debug\\net10.0\\scopedcss\\projectbundle\\QuantEngine.Web.bundle.scp.css","FileLength":10327,"LastWriteTime":"2026-06-25T06:35:09+00:00"},{"Identity":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\app.css","SourceId":"QuantEngine.Web","SourceType":"Discovered","ContentRoot":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\","BasePath":"/","RelativePath":"app#[.{fingerprint}]?.css","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"4c8rkwezul","Integrity":"9BYQ1DEYdSZH7MBG7AQ28+OVGYKziE5nCfTTJOiedPU=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot\\app.css","FileLength":6554,"LastWriteTime":"2026-06-25T06:50:05+00:00"},{"Identity":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\favicon.png","SourceId":"QuantEngine.Web","SourceType":"Discovered","ContentRoot":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\","BasePath":"/","RelativePath":"favicon#[.{fingerprint}]?.png","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"ifv42okdf2","Integrity":"4mWsDy3aHl36ZbGt8zByK7Pvd4kRUoNgTYzRnwmPHwg=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot\\favicon.png","FileLength":1148,"LastWriteTime":"2026-06-25T06:34:31+00:00"},{"Identity":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-grid.css","SourceId":"QuantEngine.Web","SourceType":"Discovered","ContentRoot":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\","BasePath":"/","RelativePath":"lib/bootstrap/dist/css/bootstrap-grid#[.{fingerprint}]?.css","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"bqjiyaj88i","Integrity":"Yy5/hBqRmmU2MJ1TKwP2aXoTO6+OjzrLmJIsC2Wy4H8=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-grid.css","FileLength":70329,"LastWriteTime":"2026-06-25T06:34:31+00:00"},{"Identity":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-grid.css.map","SourceId":"QuantEngine.Web","SourceType":"Discovered","ContentRoot":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\","BasePath":"/","RelativePath":"lib/bootstrap/dist/css/bootstrap-grid.css#[.{fingerprint}]?.map","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"c2jlpeoesf","Integrity":"xAT+n25FE5hvOjj2fG4YdOwr1bl4IlAJBNg6PbhLT2E=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-grid.css.map","FileLength":203221,"LastWriteTime":"2026-06-25T06:34:31+00:00"},{"Identity":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-grid.min.css","SourceId":"QuantEngine.Web","SourceType":"Discovered","ContentRoot":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\","BasePath":"/","RelativePath":"lib/bootstrap/dist/css/bootstrap-grid.min#[.{fingerprint}]?.css","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"erw9l3u2r3","Integrity":"5nDHMGiyfZHl3UXePuhLDQR9ncPfBR1HJeZLXyJNV24=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-grid.min.css","FileLength":51795,"LastWriteTime":"2026-06-25T06:34:31+00:00"},{"Identity":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-grid.min.css.map","SourceId":"QuantEngine.Web","SourceType":"Discovered","ContentRoot":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\","BasePath":"/","RelativePath":"lib/bootstrap/dist/css/bootstrap-grid.min.css#[.{fingerprint}]?.map","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"aexeepp0ev","Integrity":"kgL+xwVmM8IOs15lnoHt9daR2LRMiBG/cYgUPcKQOY4=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-grid.min.css.map","FileLength":115986,"LastWriteTime":"2026-06-25T06:34:31+00:00"},{"Identity":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-grid.rtl.css","SourceId":"QuantEngine.Web","SourceType":"Discovered","ContentRoot":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\","BasePath":"/","RelativePath":"lib/bootstrap/dist/css/bootstrap-grid.rtl#[.{fingerprint}]?.css","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"d7shbmvgxk","Integrity":"CZxoF8zjaLlyVkcvVCDlc8CeQR1w1RMrvgYx30cs8kM=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-grid.rtl.css","FileLength":70403,"LastWriteTime":"2026-06-25T06:34:31+00:00"},{"Identity":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-grid.rtl.css.map","SourceId":"QuantEngine.Web","SourceType":"Discovered","ContentRoot":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\","BasePath":"/","RelativePath":"lib/bootstrap/dist/css/bootstrap-grid.rtl.css#[.{fingerprint}]?.map","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"ausgxo2sd3","Integrity":"/siQUA8yX830j+cL4amKHY3yBtn3n8z3Eg+VZ15f90k=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-grid.rtl.css.map","FileLength":203225,"LastWriteTime":"2026-06-25T06:34:31+00:00"},{"Identity":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-grid.rtl.min.css","SourceId":"QuantEngine.Web","SourceType":"Discovered","ContentRoot":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\","BasePath":"/","RelativePath":"lib/bootstrap/dist/css/bootstrap-grid.rtl.min#[.{fingerprint}]?.css","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"k8d9w2qqmf","Integrity":"vMxTcvkC4Ly7LiAT3G8yEy9EpTr7Fge4SczWp07/p3k=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-grid.rtl.min.css","FileLength":51870,"LastWriteTime":"2026-06-25T06:34:31+00:00"},{"Identity":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-grid.rtl.min.css.map","SourceId":"QuantEngine.Web","SourceType":"Discovered","ContentRoot":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\","BasePath":"/","RelativePath":"lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css#[.{fingerprint}]?.map","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"cosvhxvwiu","Integrity":"7GdOlw7U/wgyaeUtFmxPz5/MphdvVSPtVOOlTn9c33Q=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-grid.rtl.min.css.map","FileLength":116063,"LastWriteTime":"2026-06-25T06:34:31+00:00"},{"Identity":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-reboot.css","SourceId":"QuantEngine.Web","SourceType":"Discovered","ContentRoot":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\","BasePath":"/","RelativePath":"lib/bootstrap/dist/css/bootstrap-reboot#[.{fingerprint}]?.css","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"ub07r2b239","Integrity":"lo9YI82OF03vojdu+XOR3+DRrLIpMhpzZNmHbM5CDMA=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-reboot.css","FileLength":12065,"LastWriteTime":"2026-06-25T06:34:31+00:00"},{"Identity":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-reboot.css.map","SourceId":"QuantEngine.Web","SourceType":"Discovered","ContentRoot":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\","BasePath":"/","RelativePath":"lib/bootstrap/dist/css/bootstrap-reboot.css#[.{fingerprint}]?.map","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"fvhpjtyr6v","Integrity":"RXJ/QZiBfHXoPtXR2EgC+bFo2pe3GtbZO722RtiLGzQ=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-reboot.css.map","FileLength":129371,"LastWriteTime":"2026-06-25T06:34:31+00:00"},{"Identity":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-reboot.min.css","SourceId":"QuantEngine.Web","SourceType":"Discovered","ContentRoot":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\","BasePath":"/","RelativePath":"lib/bootstrap/dist/css/bootstrap-reboot.min#[.{fingerprint}]?.css","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"b7pk76d08c","Integrity":"l8vt5oozv958eMd9TFsPAWgl9JJK9YKfbVSs8mchQ84=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-reboot.min.css","FileLength":10126,"LastWriteTime":"2026-06-25T06:34:31+00:00"},{"Identity":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-reboot.min.css.map","SourceId":"QuantEngine.Web","SourceType":"Discovered","ContentRoot":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\","BasePath":"/","RelativePath":"lib/bootstrap/dist/css/bootstrap-reboot.min.css#[.{fingerprint}]?.map","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"fsbi9cje9m","Integrity":"0eqVT62kqRLJh9oTqLeIH4UnQskqVjib8hl2fXxl4lg=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-reboot.min.css.map","FileLength":51369,"LastWriteTime":"2026-06-25T06:34:31+00:00"},{"Identity":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-reboot.rtl.css","SourceId":"QuantEngine.Web","SourceType":"Discovered","ContentRoot":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\","BasePath":"/","RelativePath":"lib/bootstrap/dist/css/bootstrap-reboot.rtl#[.{fingerprint}]?.css","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"rzd6atqjts","Integrity":"V8psnHoJS/MPlCXWwc/J3tGtp9c3gGFRmqsIQgpn+Gg=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-reboot.rtl.css","FileLength":12058,"LastWriteTime":"2026-06-25T06:34:31+00:00"},{"Identity":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-reboot.rtl.css.map","SourceId":"QuantEngine.Web","SourceType":"Discovered","ContentRoot":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\","BasePath":"/","RelativePath":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.css#[.{fingerprint}]?.map","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"ee0r1s7dh0","Integrity":"OoQVwh7Arp7bVoK2ZiTx2S//KrnPrSPzPZ93CqCMhe8=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-reboot.rtl.css.map","FileLength":129386,"LastWriteTime":"2026-06-25T06:34:31+00:00"},{"Identity":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-reboot.rtl.min.css","SourceId":"QuantEngine.Web","SourceType":"Discovered","ContentRoot":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\","BasePath":"/","RelativePath":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.min#[.{fingerprint}]?.css","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"dxx9fxp4il","Integrity":"/8jh8hcEMFKyS6goWqnNu7t3EzZPCGdQZgO6sCkI8tI=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-reboot.rtl.min.css","FileLength":10198,"LastWriteTime":"2026-06-25T06:34:31+00:00"},{"Identity":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-reboot.rtl.min.css.map","SourceId":"QuantEngine.Web","SourceType":"Discovered","ContentRoot":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\","BasePath":"/","RelativePath":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css#[.{fingerprint}]?.map","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"jd9uben2k1","Integrity":"910zw+rMdcg0Ls48ATp65vEn8rd5HvPxOKm2x3/CBII=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-reboot.rtl.min.css.map","FileLength":63943,"LastWriteTime":"2026-06-25T06:34:31+00:00"},{"Identity":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-utilities.css","SourceId":"QuantEngine.Web","SourceType":"Discovered","ContentRoot":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\","BasePath":"/","RelativePath":"lib/bootstrap/dist/css/bootstrap-utilities#[.{fingerprint}]?.css","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"khv3u5hwcm","Integrity":"2BubgNUPlQSF/0wLFcRXQ/Yjzk9vsUbDAeK2QM+h+yo=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-utilities.css","FileLength":107823,"LastWriteTime":"2026-06-25T06:34:31+00:00"},{"Identity":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-utilities.css.map","SourceId":"QuantEngine.Web","SourceType":"Discovered","ContentRoot":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\","BasePath":"/","RelativePath":"lib/bootstrap/dist/css/bootstrap-utilities.css#[.{fingerprint}]?.map","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"r4e9w2rdcm","Integrity":"Nfjrc4Ur9Fv2oBEswQWIyBnNDP99q+LhL+z9553O0cY=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-utilities.css.map","FileLength":267535,"LastWriteTime":"2026-06-25T06:34:31+00:00"},{"Identity":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-utilities.min.css","SourceId":"QuantEngine.Web","SourceType":"Discovered","ContentRoot":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\","BasePath":"/","RelativePath":"lib/bootstrap/dist/css/bootstrap-utilities.min#[.{fingerprint}]?.css","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"lcd1t2u6c8","Integrity":"KyE9xbKO9CuYx0HXpIKgsWIvXkAfITtiQ172j26wmRs=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-utilities.min.css","FileLength":85352,"LastWriteTime":"2026-06-25T06:34:31+00:00"},{"Identity":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-utilities.min.css.map","SourceId":"QuantEngine.Web","SourceType":"Discovered","ContentRoot":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\","BasePath":"/","RelativePath":"lib/bootstrap/dist/css/bootstrap-utilities.min.css#[.{fingerprint}]?.map","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"c2oey78nd0","Integrity":"rHDmip4JZzuaGOcSQ1QSQrIbG0Eb3Zja9whqSF1zYIU=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-utilities.min.css.map","FileLength":180381,"LastWriteTime":"2026-06-25T06:34:31+00:00"},{"Identity":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-utilities.rtl.css","SourceId":"QuantEngine.Web","SourceType":"Discovered","ContentRoot":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\","BasePath":"/","RelativePath":"lib/bootstrap/dist/css/bootstrap-utilities.rtl#[.{fingerprint}]?.css","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"tdbxkamptv","Integrity":"H6wkBbSwjua2veJoThJo4uy161jp+DOiZTloUlcZ6qQ=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-utilities.rtl.css","FileLength":107691,"LastWriteTime":"2026-06-25T06:34:31+00:00"},{"Identity":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-utilities.rtl.css.map","SourceId":"QuantEngine.Web","SourceType":"Discovered","ContentRoot":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\","BasePath":"/","RelativePath":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.css#[.{fingerprint}]?.map","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"j5mq2jizvt","Integrity":"p0BVq5Ve/dohBIdfbrZsoQNu02JSsKh1g0wbyiQiUaU=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-utilities.rtl.css.map","FileLength":267476,"LastWriteTime":"2026-06-25T06:34:31+00:00"},{"Identity":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-utilities.rtl.min.css","SourceId":"QuantEngine.Web","SourceType":"Discovered","ContentRoot":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\","BasePath":"/","RelativePath":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.min#[.{fingerprint}]?.css","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"06098lyss8","Integrity":"GAUum6FjwQ8HrXGaoFRnHTqQQLpljXGavT7mBX8E9qU=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-utilities.rtl.min.css","FileLength":85281,"LastWriteTime":"2026-06-25T06:34:31+00:00"},{"Identity":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-utilities.rtl.min.css.map","SourceId":"QuantEngine.Web","SourceType":"Discovered","ContentRoot":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\","BasePath":"/","RelativePath":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css#[.{fingerprint}]?.map","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"nvvlpmu67g","Integrity":"o8XK32mcY/FfcOQ1D2HJvVuZ0YTXSURZDLXCK0fnQeA=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-utilities.rtl.min.css.map","FileLength":180217,"LastWriteTime":"2026-06-25T06:34:31+00:00"},{"Identity":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap.css","SourceId":"QuantEngine.Web","SourceType":"Discovered","ContentRoot":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\","BasePath":"/","RelativePath":"lib/bootstrap/dist/css/bootstrap#[.{fingerprint}]?.css","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"s35ty4nyc5","Integrity":"GKEF18s44B5e0MolXAkpkqLiEbOVlKf6VyYr/G/E6pw=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap.css","FileLength":281046,"LastWriteTime":"2026-06-25T06:34:31+00:00"},{"Identity":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap.css.map","SourceId":"QuantEngine.Web","SourceType":"Discovered","ContentRoot":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\","BasePath":"/","RelativePath":"lib/bootstrap/dist/css/bootstrap.css#[.{fingerprint}]?.map","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"pj5nd1wqec","Integrity":"KzNVR3p7UZGba94dnCtlc6jXjK5urSPiZ/eNnKTmDkw=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap.css.map","FileLength":679755,"LastWriteTime":"2026-06-25T06:34:31+00:00"},{"Identity":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap.min.css","SourceId":"QuantEngine.Web","SourceType":"Discovered","ContentRoot":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\","BasePath":"/","RelativePath":"lib/bootstrap/dist/css/bootstrap.min#[.{fingerprint}]?.css","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"46ein0sx1k","Integrity":"PI8n5gCcz9cQqQXm3PEtDuPG8qx9oFsFctPg0S5zb8g=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap.min.css","FileLength":232803,"LastWriteTime":"2026-06-25T06:34:31+00:00"},{"Identity":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap.min.css.map","SourceId":"QuantEngine.Web","SourceType":"Discovered","ContentRoot":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\","BasePath":"/","RelativePath":"lib/bootstrap/dist/css/bootstrap.min.css#[.{fingerprint}]?.map","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"v0zj4ognzu","Integrity":"8SM4U2NQpCLGTQLW5D/x3qSTwxVq2CP+GXYc3V1WwFs=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap.min.css.map","FileLength":589892,"LastWriteTime":"2026-06-25T06:34:31+00:00"},{"Identity":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap.rtl.css","SourceId":"QuantEngine.Web","SourceType":"Discovered","ContentRoot":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\","BasePath":"/","RelativePath":"lib/bootstrap/dist/css/bootstrap.rtl#[.{fingerprint}]?.css","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"37tfw0ft22","Integrity":"j5E4XIj1p1kNnDi0x1teX9RXoh1/FNlPvCML9YmRh2Q=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap.rtl.css","FileLength":280259,"LastWriteTime":"2026-06-25T06:34:31+00:00"},{"Identity":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap.rtl.css.map","SourceId":"QuantEngine.Web","SourceType":"Discovered","ContentRoot":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\","BasePath":"/","RelativePath":"lib/bootstrap/dist/css/bootstrap.rtl.css#[.{fingerprint}]?.map","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"hrwsygsryq","Integrity":"3bYWUiiVYMZfv2wq5JnXIsHlQKgSKs/VcRivgjgZ1ho=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap.rtl.css.map","FileLength":679615,"LastWriteTime":"2026-06-25T06:34:31+00:00"},{"Identity":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap.rtl.min.css","SourceId":"QuantEngine.Web","SourceType":"Discovered","ContentRoot":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\","BasePath":"/","RelativePath":"lib/bootstrap/dist/css/bootstrap.rtl.min#[.{fingerprint}]?.css","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"pk9g2wxc8p","Integrity":"h5lE7Nm8SkeIpBHHYxN99spP3VuGFKl5NZgsocil7zk=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap.rtl.min.css","FileLength":232911,"LastWriteTime":"2026-06-25T06:34:31+00:00"},{"Identity":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap.rtl.min.css.map","SourceId":"QuantEngine.Web","SourceType":"Discovered","ContentRoot":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\","BasePath":"/","RelativePath":"lib/bootstrap/dist/css/bootstrap.rtl.min.css#[.{fingerprint}]?.map","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"ft3s53vfgj","Integrity":"rTzXlnepcb/vgFAiB+U7ODQAfOlJLfM3gY6IU7eIANk=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap.rtl.min.css.map","FileLength":589087,"LastWriteTime":"2026-06-25T06:34:31+00:00"},{"Identity":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\lib\\bootstrap\\dist\\js\\bootstrap.bundle.js","SourceId":"QuantEngine.Web","SourceType":"Discovered","ContentRoot":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\","BasePath":"/","RelativePath":"lib/bootstrap/dist/js/bootstrap.bundle#[.{fingerprint}]?.js","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"6cfz1n2cew","Integrity":"mkoRoV24jV+rCPWcHDR5awPx8VuzzJKN0ibhxZ9/WaM=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot\\lib\\bootstrap\\dist\\js\\bootstrap.bundle.js","FileLength":207819,"LastWriteTime":"2026-06-25T06:34:31+00:00"},{"Identity":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\lib\\bootstrap\\dist\\js\\bootstrap.bundle.js.map","SourceId":"QuantEngine.Web","SourceType":"Discovered","ContentRoot":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\","BasePath":"/","RelativePath":"lib/bootstrap/dist/js/bootstrap.bundle.js#[.{fingerprint}]?.map","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"6pdc2jztkx","Integrity":"Wq4aWW1rQdJ+6oAgy1JQc9IBjHL9T3MKfXTBNqOv02c=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot\\lib\\bootstrap\\dist\\js\\bootstrap.bundle.js.map","FileLength":444579,"LastWriteTime":"2026-06-25T06:34:31+00:00"},{"Identity":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\lib\\bootstrap\\dist\\js\\bootstrap.bundle.min.js","SourceId":"QuantEngine.Web","SourceType":"Discovered","ContentRoot":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\","BasePath":"/","RelativePath":"lib/bootstrap/dist/js/bootstrap.bundle.min#[.{fingerprint}]?.js","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"493y06b0oq","Integrity":"CDOy6cOibCWEdsRiZuaHf8dSGGJRYuBGC+mjoJimHGw=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot\\lib\\bootstrap\\dist\\js\\bootstrap.bundle.min.js","FileLength":80721,"LastWriteTime":"2026-06-25T06:34:31+00:00"},{"Identity":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\lib\\bootstrap\\dist\\js\\bootstrap.bundle.min.js.map","SourceId":"QuantEngine.Web","SourceType":"Discovered","ContentRoot":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\","BasePath":"/","RelativePath":"lib/bootstrap/dist/js/bootstrap.bundle.min.js#[.{fingerprint}]?.map","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"iovd86k7lj","Integrity":"Xj4HYxZBQ7qqHKBwa2EAugRS+RHWzpcTtI49vgezUSU=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot\\lib\\bootstrap\\dist\\js\\bootstrap.bundle.min.js.map","FileLength":332090,"LastWriteTime":"2026-06-25T06:34:32+00:00"},{"Identity":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\lib\\bootstrap\\dist\\js\\bootstrap.esm.js","SourceId":"QuantEngine.Web","SourceType":"Discovered","ContentRoot":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\","BasePath":"/","RelativePath":"lib/bootstrap/dist/js/bootstrap.esm#[.{fingerprint}]?.js","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"vr1egmr9el","Integrity":"exiXZNJDwucXfuje3CbXPbuS6+Ery3z9sP+pgmvh8nA=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot\\lib\\bootstrap\\dist\\js\\bootstrap.esm.js","FileLength":135829,"LastWriteTime":"2026-06-25T06:34:32+00:00"},{"Identity":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\lib\\bootstrap\\dist\\js\\bootstrap.esm.js.map","SourceId":"QuantEngine.Web","SourceType":"Discovered","ContentRoot":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\","BasePath":"/","RelativePath":"lib/bootstrap/dist/js/bootstrap.esm.js#[.{fingerprint}]?.map","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"kbrnm935zg","Integrity":"EPRLgpqWkahLxEn6CUjdM76RIYIw1xdHwTbeHssuj/4=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot\\lib\\bootstrap\\dist\\js\\bootstrap.esm.js.map","FileLength":305438,"LastWriteTime":"2026-06-25T06:34:32+00:00"},{"Identity":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\lib\\bootstrap\\dist\\js\\bootstrap.esm.min.js","SourceId":"QuantEngine.Web","SourceType":"Discovered","ContentRoot":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\","BasePath":"/","RelativePath":"lib/bootstrap/dist/js/bootstrap.esm.min#[.{fingerprint}]?.js","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"jj8uyg4cgr","Integrity":"QZdFT1ZNdly4rmgUBtXmXFS9BU1FTa+sPe6h794sFRQ=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot\\lib\\bootstrap\\dist\\js\\bootstrap.esm.min.js","FileLength":73935,"LastWriteTime":"2026-06-25T06:34:32+00:00"},{"Identity":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\lib\\bootstrap\\dist\\js\\bootstrap.esm.min.js.map","SourceId":"QuantEngine.Web","SourceType":"Discovered","ContentRoot":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\","BasePath":"/","RelativePath":"lib/bootstrap/dist/js/bootstrap.esm.min.js#[.{fingerprint}]?.map","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"y7v9cxd14o","Integrity":"Tsbv8z6VlNgVET8xvz/yLo/v5iJHTAj2J4hkhjP1rHM=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot\\lib\\bootstrap\\dist\\js\\bootstrap.esm.min.js.map","FileLength":222455,"LastWriteTime":"2026-06-25T06:34:32+00:00"},{"Identity":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\lib\\bootstrap\\dist\\js\\bootstrap.js","SourceId":"QuantEngine.Web","SourceType":"Discovered","ContentRoot":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\","BasePath":"/","RelativePath":"lib/bootstrap/dist/js/bootstrap#[.{fingerprint}]?.js","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"notf2xhcfb","Integrity":"+UW802wgVfnjaSbdwyHLlU7AVplb0WToOlvN1CnzIac=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot\\lib\\bootstrap\\dist\\js\\bootstrap.js","FileLength":145401,"LastWriteTime":"2026-06-25T06:34:32+00:00"},{"Identity":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\lib\\bootstrap\\dist\\js\\bootstrap.js.map","SourceId":"QuantEngine.Web","SourceType":"Discovered","ContentRoot":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\","BasePath":"/","RelativePath":"lib/bootstrap/dist/js/bootstrap.js#[.{fingerprint}]?.map","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"h1s4sie4z3","Integrity":"9Wr7Hxe8gCJDoIHh5xP29ldXvC3kN2GkifQj9c8vYx4=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot\\lib\\bootstrap\\dist\\js\\bootstrap.js.map","FileLength":306606,"LastWriteTime":"2026-06-25T06:34:32+00:00"},{"Identity":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\lib\\bootstrap\\dist\\js\\bootstrap.min.js","SourceId":"QuantEngine.Web","SourceType":"Discovered","ContentRoot":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\","BasePath":"/","RelativePath":"lib/bootstrap/dist/js/bootstrap.min#[.{fingerprint}]?.js","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"63fj8s7r0e","Integrity":"3gQJhtmj7YnV1fmtbVcnAV6eI4ws0Tr48bVZCThtCGQ=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot\\lib\\bootstrap\\dist\\js\\bootstrap.min.js","FileLength":60635,"LastWriteTime":"2026-06-25T06:34:32+00:00"},{"Identity":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\lib\\bootstrap\\dist\\js\\bootstrap.min.js.map","SourceId":"QuantEngine.Web","SourceType":"Discovered","ContentRoot":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\","BasePath":"/","RelativePath":"lib/bootstrap/dist/js/bootstrap.min.js#[.{fingerprint}]?.map","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"0j3bgjxly4","Integrity":"ZI01e/ns473GKvACG4McggJdxvFfFIw4xspwQiG8Ye4=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot\\lib\\bootstrap\\dist\\js\\bootstrap.min.js.map","FileLength":220561,"LastWriteTime":"2026-06-25T06:34:32+00:00"},{"Identity":"C:\\Users\\kjh20\\.nuget\\packages\\microsoft.aspnetcore.app.internal.assets\\10.0.0\\_framework\\blazor.server.js","SourceId":"QuantEngine.Web","SourceType":"Discovered","ContentRoot":"C:\\Users\\kjh20\\.nuget\\packages\\microsoft.aspnetcore.app.internal.assets\\10.0.0\\_framework\\","BasePath":"/","RelativePath":"_framework/blazor.server#[.{fingerprint}]?.js","AssetKind":"All","AssetMode":"CurrentProject","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"u1n4jc5v46","Integrity":"Tv+kEpSEz2WDrK9B8F6f9WkB2KflgcYkRc7goTp7O9Q=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"C:\\Users\\kjh20\\.nuget\\packages\\microsoft.aspnetcore.app.internal.assets\\10.0.0\\build\\..\\_framework\\blazor.server.js","FileLength":164726,"LastWriteTime":"2025-10-24T01:06:36+00:00"},{"Identity":"C:\\Users\\kjh20\\.nuget\\packages\\microsoft.aspnetcore.app.internal.assets\\10.0.0\\_framework\\blazor.web.js","SourceId":"QuantEngine.Web","SourceType":"Discovered","ContentRoot":"C:\\Users\\kjh20\\.nuget\\packages\\microsoft.aspnetcore.app.internal.assets\\10.0.0\\_framework\\","BasePath":"/","RelativePath":"_framework/blazor.web#[.{fingerprint}]?.js","AssetKind":"All","AssetMode":"CurrentProject","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"j8lzlu28q6","Integrity":"vRwLU/ycEDb5TwHhutOGO6cpL7nIIRxLGPG7B9IvtHw=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"C:\\Users\\kjh20\\.nuget\\packages\\microsoft.aspnetcore.app.internal.assets\\10.0.0\\build\\..\\_framework\\blazor.web.js","FileLength":200101,"LastWriteTime":"2025-10-24T01:06:44+00:00"}],"Endpoints":[{"Route":"Components/Layout/ReconnectModal.13ja33weya.razor.js","AssetFile":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\Components\\Layout\\ReconnectModal.razor.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"2364"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"4zGYCWZ4pfXdYacNs7XaH1BXGvludoT6JCkX9NZucgI=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:34:32 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"13ja33weya"},{"Name":"integrity","Value":"sha256-4zGYCWZ4pfXdYacNs7XaH1BXGvludoT6JCkX9NZucgI="},{"Name":"label","Value":"Components/Layout/ReconnectModal.razor.js"},{"Name":"script-type","Value":"module"}]},{"Route":"Components/Layout/ReconnectModal.13ja33weya.razor.js","AssetFile":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Debug\\net10.0\\compressed\\t9yb5ynpxl-{0}-13ja33weya-13ja33weya.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.001386962552"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"720"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"kQLxn+TSoZvHHUJJnDORp3qKU0F+kzVxLQB9TB0aEoY=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"13ja33weya"},{"Name":"integrity","Value":"sha256-4zGYCWZ4pfXdYacNs7XaH1BXGvludoT6JCkX9NZucgI="},{"Name":"label","Value":"Components/Layout/ReconnectModal.razor.js"},{"Name":"original-resource","Value":"\"4zGYCWZ4pfXdYacNs7XaH1BXGvludoT6JCkX9NZucgI=\""},{"Name":"script-type","Value":"module"}]},{"Route":"Components/Layout/ReconnectModal.13ja33weya.razor.js.gz","AssetFile":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Debug\\net10.0\\compressed\\t9yb5ynpxl-{0}-13ja33weya-13ja33weya.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"720"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"kQLxn+TSoZvHHUJJnDORp3qKU0F+kzVxLQB9TB0aEoY=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"13ja33weya"},{"Name":"integrity","Value":"sha256-kQLxn+TSoZvHHUJJnDORp3qKU0F+kzVxLQB9TB0aEoY="},{"Name":"label","Value":"Components/Layout/ReconnectModal.razor.js.gz"}]},{"Route":"Components/Layout/ReconnectModal.razor.js","AssetFile":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\Components\\Layout\\ReconnectModal.razor.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"2364"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"4zGYCWZ4pfXdYacNs7XaH1BXGvludoT6JCkX9NZucgI=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:34:32 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-4zGYCWZ4pfXdYacNs7XaH1BXGvludoT6JCkX9NZucgI="},{"Name":"script-type","Value":"module"}]},{"Route":"Components/Layout/ReconnectModal.razor.js","AssetFile":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Debug\\net10.0\\compressed\\t9yb5ynpxl-{0}-13ja33weya-13ja33weya.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.001386962552"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"720"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"kQLxn+TSoZvHHUJJnDORp3qKU0F+kzVxLQB9TB0aEoY=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-4zGYCWZ4pfXdYacNs7XaH1BXGvludoT6JCkX9NZucgI="},{"Name":"original-resource","Value":"\"4zGYCWZ4pfXdYacNs7XaH1BXGvludoT6JCkX9NZucgI=\""},{"Name":"script-type","Value":"module"}]},{"Route":"Components/Layout/ReconnectModal.razor.js.gz","AssetFile":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Debug\\net10.0\\compressed\\t9yb5ynpxl-{0}-13ja33weya-13ja33weya.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"720"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"kQLxn+TSoZvHHUJJnDORp3qKU0F+kzVxLQB9TB0aEoY=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-kQLxn+TSoZvHHUJJnDORp3qKU0F+kzVxLQB9TB0aEoY="}]},{"Route":"QuantEngine.Web.bundle.scp.css","AssetFile":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Debug\\net10.0\\compressed\\vpvw6nj9ax-{0}-yi314np04p-yi314np04p.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000402900886"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2481"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"eMUoaz34S9P8ffguerv/SxXWfTBS7zv7kXrquS2C5EE=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-GphsPL5Q7m5g2Ugk7RGmBY019LEDJjdfaTE9uXiHMcs="},{"Name":"original-resource","Value":"\"GphsPL5Q7m5g2Ugk7RGmBY019LEDJjdfaTE9uXiHMcs=\""}]},{"Route":"QuantEngine.Web.bundle.scp.css","AssetFile":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Debug\\net10.0\\scopedcss\\projectbundle\\QuantEngine.Web.bundle.scp.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"10327"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"GphsPL5Q7m5g2Ugk7RGmBY019LEDJjdfaTE9uXiHMcs=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-GphsPL5Q7m5g2Ugk7RGmBY019LEDJjdfaTE9uXiHMcs="}]},{"Route":"QuantEngine.Web.bundle.scp.css.gz","AssetFile":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Debug\\net10.0\\compressed\\vpvw6nj9ax-{0}-yi314np04p-yi314np04p.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2481"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"eMUoaz34S9P8ffguerv/SxXWfTBS7zv7kXrquS2C5EE=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-eMUoaz34S9P8ffguerv/SxXWfTBS7zv7kXrquS2C5EE="}]},{"Route":"QuantEngine.Web.styles.css","AssetFile":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Debug\\net10.0\\compressed\\b7jn6yc0gz-{0}-yi314np04p-yi314np04p.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000402900886"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2481"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"eMUoaz34S9P8ffguerv/SxXWfTBS7zv7kXrquS2C5EE=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-GphsPL5Q7m5g2Ugk7RGmBY019LEDJjdfaTE9uXiHMcs="},{"Name":"original-resource","Value":"\"GphsPL5Q7m5g2Ugk7RGmBY019LEDJjdfaTE9uXiHMcs=\""}]},{"Route":"QuantEngine.Web.styles.css","AssetFile":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Debug\\net10.0\\scopedcss\\bundle\\QuantEngine.Web.styles.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"10327"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"GphsPL5Q7m5g2Ugk7RGmBY019LEDJjdfaTE9uXiHMcs=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-GphsPL5Q7m5g2Ugk7RGmBY019LEDJjdfaTE9uXiHMcs="}]},{"Route":"QuantEngine.Web.styles.css.gz","AssetFile":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Debug\\net10.0\\compressed\\b7jn6yc0gz-{0}-yi314np04p-yi314np04p.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2481"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"eMUoaz34S9P8ffguerv/SxXWfTBS7zv7kXrquS2C5EE=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-eMUoaz34S9P8ffguerv/SxXWfTBS7zv7kXrquS2C5EE="}]},{"Route":"QuantEngine.Web.yi314np04p.bundle.scp.css","AssetFile":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Debug\\net10.0\\compressed\\vpvw6nj9ax-{0}-yi314np04p-yi314np04p.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000402900886"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2481"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"eMUoaz34S9P8ffguerv/SxXWfTBS7zv7kXrquS2C5EE=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"yi314np04p"},{"Name":"integrity","Value":"sha256-GphsPL5Q7m5g2Ugk7RGmBY019LEDJjdfaTE9uXiHMcs="},{"Name":"label","Value":"QuantEngine.Web.bundle.scp.css"},{"Name":"original-resource","Value":"\"GphsPL5Q7m5g2Ugk7RGmBY019LEDJjdfaTE9uXiHMcs=\""}]},{"Route":"QuantEngine.Web.yi314np04p.bundle.scp.css","AssetFile":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Debug\\net10.0\\scopedcss\\projectbundle\\QuantEngine.Web.bundle.scp.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"10327"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"GphsPL5Q7m5g2Ugk7RGmBY019LEDJjdfaTE9uXiHMcs=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"yi314np04p"},{"Name":"integrity","Value":"sha256-GphsPL5Q7m5g2Ugk7RGmBY019LEDJjdfaTE9uXiHMcs="},{"Name":"label","Value":"QuantEngine.Web.bundle.scp.css"}]},{"Route":"QuantEngine.Web.yi314np04p.bundle.scp.css.gz","AssetFile":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Debug\\net10.0\\compressed\\vpvw6nj9ax-{0}-yi314np04p-yi314np04p.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2481"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"eMUoaz34S9P8ffguerv/SxXWfTBS7zv7kXrquS2C5EE=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"yi314np04p"},{"Name":"integrity","Value":"sha256-eMUoaz34S9P8ffguerv/SxXWfTBS7zv7kXrquS2C5EE="},{"Name":"label","Value":"QuantEngine.Web.bundle.scp.css.gz"}]},{"Route":"QuantEngine.Web.yi314np04p.styles.css","AssetFile":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Debug\\net10.0\\compressed\\b7jn6yc0gz-{0}-yi314np04p-yi314np04p.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000402900886"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2481"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"eMUoaz34S9P8ffguerv/SxXWfTBS7zv7kXrquS2C5EE=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"yi314np04p"},{"Name":"integrity","Value":"sha256-GphsPL5Q7m5g2Ugk7RGmBY019LEDJjdfaTE9uXiHMcs="},{"Name":"label","Value":"QuantEngine.Web.styles.css"},{"Name":"original-resource","Value":"\"GphsPL5Q7m5g2Ugk7RGmBY019LEDJjdfaTE9uXiHMcs=\""}]},{"Route":"QuantEngine.Web.yi314np04p.styles.css","AssetFile":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Debug\\net10.0\\scopedcss\\bundle\\QuantEngine.Web.styles.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"10327"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"GphsPL5Q7m5g2Ugk7RGmBY019LEDJjdfaTE9uXiHMcs=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"yi314np04p"},{"Name":"integrity","Value":"sha256-GphsPL5Q7m5g2Ugk7RGmBY019LEDJjdfaTE9uXiHMcs="},{"Name":"label","Value":"QuantEngine.Web.styles.css"}]},{"Route":"QuantEngine.Web.yi314np04p.styles.css.gz","AssetFile":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Debug\\net10.0\\compressed\\b7jn6yc0gz-{0}-yi314np04p-yi314np04p.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2481"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"eMUoaz34S9P8ffguerv/SxXWfTBS7zv7kXrquS2C5EE=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"yi314np04p"},{"Name":"integrity","Value":"sha256-eMUoaz34S9P8ffguerv/SxXWfTBS7zv7kXrquS2C5EE="},{"Name":"label","Value":"QuantEngine.Web.styles.css.gz"}]},{"Route":"_framework/blazor.server.js","AssetFile":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Debug\\net10.0\\compressed\\dym80g6kqp-{0}-u1n4jc5v46-u1n4jc5v46.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000022393909"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"44654"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"ahpIOLaxXwiWnLDSFUZfwZMfRrULpAls7jR+KeVK4ic=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Tv+kEpSEz2WDrK9B8F6f9WkB2KflgcYkRc7goTp7O9Q="},{"Name":"original-resource","Value":"\"Tv+kEpSEz2WDrK9B8F6f9WkB2KflgcYkRc7goTp7O9Q=\""}]},{"Route":"_framework/blazor.server.js","AssetFile":"C:\\Users\\kjh20\\.nuget\\packages\\microsoft.aspnetcore.app.internal.assets\\10.0.0\\_framework\\blazor.server.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"164726"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"Tv+kEpSEz2WDrK9B8F6f9WkB2KflgcYkRc7goTp7O9Q=\""},{"Name":"Last-Modified","Value":"Fri, 24 Oct 2025 01:06:36 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Tv+kEpSEz2WDrK9B8F6f9WkB2KflgcYkRc7goTp7O9Q="}]},{"Route":"_framework/blazor.server.js.gz","AssetFile":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Debug\\net10.0\\compressed\\dym80g6kqp-{0}-u1n4jc5v46-u1n4jc5v46.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"44654"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"ahpIOLaxXwiWnLDSFUZfwZMfRrULpAls7jR+KeVK4ic=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-ahpIOLaxXwiWnLDSFUZfwZMfRrULpAls7jR+KeVK4ic="}]},{"Route":"_framework/blazor.server.u1n4jc5v46.js","AssetFile":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Debug\\net10.0\\compressed\\dym80g6kqp-{0}-u1n4jc5v46-u1n4jc5v46.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000022393909"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"44654"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"ahpIOLaxXwiWnLDSFUZfwZMfRrULpAls7jR+KeVK4ic=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"u1n4jc5v46"},{"Name":"integrity","Value":"sha256-Tv+kEpSEz2WDrK9B8F6f9WkB2KflgcYkRc7goTp7O9Q="},{"Name":"label","Value":"_framework/blazor.server.js"},{"Name":"original-resource","Value":"\"Tv+kEpSEz2WDrK9B8F6f9WkB2KflgcYkRc7goTp7O9Q=\""}]},{"Route":"_framework/blazor.server.u1n4jc5v46.js","AssetFile":"C:\\Users\\kjh20\\.nuget\\packages\\microsoft.aspnetcore.app.internal.assets\\10.0.0\\_framework\\blazor.server.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"164726"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"Tv+kEpSEz2WDrK9B8F6f9WkB2KflgcYkRc7goTp7O9Q=\""},{"Name":"Last-Modified","Value":"Fri, 24 Oct 2025 01:06:36 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"u1n4jc5v46"},{"Name":"integrity","Value":"sha256-Tv+kEpSEz2WDrK9B8F6f9WkB2KflgcYkRc7goTp7O9Q="},{"Name":"label","Value":"_framework/blazor.server.js"}]},{"Route":"_framework/blazor.server.u1n4jc5v46.js.gz","AssetFile":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Debug\\net10.0\\compressed\\dym80g6kqp-{0}-u1n4jc5v46-u1n4jc5v46.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"44654"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"ahpIOLaxXwiWnLDSFUZfwZMfRrULpAls7jR+KeVK4ic=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"u1n4jc5v46"},{"Name":"integrity","Value":"sha256-ahpIOLaxXwiWnLDSFUZfwZMfRrULpAls7jR+KeVK4ic="},{"Name":"label","Value":"_framework/blazor.server.js.gz"}]},{"Route":"_framework/blazor.web.j8lzlu28q6.js","AssetFile":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Debug\\net10.0\\compressed\\nr5locadir-{0}-j8lzlu28q6-j8lzlu28q6.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000017975912"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"55629"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"VpDUbLuhAgB3D8PnpAYA58cbpiNNGy8iNBvD6LMHxhs=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"j8lzlu28q6"},{"Name":"integrity","Value":"sha256-vRwLU/ycEDb5TwHhutOGO6cpL7nIIRxLGPG7B9IvtHw="},{"Name":"label","Value":"_framework/blazor.web.js"},{"Name":"original-resource","Value":"\"vRwLU/ycEDb5TwHhutOGO6cpL7nIIRxLGPG7B9IvtHw=\""}]},{"Route":"_framework/blazor.web.j8lzlu28q6.js","AssetFile":"C:\\Users\\kjh20\\.nuget\\packages\\microsoft.aspnetcore.app.internal.assets\\10.0.0\\_framework\\blazor.web.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"200101"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"vRwLU/ycEDb5TwHhutOGO6cpL7nIIRxLGPG7B9IvtHw=\""},{"Name":"Last-Modified","Value":"Fri, 24 Oct 2025 01:06:44 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"j8lzlu28q6"},{"Name":"integrity","Value":"sha256-vRwLU/ycEDb5TwHhutOGO6cpL7nIIRxLGPG7B9IvtHw="},{"Name":"label","Value":"_framework/blazor.web.js"}]},{"Route":"_framework/blazor.web.j8lzlu28q6.js.gz","AssetFile":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Debug\\net10.0\\compressed\\nr5locadir-{0}-j8lzlu28q6-j8lzlu28q6.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"55629"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"VpDUbLuhAgB3D8PnpAYA58cbpiNNGy8iNBvD6LMHxhs=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"j8lzlu28q6"},{"Name":"integrity","Value":"sha256-VpDUbLuhAgB3D8PnpAYA58cbpiNNGy8iNBvD6LMHxhs="},{"Name":"label","Value":"_framework/blazor.web.js.gz"}]},{"Route":"_framework/blazor.web.js","AssetFile":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Debug\\net10.0\\compressed\\nr5locadir-{0}-j8lzlu28q6-j8lzlu28q6.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000017975912"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"55629"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"VpDUbLuhAgB3D8PnpAYA58cbpiNNGy8iNBvD6LMHxhs=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-vRwLU/ycEDb5TwHhutOGO6cpL7nIIRxLGPG7B9IvtHw="},{"Name":"original-resource","Value":"\"vRwLU/ycEDb5TwHhutOGO6cpL7nIIRxLGPG7B9IvtHw=\""}]},{"Route":"_framework/blazor.web.js","AssetFile":"C:\\Users\\kjh20\\.nuget\\packages\\microsoft.aspnetcore.app.internal.assets\\10.0.0\\_framework\\blazor.web.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"200101"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"vRwLU/ycEDb5TwHhutOGO6cpL7nIIRxLGPG7B9IvtHw=\""},{"Name":"Last-Modified","Value":"Fri, 24 Oct 2025 01:06:44 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-vRwLU/ycEDb5TwHhutOGO6cpL7nIIRxLGPG7B9IvtHw="}]},{"Route":"_framework/blazor.web.js.gz","AssetFile":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Debug\\net10.0\\compressed\\nr5locadir-{0}-j8lzlu28q6-j8lzlu28q6.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"55629"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"VpDUbLuhAgB3D8PnpAYA58cbpiNNGy8iNBvD6LMHxhs=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-VpDUbLuhAgB3D8PnpAYA58cbpiNNGy8iNBvD6LMHxhs="}]},{"Route":"app.4c8rkwezul.css","AssetFile":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Debug\\net10.0\\compressed\\q2w3mddmwi-{0}-4c8rkwezul-4c8rkwezul.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000536480687"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1863"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"gnkzj8DwujHnit2MwKgV6YdKLWzKFbNT467LEBsdMTs=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:51:47 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"4c8rkwezul"},{"Name":"integrity","Value":"sha256-9BYQ1DEYdSZH7MBG7AQ28+OVGYKziE5nCfTTJOiedPU="},{"Name":"label","Value":"app.css"},{"Name":"original-resource","Value":"\"9BYQ1DEYdSZH7MBG7AQ28+OVGYKziE5nCfTTJOiedPU=\""}]},{"Route":"app.4c8rkwezul.css","AssetFile":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\app.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"6554"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"9BYQ1DEYdSZH7MBG7AQ28+OVGYKziE5nCfTTJOiedPU=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:50:05 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"4c8rkwezul"},{"Name":"integrity","Value":"sha256-9BYQ1DEYdSZH7MBG7AQ28+OVGYKziE5nCfTTJOiedPU="},{"Name":"label","Value":"app.css"}]},{"Route":"app.4c8rkwezul.css.gz","AssetFile":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Debug\\net10.0\\compressed\\q2w3mddmwi-{0}-4c8rkwezul-4c8rkwezul.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1863"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"gnkzj8DwujHnit2MwKgV6YdKLWzKFbNT467LEBsdMTs=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:51:47 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"4c8rkwezul"},{"Name":"integrity","Value":"sha256-gnkzj8DwujHnit2MwKgV6YdKLWzKFbNT467LEBsdMTs="},{"Name":"label","Value":"app.css.gz"}]},{"Route":"app.css","AssetFile":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Debug\\net10.0\\compressed\\q2w3mddmwi-{0}-4c8rkwezul-4c8rkwezul.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000536480687"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1863"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"gnkzj8DwujHnit2MwKgV6YdKLWzKFbNT467LEBsdMTs=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:51:47 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-9BYQ1DEYdSZH7MBG7AQ28+OVGYKziE5nCfTTJOiedPU="},{"Name":"original-resource","Value":"\"9BYQ1DEYdSZH7MBG7AQ28+OVGYKziE5nCfTTJOiedPU=\""}]},{"Route":"app.css","AssetFile":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\app.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"6554"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"9BYQ1DEYdSZH7MBG7AQ28+OVGYKziE5nCfTTJOiedPU=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:50:05 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-9BYQ1DEYdSZH7MBG7AQ28+OVGYKziE5nCfTTJOiedPU="}]},{"Route":"app.css.gz","AssetFile":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Debug\\net10.0\\compressed\\q2w3mddmwi-{0}-4c8rkwezul-4c8rkwezul.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1863"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"gnkzj8DwujHnit2MwKgV6YdKLWzKFbNT467LEBsdMTs=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:51:47 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-gnkzj8DwujHnit2MwKgV6YdKLWzKFbNT467LEBsdMTs="}]},{"Route":"favicon.ifv42okdf2.png","AssetFile":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\favicon.png","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"1148"},{"Name":"Content-Type","Value":"image/png"},{"Name":"ETag","Value":"\"4mWsDy3aHl36ZbGt8zByK7Pvd4kRUoNgTYzRnwmPHwg=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:34:31 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ifv42okdf2"},{"Name":"integrity","Value":"sha256-4mWsDy3aHl36ZbGt8zByK7Pvd4kRUoNgTYzRnwmPHwg="},{"Name":"label","Value":"favicon.png"}]},{"Route":"favicon.png","AssetFile":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\favicon.png","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=3600, must-revalidate"},{"Name":"Content-Length","Value":"1148"},{"Name":"Content-Type","Value":"image/png"},{"Name":"ETag","Value":"\"4mWsDy3aHl36ZbGt8zByK7Pvd4kRUoNgTYzRnwmPHwg=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:34:31 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-4mWsDy3aHl36ZbGt8zByK7Pvd4kRUoNgTYzRnwmPHwg="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.bqjiyaj88i.css","AssetFile":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Debug\\net10.0\\compressed\\dgr8mv739g-{0}-bqjiyaj88i-bqjiyaj88i.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000148235992"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"6745"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"jhvPrvWZn8BbeR49W+r+MLNcnTeFyaSXxry9n1ctwy4=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"bqjiyaj88i"},{"Name":"integrity","Value":"sha256-Yy5/hBqRmmU2MJ1TKwP2aXoTO6+OjzrLmJIsC2Wy4H8="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-grid.css"},{"Name":"original-resource","Value":"\"Yy5/hBqRmmU2MJ1TKwP2aXoTO6+OjzrLmJIsC2Wy4H8=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.bqjiyaj88i.css","AssetFile":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-grid.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"70329"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"Yy5/hBqRmmU2MJ1TKwP2aXoTO6+OjzrLmJIsC2Wy4H8=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:34:31 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"bqjiyaj88i"},{"Name":"integrity","Value":"sha256-Yy5/hBqRmmU2MJ1TKwP2aXoTO6+OjzrLmJIsC2Wy4H8="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-grid.css"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.bqjiyaj88i.css.gz","AssetFile":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Debug\\net10.0\\compressed\\dgr8mv739g-{0}-bqjiyaj88i-bqjiyaj88i.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"6745"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"jhvPrvWZn8BbeR49W+r+MLNcnTeFyaSXxry9n1ctwy4=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"bqjiyaj88i"},{"Name":"integrity","Value":"sha256-jhvPrvWZn8BbeR49W+r+MLNcnTeFyaSXxry9n1ctwy4="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-grid.css.gz"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.css","AssetFile":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Debug\\net10.0\\compressed\\dgr8mv739g-{0}-bqjiyaj88i-bqjiyaj88i.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000148235992"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"6745"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"jhvPrvWZn8BbeR49W+r+MLNcnTeFyaSXxry9n1ctwy4=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Yy5/hBqRmmU2MJ1TKwP2aXoTO6+OjzrLmJIsC2Wy4H8="},{"Name":"original-resource","Value":"\"Yy5/hBqRmmU2MJ1TKwP2aXoTO6+OjzrLmJIsC2Wy4H8=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.css","AssetFile":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-grid.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"70329"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"Yy5/hBqRmmU2MJ1TKwP2aXoTO6+OjzrLmJIsC2Wy4H8=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:34:31 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Yy5/hBqRmmU2MJ1TKwP2aXoTO6+OjzrLmJIsC2Wy4H8="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.css.c2jlpeoesf.map","AssetFile":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Debug\\net10.0\\compressed\\l0f1c41wbh-{0}-c2jlpeoesf-c2jlpeoesf.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000030492453"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"32794"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"ALPf6qsZMu+Ui8l8jPJJF3MhTcq6uwrQhRWeWJL4ixU=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"c2jlpeoesf"},{"Name":"integrity","Value":"sha256-xAT+n25FE5hvOjj2fG4YdOwr1bl4IlAJBNg6PbhLT2E="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-grid.css.map"},{"Name":"original-resource","Value":"\"xAT+n25FE5hvOjj2fG4YdOwr1bl4IlAJBNg6PbhLT2E=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.css.c2jlpeoesf.map","AssetFile":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-grid.css.map","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"203221"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"xAT+n25FE5hvOjj2fG4YdOwr1bl4IlAJBNg6PbhLT2E=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:34:31 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"c2jlpeoesf"},{"Name":"integrity","Value":"sha256-xAT+n25FE5hvOjj2fG4YdOwr1bl4IlAJBNg6PbhLT2E="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-grid.css.map"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.css.c2jlpeoesf.map.gz","AssetFile":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Debug\\net10.0\\compressed\\l0f1c41wbh-{0}-c2jlpeoesf-c2jlpeoesf.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"32794"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"ALPf6qsZMu+Ui8l8jPJJF3MhTcq6uwrQhRWeWJL4ixU=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"c2jlpeoesf"},{"Name":"integrity","Value":"sha256-ALPf6qsZMu+Ui8l8jPJJF3MhTcq6uwrQhRWeWJL4ixU="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-grid.css.map.gz"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.css.gz","AssetFile":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Debug\\net10.0\\compressed\\dgr8mv739g-{0}-bqjiyaj88i-bqjiyaj88i.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"6745"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"jhvPrvWZn8BbeR49W+r+MLNcnTeFyaSXxry9n1ctwy4=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-jhvPrvWZn8BbeR49W+r+MLNcnTeFyaSXxry9n1ctwy4="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.css.map","AssetFile":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Debug\\net10.0\\compressed\\l0f1c41wbh-{0}-c2jlpeoesf-c2jlpeoesf.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000030492453"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"32794"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"ALPf6qsZMu+Ui8l8jPJJF3MhTcq6uwrQhRWeWJL4ixU=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-xAT+n25FE5hvOjj2fG4YdOwr1bl4IlAJBNg6PbhLT2E="},{"Name":"original-resource","Value":"\"xAT+n25FE5hvOjj2fG4YdOwr1bl4IlAJBNg6PbhLT2E=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.css.map","AssetFile":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-grid.css.map","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"203221"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"xAT+n25FE5hvOjj2fG4YdOwr1bl4IlAJBNg6PbhLT2E=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:34:31 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-xAT+n25FE5hvOjj2fG4YdOwr1bl4IlAJBNg6PbhLT2E="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.css.map.gz","AssetFile":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Debug\\net10.0\\compressed\\l0f1c41wbh-{0}-c2jlpeoesf-c2jlpeoesf.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"32794"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"ALPf6qsZMu+Ui8l8jPJJF3MhTcq6uwrQhRWeWJL4ixU=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-ALPf6qsZMu+Ui8l8jPJJF3MhTcq6uwrQhRWeWJL4ixU="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.min.css","AssetFile":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Debug\\net10.0\\compressed\\ny3xbgedo0-{0}-erw9l3u2r3-erw9l3u2r3.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000167504188"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"5969"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"y2vSlIdcL+ImKFhcBMT5ujdAP1cyOZlHZK434Aiu0KA=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-5nDHMGiyfZHl3UXePuhLDQR9ncPfBR1HJeZLXyJNV24="},{"Name":"original-resource","Value":"\"5nDHMGiyfZHl3UXePuhLDQR9ncPfBR1HJeZLXyJNV24=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.min.css","AssetFile":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-grid.min.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"51795"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"5nDHMGiyfZHl3UXePuhLDQR9ncPfBR1HJeZLXyJNV24=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:34:31 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-5nDHMGiyfZHl3UXePuhLDQR9ncPfBR1HJeZLXyJNV24="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.min.css.aexeepp0ev.map","AssetFile":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Debug\\net10.0\\compressed\\yyzux970us-{0}-aexeepp0ev-aexeepp0ev.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000072343196"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"13822"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"UTpk2w6Qfw+RUZtUsUuWDVrQXTEdgzIWiLHb7gDcZZc=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"aexeepp0ev"},{"Name":"integrity","Value":"sha256-kgL+xwVmM8IOs15lnoHt9daR2LRMiBG/cYgUPcKQOY4="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-grid.min.css.map"},{"Name":"original-resource","Value":"\"kgL+xwVmM8IOs15lnoHt9daR2LRMiBG/cYgUPcKQOY4=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.min.css.aexeepp0ev.map","AssetFile":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-grid.min.css.map","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"115986"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"kgL+xwVmM8IOs15lnoHt9daR2LRMiBG/cYgUPcKQOY4=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:34:31 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"aexeepp0ev"},{"Name":"integrity","Value":"sha256-kgL+xwVmM8IOs15lnoHt9daR2LRMiBG/cYgUPcKQOY4="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-grid.min.css.map"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.min.css.aexeepp0ev.map.gz","AssetFile":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Debug\\net10.0\\compressed\\yyzux970us-{0}-aexeepp0ev-aexeepp0ev.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"13822"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"UTpk2w6Qfw+RUZtUsUuWDVrQXTEdgzIWiLHb7gDcZZc=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"aexeepp0ev"},{"Name":"integrity","Value":"sha256-UTpk2w6Qfw+RUZtUsUuWDVrQXTEdgzIWiLHb7gDcZZc="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-grid.min.css.map.gz"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.min.css.gz","AssetFile":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Debug\\net10.0\\compressed\\ny3xbgedo0-{0}-erw9l3u2r3-erw9l3u2r3.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"5969"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"y2vSlIdcL+ImKFhcBMT5ujdAP1cyOZlHZK434Aiu0KA=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-y2vSlIdcL+ImKFhcBMT5ujdAP1cyOZlHZK434Aiu0KA="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.min.css.map","AssetFile":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Debug\\net10.0\\compressed\\yyzux970us-{0}-aexeepp0ev-aexeepp0ev.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000072343196"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"13822"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"UTpk2w6Qfw+RUZtUsUuWDVrQXTEdgzIWiLHb7gDcZZc=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-kgL+xwVmM8IOs15lnoHt9daR2LRMiBG/cYgUPcKQOY4="},{"Name":"original-resource","Value":"\"kgL+xwVmM8IOs15lnoHt9daR2LRMiBG/cYgUPcKQOY4=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.min.css.map","AssetFile":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-grid.min.css.map","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"115986"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"kgL+xwVmM8IOs15lnoHt9daR2LRMiBG/cYgUPcKQOY4=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:34:31 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-kgL+xwVmM8IOs15lnoHt9daR2LRMiBG/cYgUPcKQOY4="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.min.css.map.gz","AssetFile":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Debug\\net10.0\\compressed\\yyzux970us-{0}-aexeepp0ev-aexeepp0ev.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"13822"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"UTpk2w6Qfw+RUZtUsUuWDVrQXTEdgzIWiLHb7gDcZZc=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-UTpk2w6Qfw+RUZtUsUuWDVrQXTEdgzIWiLHb7gDcZZc="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.min.erw9l3u2r3.css","AssetFile":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Debug\\net10.0\\compressed\\ny3xbgedo0-{0}-erw9l3u2r3-erw9l3u2r3.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000167504188"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"5969"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"y2vSlIdcL+ImKFhcBMT5ujdAP1cyOZlHZK434Aiu0KA=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"erw9l3u2r3"},{"Name":"integrity","Value":"sha256-5nDHMGiyfZHl3UXePuhLDQR9ncPfBR1HJeZLXyJNV24="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-grid.min.css"},{"Name":"original-resource","Value":"\"5nDHMGiyfZHl3UXePuhLDQR9ncPfBR1HJeZLXyJNV24=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.min.erw9l3u2r3.css","AssetFile":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-grid.min.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"51795"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"5nDHMGiyfZHl3UXePuhLDQR9ncPfBR1HJeZLXyJNV24=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:34:31 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"erw9l3u2r3"},{"Name":"integrity","Value":"sha256-5nDHMGiyfZHl3UXePuhLDQR9ncPfBR1HJeZLXyJNV24="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-grid.min.css"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.min.erw9l3u2r3.css.gz","AssetFile":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Debug\\net10.0\\compressed\\ny3xbgedo0-{0}-erw9l3u2r3-erw9l3u2r3.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"5969"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"y2vSlIdcL+ImKFhcBMT5ujdAP1cyOZlHZK434Aiu0KA=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"erw9l3u2r3"},{"Name":"integrity","Value":"sha256-y2vSlIdcL+ImKFhcBMT5ujdAP1cyOZlHZK434Aiu0KA="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-grid.min.css.gz"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.rtl.css","AssetFile":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Debug\\net10.0\\compressed\\s8tfmvcl6l-{0}-d7shbmvgxk-d7shbmvgxk.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000148148148"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"6749"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"P5V7Xl3ceCLw6wDeOyAezE6gOa9re3B7gTUN/H/cDsY=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-CZxoF8zjaLlyVkcvVCDlc8CeQR1w1RMrvgYx30cs8kM="},{"Name":"original-resource","Value":"\"CZxoF8zjaLlyVkcvVCDlc8CeQR1w1RMrvgYx30cs8kM=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.rtl.css","AssetFile":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-grid.rtl.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"70403"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"CZxoF8zjaLlyVkcvVCDlc8CeQR1w1RMrvgYx30cs8kM=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:34:31 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-CZxoF8zjaLlyVkcvVCDlc8CeQR1w1RMrvgYx30cs8kM="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.rtl.css.ausgxo2sd3.map","AssetFile":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Debug\\net10.0\\compressed\\buy0lgnna4-{0}-ausgxo2sd3-ausgxo2sd3.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000030493383"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"32793"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"cWfRgogdfOCr54Ae/lxY515FP4TJyUwc4Ae6uejBPI0=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ausgxo2sd3"},{"Name":"integrity","Value":"sha256-/siQUA8yX830j+cL4amKHY3yBtn3n8z3Eg+VZ15f90k="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-grid.rtl.css.map"},{"Name":"original-resource","Value":"\"/siQUA8yX830j+cL4amKHY3yBtn3n8z3Eg+VZ15f90k=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.rtl.css.ausgxo2sd3.map","AssetFile":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-grid.rtl.css.map","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"203225"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"/siQUA8yX830j+cL4amKHY3yBtn3n8z3Eg+VZ15f90k=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:34:31 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ausgxo2sd3"},{"Name":"integrity","Value":"sha256-/siQUA8yX830j+cL4amKHY3yBtn3n8z3Eg+VZ15f90k="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-grid.rtl.css.map"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.rtl.css.ausgxo2sd3.map.gz","AssetFile":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Debug\\net10.0\\compressed\\buy0lgnna4-{0}-ausgxo2sd3-ausgxo2sd3.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"32793"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"cWfRgogdfOCr54Ae/lxY515FP4TJyUwc4Ae6uejBPI0=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ausgxo2sd3"},{"Name":"integrity","Value":"sha256-cWfRgogdfOCr54Ae/lxY515FP4TJyUwc4Ae6uejBPI0="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-grid.rtl.css.map.gz"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.rtl.css.gz","AssetFile":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Debug\\net10.0\\compressed\\s8tfmvcl6l-{0}-d7shbmvgxk-d7shbmvgxk.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"6749"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"P5V7Xl3ceCLw6wDeOyAezE6gOa9re3B7gTUN/H/cDsY=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-P5V7Xl3ceCLw6wDeOyAezE6gOa9re3B7gTUN/H/cDsY="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.rtl.css.map","AssetFile":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Debug\\net10.0\\compressed\\buy0lgnna4-{0}-ausgxo2sd3-ausgxo2sd3.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000030493383"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"32793"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"cWfRgogdfOCr54Ae/lxY515FP4TJyUwc4Ae6uejBPI0=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-/siQUA8yX830j+cL4amKHY3yBtn3n8z3Eg+VZ15f90k="},{"Name":"original-resource","Value":"\"/siQUA8yX830j+cL4amKHY3yBtn3n8z3Eg+VZ15f90k=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.rtl.css.map","AssetFile":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-grid.rtl.css.map","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"203225"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"/siQUA8yX830j+cL4amKHY3yBtn3n8z3Eg+VZ15f90k=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:34:31 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-/siQUA8yX830j+cL4amKHY3yBtn3n8z3Eg+VZ15f90k="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.rtl.css.map.gz","AssetFile":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Debug\\net10.0\\compressed\\buy0lgnna4-{0}-ausgxo2sd3-ausgxo2sd3.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"32793"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"cWfRgogdfOCr54Ae/lxY515FP4TJyUwc4Ae6uejBPI0=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-cWfRgogdfOCr54Ae/lxY515FP4TJyUwc4Ae6uejBPI0="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.rtl.d7shbmvgxk.css","AssetFile":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Debug\\net10.0\\compressed\\s8tfmvcl6l-{0}-d7shbmvgxk-d7shbmvgxk.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000148148148"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"6749"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"P5V7Xl3ceCLw6wDeOyAezE6gOa9re3B7gTUN/H/cDsY=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"d7shbmvgxk"},{"Name":"integrity","Value":"sha256-CZxoF8zjaLlyVkcvVCDlc8CeQR1w1RMrvgYx30cs8kM="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-grid.rtl.css"},{"Name":"original-resource","Value":"\"CZxoF8zjaLlyVkcvVCDlc8CeQR1w1RMrvgYx30cs8kM=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.rtl.d7shbmvgxk.css","AssetFile":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-grid.rtl.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"70403"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"CZxoF8zjaLlyVkcvVCDlc8CeQR1w1RMrvgYx30cs8kM=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:34:31 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"d7shbmvgxk"},{"Name":"integrity","Value":"sha256-CZxoF8zjaLlyVkcvVCDlc8CeQR1w1RMrvgYx30cs8kM="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-grid.rtl.css"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.rtl.d7shbmvgxk.css.gz","AssetFile":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Debug\\net10.0\\compressed\\s8tfmvcl6l-{0}-d7shbmvgxk-d7shbmvgxk.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"6749"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"P5V7Xl3ceCLw6wDeOyAezE6gOa9re3B7gTUN/H/cDsY=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"d7shbmvgxk"},{"Name":"integrity","Value":"sha256-P5V7Xl3ceCLw6wDeOyAezE6gOa9re3B7gTUN/H/cDsY="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-grid.rtl.css.gz"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css","AssetFile":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Debug\\net10.0\\compressed\\rftpckz71e-{0}-k8d9w2qqmf-k8d9w2qqmf.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000167448091"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"5971"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"ujhFfu7SIw4cL8FWI0ezmD29C7bGSesJvlEcySm5beY=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-vMxTcvkC4Ly7LiAT3G8yEy9EpTr7Fge4SczWp07/p3k="},{"Name":"original-resource","Value":"\"vMxTcvkC4Ly7LiAT3G8yEy9EpTr7Fge4SczWp07/p3k=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css","AssetFile":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-grid.rtl.min.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"51870"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"vMxTcvkC4Ly7LiAT3G8yEy9EpTr7Fge4SczWp07/p3k=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:34:31 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-vMxTcvkC4Ly7LiAT3G8yEy9EpTr7Fge4SczWp07/p3k="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.cosvhxvwiu.map","AssetFile":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Debug\\net10.0\\compressed\\1xufxwh45d-{0}-cosvhxvwiu-cosvhxvwiu.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000072306580"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"13829"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"yZDV5sXfkOihH9inqXh6D0ZmlFp3/eRZrXuPmmaGXhA=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"cosvhxvwiu"},{"Name":"integrity","Value":"sha256-7GdOlw7U/wgyaeUtFmxPz5/MphdvVSPtVOOlTn9c33Q="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.map"},{"Name":"original-resource","Value":"\"7GdOlw7U/wgyaeUtFmxPz5/MphdvVSPtVOOlTn9c33Q=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.cosvhxvwiu.map","AssetFile":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-grid.rtl.min.css.map","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"116063"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"7GdOlw7U/wgyaeUtFmxPz5/MphdvVSPtVOOlTn9c33Q=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:34:31 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"cosvhxvwiu"},{"Name":"integrity","Value":"sha256-7GdOlw7U/wgyaeUtFmxPz5/MphdvVSPtVOOlTn9c33Q="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.map"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.cosvhxvwiu.map.gz","AssetFile":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Debug\\net10.0\\compressed\\1xufxwh45d-{0}-cosvhxvwiu-cosvhxvwiu.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"13829"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"yZDV5sXfkOihH9inqXh6D0ZmlFp3/eRZrXuPmmaGXhA=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"cosvhxvwiu"},{"Name":"integrity","Value":"sha256-yZDV5sXfkOihH9inqXh6D0ZmlFp3/eRZrXuPmmaGXhA="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.map.gz"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.gz","AssetFile":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Debug\\net10.0\\compressed\\rftpckz71e-{0}-k8d9w2qqmf-k8d9w2qqmf.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"5971"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"ujhFfu7SIw4cL8FWI0ezmD29C7bGSesJvlEcySm5beY=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-ujhFfu7SIw4cL8FWI0ezmD29C7bGSesJvlEcySm5beY="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.map","AssetFile":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Debug\\net10.0\\compressed\\1xufxwh45d-{0}-cosvhxvwiu-cosvhxvwiu.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000072306580"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"13829"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"yZDV5sXfkOihH9inqXh6D0ZmlFp3/eRZrXuPmmaGXhA=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-7GdOlw7U/wgyaeUtFmxPz5/MphdvVSPtVOOlTn9c33Q="},{"Name":"original-resource","Value":"\"7GdOlw7U/wgyaeUtFmxPz5/MphdvVSPtVOOlTn9c33Q=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.map","AssetFile":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-grid.rtl.min.css.map","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"116063"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"7GdOlw7U/wgyaeUtFmxPz5/MphdvVSPtVOOlTn9c33Q=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:34:31 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-7GdOlw7U/wgyaeUtFmxPz5/MphdvVSPtVOOlTn9c33Q="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.map.gz","AssetFile":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Debug\\net10.0\\compressed\\1xufxwh45d-{0}-cosvhxvwiu-cosvhxvwiu.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"13829"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"yZDV5sXfkOihH9inqXh6D0ZmlFp3/eRZrXuPmmaGXhA=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-yZDV5sXfkOihH9inqXh6D0ZmlFp3/eRZrXuPmmaGXhA="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.rtl.min.k8d9w2qqmf.css","AssetFile":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Debug\\net10.0\\compressed\\rftpckz71e-{0}-k8d9w2qqmf-k8d9w2qqmf.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000167448091"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"5971"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"ujhFfu7SIw4cL8FWI0ezmD29C7bGSesJvlEcySm5beY=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"k8d9w2qqmf"},{"Name":"integrity","Value":"sha256-vMxTcvkC4Ly7LiAT3G8yEy9EpTr7Fge4SczWp07/p3k="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css"},{"Name":"original-resource","Value":"\"vMxTcvkC4Ly7LiAT3G8yEy9EpTr7Fge4SczWp07/p3k=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.rtl.min.k8d9w2qqmf.css","AssetFile":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-grid.rtl.min.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"51870"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"vMxTcvkC4Ly7LiAT3G8yEy9EpTr7Fge4SczWp07/p3k=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:34:31 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"k8d9w2qqmf"},{"Name":"integrity","Value":"sha256-vMxTcvkC4Ly7LiAT3G8yEy9EpTr7Fge4SczWp07/p3k="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.rtl.min.k8d9w2qqmf.css.gz","AssetFile":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Debug\\net10.0\\compressed\\rftpckz71e-{0}-k8d9w2qqmf-k8d9w2qqmf.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"5971"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"ujhFfu7SIw4cL8FWI0ezmD29C7bGSesJvlEcySm5beY=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"k8d9w2qqmf"},{"Name":"integrity","Value":"sha256-ujhFfu7SIw4cL8FWI0ezmD29C7bGSesJvlEcySm5beY="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.gz"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.css","AssetFile":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Debug\\net10.0\\compressed\\110gjqadz3-{0}-ub07r2b239-ub07r2b239.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000295770482"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"3380"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"+EIaQ03ZHgfVopnrJFjz7ZgQSAO9GeMOK+bzccTIQyE=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-lo9YI82OF03vojdu+XOR3+DRrLIpMhpzZNmHbM5CDMA="},{"Name":"original-resource","Value":"\"lo9YI82OF03vojdu+XOR3+DRrLIpMhpzZNmHbM5CDMA=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.css","AssetFile":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-reboot.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"12065"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"lo9YI82OF03vojdu+XOR3+DRrLIpMhpzZNmHbM5CDMA=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:34:31 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-lo9YI82OF03vojdu+XOR3+DRrLIpMhpzZNmHbM5CDMA="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.css.fvhpjtyr6v.map","AssetFile":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Debug\\net10.0\\compressed\\moveir2wlt-{0}-fvhpjtyr6v-fvhpjtyr6v.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000038725167"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"25822"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"uuPRBE+KJ7rhQC/ul/m33YS7RxoQPGY3ZcuTz6+ooTc=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"fvhpjtyr6v"},{"Name":"integrity","Value":"sha256-RXJ/QZiBfHXoPtXR2EgC+bFo2pe3GtbZO722RtiLGzQ="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-reboot.css.map"},{"Name":"original-resource","Value":"\"RXJ/QZiBfHXoPtXR2EgC+bFo2pe3GtbZO722RtiLGzQ=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.css.fvhpjtyr6v.map","AssetFile":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-reboot.css.map","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"129371"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"RXJ/QZiBfHXoPtXR2EgC+bFo2pe3GtbZO722RtiLGzQ=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:34:31 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"fvhpjtyr6v"},{"Name":"integrity","Value":"sha256-RXJ/QZiBfHXoPtXR2EgC+bFo2pe3GtbZO722RtiLGzQ="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-reboot.css.map"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.css.fvhpjtyr6v.map.gz","AssetFile":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Debug\\net10.0\\compressed\\moveir2wlt-{0}-fvhpjtyr6v-fvhpjtyr6v.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"25822"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"uuPRBE+KJ7rhQC/ul/m33YS7RxoQPGY3ZcuTz6+ooTc=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"fvhpjtyr6v"},{"Name":"integrity","Value":"sha256-uuPRBE+KJ7rhQC/ul/m33YS7RxoQPGY3ZcuTz6+ooTc="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-reboot.css.map.gz"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.css.gz","AssetFile":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Debug\\net10.0\\compressed\\110gjqadz3-{0}-ub07r2b239-ub07r2b239.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"3380"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"+EIaQ03ZHgfVopnrJFjz7ZgQSAO9GeMOK+bzccTIQyE=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-+EIaQ03ZHgfVopnrJFjz7ZgQSAO9GeMOK+bzccTIQyE="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.css.map","AssetFile":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Debug\\net10.0\\compressed\\moveir2wlt-{0}-fvhpjtyr6v-fvhpjtyr6v.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000038725167"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"25822"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"uuPRBE+KJ7rhQC/ul/m33YS7RxoQPGY3ZcuTz6+ooTc=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-RXJ/QZiBfHXoPtXR2EgC+bFo2pe3GtbZO722RtiLGzQ="},{"Name":"original-resource","Value":"\"RXJ/QZiBfHXoPtXR2EgC+bFo2pe3GtbZO722RtiLGzQ=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.css.map","AssetFile":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-reboot.css.map","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"129371"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"RXJ/QZiBfHXoPtXR2EgC+bFo2pe3GtbZO722RtiLGzQ=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:34:31 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-RXJ/QZiBfHXoPtXR2EgC+bFo2pe3GtbZO722RtiLGzQ="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.css.map.gz","AssetFile":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Debug\\net10.0\\compressed\\moveir2wlt-{0}-fvhpjtyr6v-fvhpjtyr6v.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"25822"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"uuPRBE+KJ7rhQC/ul/m33YS7RxoQPGY3ZcuTz6+ooTc=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-uuPRBE+KJ7rhQC/ul/m33YS7RxoQPGY3ZcuTz6+ooTc="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.min.b7pk76d08c.css","AssetFile":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Debug\\net10.0\\compressed\\i5gc3220r3-{0}-b7pk76d08c-b7pk76d08c.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000311138768"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"3213"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"Z9B/f6Ax/2JeBbNo3F1oaFvmOzRvs3yS0nnykt272Wc=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"b7pk76d08c"},{"Name":"integrity","Value":"sha256-l8vt5oozv958eMd9TFsPAWgl9JJK9YKfbVSs8mchQ84="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-reboot.min.css"},{"Name":"original-resource","Value":"\"l8vt5oozv958eMd9TFsPAWgl9JJK9YKfbVSs8mchQ84=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.min.b7pk76d08c.css","AssetFile":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-reboot.min.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"10126"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"l8vt5oozv958eMd9TFsPAWgl9JJK9YKfbVSs8mchQ84=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:34:31 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"b7pk76d08c"},{"Name":"integrity","Value":"sha256-l8vt5oozv958eMd9TFsPAWgl9JJK9YKfbVSs8mchQ84="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-reboot.min.css"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.min.b7pk76d08c.css.gz","AssetFile":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Debug\\net10.0\\compressed\\i5gc3220r3-{0}-b7pk76d08c-b7pk76d08c.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"3213"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"Z9B/f6Ax/2JeBbNo3F1oaFvmOzRvs3yS0nnykt272Wc=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"b7pk76d08c"},{"Name":"integrity","Value":"sha256-Z9B/f6Ax/2JeBbNo3F1oaFvmOzRvs3yS0nnykt272Wc="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-reboot.min.css.gz"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.min.css","AssetFile":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Debug\\net10.0\\compressed\\i5gc3220r3-{0}-b7pk76d08c-b7pk76d08c.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000311138768"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"3213"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"Z9B/f6Ax/2JeBbNo3F1oaFvmOzRvs3yS0nnykt272Wc=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-l8vt5oozv958eMd9TFsPAWgl9JJK9YKfbVSs8mchQ84="},{"Name":"original-resource","Value":"\"l8vt5oozv958eMd9TFsPAWgl9JJK9YKfbVSs8mchQ84=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.min.css","AssetFile":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-reboot.min.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"10126"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"l8vt5oozv958eMd9TFsPAWgl9JJK9YKfbVSs8mchQ84=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:34:31 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-l8vt5oozv958eMd9TFsPAWgl9JJK9YKfbVSs8mchQ84="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.min.css.fsbi9cje9m.map","AssetFile":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Debug\\net10.0\\compressed\\xhunqdkvqb-{0}-fsbi9cje9m-fsbi9cje9m.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000079447049"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"12586"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"88yfwCB1JJrw5DzTwttuDUNRg1MC/QUUovOQTnyxGHA=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"fsbi9cje9m"},{"Name":"integrity","Value":"sha256-0eqVT62kqRLJh9oTqLeIH4UnQskqVjib8hl2fXxl4lg="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-reboot.min.css.map"},{"Name":"original-resource","Value":"\"0eqVT62kqRLJh9oTqLeIH4UnQskqVjib8hl2fXxl4lg=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.min.css.fsbi9cje9m.map","AssetFile":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-reboot.min.css.map","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"51369"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"0eqVT62kqRLJh9oTqLeIH4UnQskqVjib8hl2fXxl4lg=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:34:31 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"fsbi9cje9m"},{"Name":"integrity","Value":"sha256-0eqVT62kqRLJh9oTqLeIH4UnQskqVjib8hl2fXxl4lg="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-reboot.min.css.map"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.min.css.fsbi9cje9m.map.gz","AssetFile":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Debug\\net10.0\\compressed\\xhunqdkvqb-{0}-fsbi9cje9m-fsbi9cje9m.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"12586"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"88yfwCB1JJrw5DzTwttuDUNRg1MC/QUUovOQTnyxGHA=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"fsbi9cje9m"},{"Name":"integrity","Value":"sha256-88yfwCB1JJrw5DzTwttuDUNRg1MC/QUUovOQTnyxGHA="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-reboot.min.css.map.gz"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.min.css.gz","AssetFile":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Debug\\net10.0\\compressed\\i5gc3220r3-{0}-b7pk76d08c-b7pk76d08c.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"3213"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"Z9B/f6Ax/2JeBbNo3F1oaFvmOzRvs3yS0nnykt272Wc=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Z9B/f6Ax/2JeBbNo3F1oaFvmOzRvs3yS0nnykt272Wc="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.min.css.map","AssetFile":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Debug\\net10.0\\compressed\\xhunqdkvqb-{0}-fsbi9cje9m-fsbi9cje9m.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000079447049"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"12586"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"88yfwCB1JJrw5DzTwttuDUNRg1MC/QUUovOQTnyxGHA=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-0eqVT62kqRLJh9oTqLeIH4UnQskqVjib8hl2fXxl4lg="},{"Name":"original-resource","Value":"\"0eqVT62kqRLJh9oTqLeIH4UnQskqVjib8hl2fXxl4lg=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.min.css.map","AssetFile":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-reboot.min.css.map","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"51369"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"0eqVT62kqRLJh9oTqLeIH4UnQskqVjib8hl2fXxl4lg=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:34:31 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-0eqVT62kqRLJh9oTqLeIH4UnQskqVjib8hl2fXxl4lg="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.min.css.map.gz","AssetFile":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Debug\\net10.0\\compressed\\xhunqdkvqb-{0}-fsbi9cje9m-fsbi9cje9m.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"12586"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"88yfwCB1JJrw5DzTwttuDUNRg1MC/QUUovOQTnyxGHA=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-88yfwCB1JJrw5DzTwttuDUNRg1MC/QUUovOQTnyxGHA="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.css","AssetFile":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Debug\\net10.0\\compressed\\gomvvqnjlm-{0}-rzd6atqjts-rzd6atqjts.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000296912114"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"3367"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"bhwmNaLC/7dOUfZxpXsnreiNsp2lbllRXrZLXndYFgA=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-V8psnHoJS/MPlCXWwc/J3tGtp9c3gGFRmqsIQgpn+Gg="},{"Name":"original-resource","Value":"\"V8psnHoJS/MPlCXWwc/J3tGtp9c3gGFRmqsIQgpn+Gg=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.css","AssetFile":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-reboot.rtl.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"12058"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"V8psnHoJS/MPlCXWwc/J3tGtp9c3gGFRmqsIQgpn+Gg=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:34:31 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-V8psnHoJS/MPlCXWwc/J3tGtp9c3gGFRmqsIQgpn+Gg="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.ee0r1s7dh0.map","AssetFile":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Debug\\net10.0\\compressed\\c34v41vs4l-{0}-ee0r1s7dh0-ee0r1s7dh0.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000038708678"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"25833"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"sl2J4PyaPSvjqR/Hna2zAWkp1RoiFiSsNBf28UxmegA=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ee0r1s7dh0"},{"Name":"integrity","Value":"sha256-OoQVwh7Arp7bVoK2ZiTx2S//KrnPrSPzPZ93CqCMhe8="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.map"},{"Name":"original-resource","Value":"\"OoQVwh7Arp7bVoK2ZiTx2S//KrnPrSPzPZ93CqCMhe8=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.ee0r1s7dh0.map","AssetFile":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-reboot.rtl.css.map","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"129386"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"OoQVwh7Arp7bVoK2ZiTx2S//KrnPrSPzPZ93CqCMhe8=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:34:31 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ee0r1s7dh0"},{"Name":"integrity","Value":"sha256-OoQVwh7Arp7bVoK2ZiTx2S//KrnPrSPzPZ93CqCMhe8="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.map"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.ee0r1s7dh0.map.gz","AssetFile":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Debug\\net10.0\\compressed\\c34v41vs4l-{0}-ee0r1s7dh0-ee0r1s7dh0.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"25833"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"sl2J4PyaPSvjqR/Hna2zAWkp1RoiFiSsNBf28UxmegA=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ee0r1s7dh0"},{"Name":"integrity","Value":"sha256-sl2J4PyaPSvjqR/Hna2zAWkp1RoiFiSsNBf28UxmegA="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.map.gz"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.gz","AssetFile":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Debug\\net10.0\\compressed\\gomvvqnjlm-{0}-rzd6atqjts-rzd6atqjts.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"3367"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"bhwmNaLC/7dOUfZxpXsnreiNsp2lbllRXrZLXndYFgA=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-bhwmNaLC/7dOUfZxpXsnreiNsp2lbllRXrZLXndYFgA="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.map","AssetFile":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Debug\\net10.0\\compressed\\c34v41vs4l-{0}-ee0r1s7dh0-ee0r1s7dh0.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000038708678"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"25833"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"sl2J4PyaPSvjqR/Hna2zAWkp1RoiFiSsNBf28UxmegA=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-OoQVwh7Arp7bVoK2ZiTx2S//KrnPrSPzPZ93CqCMhe8="},{"Name":"original-resource","Value":"\"OoQVwh7Arp7bVoK2ZiTx2S//KrnPrSPzPZ93CqCMhe8=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.map","AssetFile":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-reboot.rtl.css.map","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"129386"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"OoQVwh7Arp7bVoK2ZiTx2S//KrnPrSPzPZ93CqCMhe8=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:34:31 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-OoQVwh7Arp7bVoK2ZiTx2S//KrnPrSPzPZ93CqCMhe8="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.map.gz","AssetFile":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Debug\\net10.0\\compressed\\c34v41vs4l-{0}-ee0r1s7dh0-ee0r1s7dh0.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"25833"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"sl2J4PyaPSvjqR/Hna2zAWkp1RoiFiSsNBf28UxmegA=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-sl2J4PyaPSvjqR/Hna2zAWkp1RoiFiSsNBf28UxmegA="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css","AssetFile":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Debug\\net10.0\\compressed\\0p7lrldjgj-{0}-dxx9fxp4il-dxx9fxp4il.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000307976594"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"3246"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"qNJnRAEMymFdtmi8gvc2VbVtDDk/UjeSnp+VQ10+cl0=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-/8jh8hcEMFKyS6goWqnNu7t3EzZPCGdQZgO6sCkI8tI="},{"Name":"original-resource","Value":"\"/8jh8hcEMFKyS6goWqnNu7t3EzZPCGdQZgO6sCkI8tI=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css","AssetFile":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-reboot.rtl.min.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"10198"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"/8jh8hcEMFKyS6goWqnNu7t3EzZPCGdQZgO6sCkI8tI=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:34:31 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-/8jh8hcEMFKyS6goWqnNu7t3EzZPCGdQZgO6sCkI8tI="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.gz","AssetFile":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Debug\\net10.0\\compressed\\0p7lrldjgj-{0}-dxx9fxp4il-dxx9fxp4il.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"3246"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"qNJnRAEMymFdtmi8gvc2VbVtDDk/UjeSnp+VQ10+cl0=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-qNJnRAEMymFdtmi8gvc2VbVtDDk/UjeSnp+VQ10+cl0="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.jd9uben2k1.map","AssetFile":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Debug\\net10.0\\compressed\\0auc0xnlsy-{0}-jd9uben2k1-jd9uben2k1.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000066242713"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"15095"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"M4FJKHpyw4IJV5nzbfV0Vwvv60A8wkjnquz6IK029pA=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"jd9uben2k1"},{"Name":"integrity","Value":"sha256-910zw+rMdcg0Ls48ATp65vEn8rd5HvPxOKm2x3/CBII="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.map"},{"Name":"original-resource","Value":"\"910zw+rMdcg0Ls48ATp65vEn8rd5HvPxOKm2x3/CBII=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.jd9uben2k1.map","AssetFile":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-reboot.rtl.min.css.map","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"63943"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"910zw+rMdcg0Ls48ATp65vEn8rd5HvPxOKm2x3/CBII=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:34:31 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"jd9uben2k1"},{"Name":"integrity","Value":"sha256-910zw+rMdcg0Ls48ATp65vEn8rd5HvPxOKm2x3/CBII="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.map"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.jd9uben2k1.map.gz","AssetFile":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Debug\\net10.0\\compressed\\0auc0xnlsy-{0}-jd9uben2k1-jd9uben2k1.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"15095"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"M4FJKHpyw4IJV5nzbfV0Vwvv60A8wkjnquz6IK029pA=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"jd9uben2k1"},{"Name":"integrity","Value":"sha256-M4FJKHpyw4IJV5nzbfV0Vwvv60A8wkjnquz6IK029pA="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.map.gz"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.map","AssetFile":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Debug\\net10.0\\compressed\\0auc0xnlsy-{0}-jd9uben2k1-jd9uben2k1.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000066242713"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"15095"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"M4FJKHpyw4IJV5nzbfV0Vwvv60A8wkjnquz6IK029pA=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-910zw+rMdcg0Ls48ATp65vEn8rd5HvPxOKm2x3/CBII="},{"Name":"original-resource","Value":"\"910zw+rMdcg0Ls48ATp65vEn8rd5HvPxOKm2x3/CBII=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.map","AssetFile":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-reboot.rtl.min.css.map","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"63943"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"910zw+rMdcg0Ls48ATp65vEn8rd5HvPxOKm2x3/CBII=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:34:31 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-910zw+rMdcg0Ls48ATp65vEn8rd5HvPxOKm2x3/CBII="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.map.gz","AssetFile":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Debug\\net10.0\\compressed\\0auc0xnlsy-{0}-jd9uben2k1-jd9uben2k1.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"15095"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"M4FJKHpyw4IJV5nzbfV0Vwvv60A8wkjnquz6IK029pA=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-M4FJKHpyw4IJV5nzbfV0Vwvv60A8wkjnquz6IK029pA="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.dxx9fxp4il.css","AssetFile":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Debug\\net10.0\\compressed\\0p7lrldjgj-{0}-dxx9fxp4il-dxx9fxp4il.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000307976594"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"3246"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"qNJnRAEMymFdtmi8gvc2VbVtDDk/UjeSnp+VQ10+cl0=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"dxx9fxp4il"},{"Name":"integrity","Value":"sha256-/8jh8hcEMFKyS6goWqnNu7t3EzZPCGdQZgO6sCkI8tI="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css"},{"Name":"original-resource","Value":"\"/8jh8hcEMFKyS6goWqnNu7t3EzZPCGdQZgO6sCkI8tI=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.dxx9fxp4il.css","AssetFile":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-reboot.rtl.min.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"10198"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"/8jh8hcEMFKyS6goWqnNu7t3EzZPCGdQZgO6sCkI8tI=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:34:31 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"dxx9fxp4il"},{"Name":"integrity","Value":"sha256-/8jh8hcEMFKyS6goWqnNu7t3EzZPCGdQZgO6sCkI8tI="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.dxx9fxp4il.css.gz","AssetFile":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Debug\\net10.0\\compressed\\0p7lrldjgj-{0}-dxx9fxp4il-dxx9fxp4il.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"3246"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"qNJnRAEMymFdtmi8gvc2VbVtDDk/UjeSnp+VQ10+cl0=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"dxx9fxp4il"},{"Name":"integrity","Value":"sha256-qNJnRAEMymFdtmi8gvc2VbVtDDk/UjeSnp+VQ10+cl0="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.gz"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.rzd6atqjts.css","AssetFile":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Debug\\net10.0\\compressed\\gomvvqnjlm-{0}-rzd6atqjts-rzd6atqjts.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000296912114"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"3367"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"bhwmNaLC/7dOUfZxpXsnreiNsp2lbllRXrZLXndYFgA=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"rzd6atqjts"},{"Name":"integrity","Value":"sha256-V8psnHoJS/MPlCXWwc/J3tGtp9c3gGFRmqsIQgpn+Gg="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.css"},{"Name":"original-resource","Value":"\"V8psnHoJS/MPlCXWwc/J3tGtp9c3gGFRmqsIQgpn+Gg=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.rzd6atqjts.css","AssetFile":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-reboot.rtl.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"12058"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"V8psnHoJS/MPlCXWwc/J3tGtp9c3gGFRmqsIQgpn+Gg=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:34:31 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"rzd6atqjts"},{"Name":"integrity","Value":"sha256-V8psnHoJS/MPlCXWwc/J3tGtp9c3gGFRmqsIQgpn+Gg="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.css"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.rzd6atqjts.css.gz","AssetFile":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Debug\\net10.0\\compressed\\gomvvqnjlm-{0}-rzd6atqjts-rzd6atqjts.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"3367"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"bhwmNaLC/7dOUfZxpXsnreiNsp2lbllRXrZLXndYFgA=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"rzd6atqjts"},{"Name":"integrity","Value":"sha256-bhwmNaLC/7dOUfZxpXsnreiNsp2lbllRXrZLXndYFgA="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.gz"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.ub07r2b239.css","AssetFile":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Debug\\net10.0\\compressed\\110gjqadz3-{0}-ub07r2b239-ub07r2b239.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000295770482"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"3380"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"+EIaQ03ZHgfVopnrJFjz7ZgQSAO9GeMOK+bzccTIQyE=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ub07r2b239"},{"Name":"integrity","Value":"sha256-lo9YI82OF03vojdu+XOR3+DRrLIpMhpzZNmHbM5CDMA="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-reboot.css"},{"Name":"original-resource","Value":"\"lo9YI82OF03vojdu+XOR3+DRrLIpMhpzZNmHbM5CDMA=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.ub07r2b239.css","AssetFile":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-reboot.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"12065"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"lo9YI82OF03vojdu+XOR3+DRrLIpMhpzZNmHbM5CDMA=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:34:31 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ub07r2b239"},{"Name":"integrity","Value":"sha256-lo9YI82OF03vojdu+XOR3+DRrLIpMhpzZNmHbM5CDMA="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-reboot.css"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.ub07r2b239.css.gz","AssetFile":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Debug\\net10.0\\compressed\\110gjqadz3-{0}-ub07r2b239-ub07r2b239.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"3380"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"+EIaQ03ZHgfVopnrJFjz7ZgQSAO9GeMOK+bzccTIQyE=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ub07r2b239"},{"Name":"integrity","Value":"sha256-+EIaQ03ZHgfVopnrJFjz7ZgQSAO9GeMOK+bzccTIQyE="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-reboot.css.gz"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.css","AssetFile":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Debug\\net10.0\\compressed\\pbeu27ik9w-{0}-khv3u5hwcm-khv3u5hwcm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000083388926"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"11991"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"8+5oxr92QYcYeV3zAk8RS4XmZo6Y5i3ZmbiJXj9KVQo=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-2BubgNUPlQSF/0wLFcRXQ/Yjzk9vsUbDAeK2QM+h+yo="},{"Name":"original-resource","Value":"\"2BubgNUPlQSF/0wLFcRXQ/Yjzk9vsUbDAeK2QM+h+yo=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.css","AssetFile":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-utilities.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"107823"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"2BubgNUPlQSF/0wLFcRXQ/Yjzk9vsUbDAeK2QM+h+yo=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:34:31 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-2BubgNUPlQSF/0wLFcRXQ/Yjzk9vsUbDAeK2QM+h+yo="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.css.gz","AssetFile":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Debug\\net10.0\\compressed\\pbeu27ik9w-{0}-khv3u5hwcm-khv3u5hwcm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"11991"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"8+5oxr92QYcYeV3zAk8RS4XmZo6Y5i3ZmbiJXj9KVQo=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-8+5oxr92QYcYeV3zAk8RS4XmZo6Y5i3ZmbiJXj9KVQo="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.css.map","AssetFile":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Debug\\net10.0\\compressed\\79raj0bcrr-{0}-r4e9w2rdcm-r4e9w2rdcm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000022662890"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"44124"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"G+vjiEeP6kST5cIl0dMgkpqYVHtGzW2FoEEhPm8uXFQ=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Nfjrc4Ur9Fv2oBEswQWIyBnNDP99q+LhL+z9553O0cY="},{"Name":"original-resource","Value":"\"Nfjrc4Ur9Fv2oBEswQWIyBnNDP99q+LhL+z9553O0cY=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.css.map","AssetFile":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-utilities.css.map","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"267535"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"Nfjrc4Ur9Fv2oBEswQWIyBnNDP99q+LhL+z9553O0cY=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:34:31 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Nfjrc4Ur9Fv2oBEswQWIyBnNDP99q+LhL+z9553O0cY="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.css.map.gz","AssetFile":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Debug\\net10.0\\compressed\\79raj0bcrr-{0}-r4e9w2rdcm-r4e9w2rdcm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"44124"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"G+vjiEeP6kST5cIl0dMgkpqYVHtGzW2FoEEhPm8uXFQ=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-G+vjiEeP6kST5cIl0dMgkpqYVHtGzW2FoEEhPm8uXFQ="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.css.r4e9w2rdcm.map","AssetFile":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Debug\\net10.0\\compressed\\79raj0bcrr-{0}-r4e9w2rdcm-r4e9w2rdcm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000022662890"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"44124"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"G+vjiEeP6kST5cIl0dMgkpqYVHtGzW2FoEEhPm8uXFQ=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"r4e9w2rdcm"},{"Name":"integrity","Value":"sha256-Nfjrc4Ur9Fv2oBEswQWIyBnNDP99q+LhL+z9553O0cY="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-utilities.css.map"},{"Name":"original-resource","Value":"\"Nfjrc4Ur9Fv2oBEswQWIyBnNDP99q+LhL+z9553O0cY=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.css.r4e9w2rdcm.map","AssetFile":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-utilities.css.map","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"267535"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"Nfjrc4Ur9Fv2oBEswQWIyBnNDP99q+LhL+z9553O0cY=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:34:31 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"r4e9w2rdcm"},{"Name":"integrity","Value":"sha256-Nfjrc4Ur9Fv2oBEswQWIyBnNDP99q+LhL+z9553O0cY="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-utilities.css.map"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.css.r4e9w2rdcm.map.gz","AssetFile":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Debug\\net10.0\\compressed\\79raj0bcrr-{0}-r4e9w2rdcm-r4e9w2rdcm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"44124"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"G+vjiEeP6kST5cIl0dMgkpqYVHtGzW2FoEEhPm8uXFQ=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"r4e9w2rdcm"},{"Name":"integrity","Value":"sha256-G+vjiEeP6kST5cIl0dMgkpqYVHtGzW2FoEEhPm8uXFQ="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-utilities.css.map.gz"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.khv3u5hwcm.css","AssetFile":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Debug\\net10.0\\compressed\\pbeu27ik9w-{0}-khv3u5hwcm-khv3u5hwcm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000083388926"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"11991"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"8+5oxr92QYcYeV3zAk8RS4XmZo6Y5i3ZmbiJXj9KVQo=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"khv3u5hwcm"},{"Name":"integrity","Value":"sha256-2BubgNUPlQSF/0wLFcRXQ/Yjzk9vsUbDAeK2QM+h+yo="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-utilities.css"},{"Name":"original-resource","Value":"\"2BubgNUPlQSF/0wLFcRXQ/Yjzk9vsUbDAeK2QM+h+yo=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.khv3u5hwcm.css","AssetFile":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-utilities.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"107823"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"2BubgNUPlQSF/0wLFcRXQ/Yjzk9vsUbDAeK2QM+h+yo=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:34:31 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"khv3u5hwcm"},{"Name":"integrity","Value":"sha256-2BubgNUPlQSF/0wLFcRXQ/Yjzk9vsUbDAeK2QM+h+yo="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-utilities.css"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.khv3u5hwcm.css.gz","AssetFile":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Debug\\net10.0\\compressed\\pbeu27ik9w-{0}-khv3u5hwcm-khv3u5hwcm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"11991"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"8+5oxr92QYcYeV3zAk8RS4XmZo6Y5i3ZmbiJXj9KVQo=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"khv3u5hwcm"},{"Name":"integrity","Value":"sha256-8+5oxr92QYcYeV3zAk8RS4XmZo6Y5i3ZmbiJXj9KVQo="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-utilities.css.gz"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.min.css","AssetFile":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Debug\\net10.0\\compressed\\jqrauj2svw-{0}-lcd1t2u6c8-lcd1t2u6c8.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000090383225"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"11063"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"xp5LPZ0vlqmxQrG+KjPm7ijhhJ+gD7VeH35lOUwBTWM=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-KyE9xbKO9CuYx0HXpIKgsWIvXkAfITtiQ172j26wmRs="},{"Name":"original-resource","Value":"\"KyE9xbKO9CuYx0HXpIKgsWIvXkAfITtiQ172j26wmRs=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.min.css","AssetFile":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-utilities.min.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"85352"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"KyE9xbKO9CuYx0HXpIKgsWIvXkAfITtiQ172j26wmRs=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:34:31 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-KyE9xbKO9CuYx0HXpIKgsWIvXkAfITtiQ172j26wmRs="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.min.css.c2oey78nd0.map","AssetFile":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Debug\\net10.0\\compressed\\pj5n2mkkzw-{0}-c2oey78nd0-c2oey78nd0.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000041062703"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"24352"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"TQK1gkY5TwZe0PcEU9oPCPHWKcNR7OXqgO0AeBYCb3U=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"c2oey78nd0"},{"Name":"integrity","Value":"sha256-rHDmip4JZzuaGOcSQ1QSQrIbG0Eb3Zja9whqSF1zYIU="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-utilities.min.css.map"},{"Name":"original-resource","Value":"\"rHDmip4JZzuaGOcSQ1QSQrIbG0Eb3Zja9whqSF1zYIU=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.min.css.c2oey78nd0.map","AssetFile":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-utilities.min.css.map","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"180381"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"rHDmip4JZzuaGOcSQ1QSQrIbG0Eb3Zja9whqSF1zYIU=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:34:31 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"c2oey78nd0"},{"Name":"integrity","Value":"sha256-rHDmip4JZzuaGOcSQ1QSQrIbG0Eb3Zja9whqSF1zYIU="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-utilities.min.css.map"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.min.css.c2oey78nd0.map.gz","AssetFile":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Debug\\net10.0\\compressed\\pj5n2mkkzw-{0}-c2oey78nd0-c2oey78nd0.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"24352"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"TQK1gkY5TwZe0PcEU9oPCPHWKcNR7OXqgO0AeBYCb3U=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"c2oey78nd0"},{"Name":"integrity","Value":"sha256-TQK1gkY5TwZe0PcEU9oPCPHWKcNR7OXqgO0AeBYCb3U="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-utilities.min.css.map.gz"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.min.css.gz","AssetFile":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Debug\\net10.0\\compressed\\jqrauj2svw-{0}-lcd1t2u6c8-lcd1t2u6c8.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"11063"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"xp5LPZ0vlqmxQrG+KjPm7ijhhJ+gD7VeH35lOUwBTWM=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-xp5LPZ0vlqmxQrG+KjPm7ijhhJ+gD7VeH35lOUwBTWM="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.min.css.map","AssetFile":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Debug\\net10.0\\compressed\\pj5n2mkkzw-{0}-c2oey78nd0-c2oey78nd0.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000041062703"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"24352"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"TQK1gkY5TwZe0PcEU9oPCPHWKcNR7OXqgO0AeBYCb3U=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-rHDmip4JZzuaGOcSQ1QSQrIbG0Eb3Zja9whqSF1zYIU="},{"Name":"original-resource","Value":"\"rHDmip4JZzuaGOcSQ1QSQrIbG0Eb3Zja9whqSF1zYIU=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.min.css.map","AssetFile":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-utilities.min.css.map","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"180381"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"rHDmip4JZzuaGOcSQ1QSQrIbG0Eb3Zja9whqSF1zYIU=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:34:31 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-rHDmip4JZzuaGOcSQ1QSQrIbG0Eb3Zja9whqSF1zYIU="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.min.css.map.gz","AssetFile":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Debug\\net10.0\\compressed\\pj5n2mkkzw-{0}-c2oey78nd0-c2oey78nd0.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"24352"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"TQK1gkY5TwZe0PcEU9oPCPHWKcNR7OXqgO0AeBYCb3U=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-TQK1gkY5TwZe0PcEU9oPCPHWKcNR7OXqgO0AeBYCb3U="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.min.lcd1t2u6c8.css","AssetFile":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Debug\\net10.0\\compressed\\jqrauj2svw-{0}-lcd1t2u6c8-lcd1t2u6c8.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000090383225"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"11063"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"xp5LPZ0vlqmxQrG+KjPm7ijhhJ+gD7VeH35lOUwBTWM=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"lcd1t2u6c8"},{"Name":"integrity","Value":"sha256-KyE9xbKO9CuYx0HXpIKgsWIvXkAfITtiQ172j26wmRs="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-utilities.min.css"},{"Name":"original-resource","Value":"\"KyE9xbKO9CuYx0HXpIKgsWIvXkAfITtiQ172j26wmRs=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.min.lcd1t2u6c8.css","AssetFile":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-utilities.min.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"85352"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"KyE9xbKO9CuYx0HXpIKgsWIvXkAfITtiQ172j26wmRs=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:34:31 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"lcd1t2u6c8"},{"Name":"integrity","Value":"sha256-KyE9xbKO9CuYx0HXpIKgsWIvXkAfITtiQ172j26wmRs="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-utilities.min.css"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.min.lcd1t2u6c8.css.gz","AssetFile":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Debug\\net10.0\\compressed\\jqrauj2svw-{0}-lcd1t2u6c8-lcd1t2u6c8.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"11063"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"xp5LPZ0vlqmxQrG+KjPm7ijhhJ+gD7VeH35lOUwBTWM=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"lcd1t2u6c8"},{"Name":"integrity","Value":"sha256-xp5LPZ0vlqmxQrG+KjPm7ijhhJ+gD7VeH35lOUwBTWM="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-utilities.min.css.gz"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.css","AssetFile":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Debug\\net10.0\\compressed\\dt9lb9me9i-{0}-tdbxkamptv-tdbxkamptv.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000083794201"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"11933"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"QAnDcxiLhrclwEVeKtd/GREdZNbXO2rZP5agorcS5EM=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-H6wkBbSwjua2veJoThJo4uy161jp+DOiZTloUlcZ6qQ="},{"Name":"original-resource","Value":"\"H6wkBbSwjua2veJoThJo4uy161jp+DOiZTloUlcZ6qQ=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.css","AssetFile":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-utilities.rtl.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"107691"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"H6wkBbSwjua2veJoThJo4uy161jp+DOiZTloUlcZ6qQ=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:34:31 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-H6wkBbSwjua2veJoThJo4uy161jp+DOiZTloUlcZ6qQ="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.gz","AssetFile":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Debug\\net10.0\\compressed\\dt9lb9me9i-{0}-tdbxkamptv-tdbxkamptv.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"11933"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"QAnDcxiLhrclwEVeKtd/GREdZNbXO2rZP5agorcS5EM=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-QAnDcxiLhrclwEVeKtd/GREdZNbXO2rZP5agorcS5EM="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.j5mq2jizvt.map","AssetFile":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Debug\\net10.0\\compressed\\lwh7ckeki7-{0}-j5mq2jizvt-j5mq2jizvt.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000022676765"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"44097"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"e4SKSeUBYAMQYk9aT6NqaEr3vUfkTqZB8L0KIC7EPak=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"j5mq2jizvt"},{"Name":"integrity","Value":"sha256-p0BVq5Ve/dohBIdfbrZsoQNu02JSsKh1g0wbyiQiUaU="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.map"},{"Name":"original-resource","Value":"\"p0BVq5Ve/dohBIdfbrZsoQNu02JSsKh1g0wbyiQiUaU=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.j5mq2jizvt.map","AssetFile":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-utilities.rtl.css.map","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"267476"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"p0BVq5Ve/dohBIdfbrZsoQNu02JSsKh1g0wbyiQiUaU=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:34:31 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"j5mq2jizvt"},{"Name":"integrity","Value":"sha256-p0BVq5Ve/dohBIdfbrZsoQNu02JSsKh1g0wbyiQiUaU="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.map"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.j5mq2jizvt.map.gz","AssetFile":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Debug\\net10.0\\compressed\\lwh7ckeki7-{0}-j5mq2jizvt-j5mq2jizvt.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"44097"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"e4SKSeUBYAMQYk9aT6NqaEr3vUfkTqZB8L0KIC7EPak=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"j5mq2jizvt"},{"Name":"integrity","Value":"sha256-e4SKSeUBYAMQYk9aT6NqaEr3vUfkTqZB8L0KIC7EPak="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.map.gz"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.map","AssetFile":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Debug\\net10.0\\compressed\\lwh7ckeki7-{0}-j5mq2jizvt-j5mq2jizvt.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000022676765"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"44097"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"e4SKSeUBYAMQYk9aT6NqaEr3vUfkTqZB8L0KIC7EPak=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-p0BVq5Ve/dohBIdfbrZsoQNu02JSsKh1g0wbyiQiUaU="},{"Name":"original-resource","Value":"\"p0BVq5Ve/dohBIdfbrZsoQNu02JSsKh1g0wbyiQiUaU=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.map","AssetFile":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-utilities.rtl.css.map","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"267476"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"p0BVq5Ve/dohBIdfbrZsoQNu02JSsKh1g0wbyiQiUaU=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:34:31 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-p0BVq5Ve/dohBIdfbrZsoQNu02JSsKh1g0wbyiQiUaU="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.map.gz","AssetFile":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Debug\\net10.0\\compressed\\lwh7ckeki7-{0}-j5mq2jizvt-j5mq2jizvt.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"44097"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"e4SKSeUBYAMQYk9aT6NqaEr3vUfkTqZB8L0KIC7EPak=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-e4SKSeUBYAMQYk9aT6NqaEr3vUfkTqZB8L0KIC7EPak="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.06098lyss8.css","AssetFile":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Debug\\net10.0\\compressed\\4cblaxq6jh-{0}-06098lyss8-06098lyss8.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000090522314"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"11046"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"hXLxKxNQS6hkMWOc1Po5uxTK8ovzNg0xvRC9wMKOZiM=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"06098lyss8"},{"Name":"integrity","Value":"sha256-GAUum6FjwQ8HrXGaoFRnHTqQQLpljXGavT7mBX8E9qU="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css"},{"Name":"original-resource","Value":"\"GAUum6FjwQ8HrXGaoFRnHTqQQLpljXGavT7mBX8E9qU=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.06098lyss8.css","AssetFile":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-utilities.rtl.min.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"85281"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"GAUum6FjwQ8HrXGaoFRnHTqQQLpljXGavT7mBX8E9qU=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:34:31 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"06098lyss8"},{"Name":"integrity","Value":"sha256-GAUum6FjwQ8HrXGaoFRnHTqQQLpljXGavT7mBX8E9qU="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.06098lyss8.css.gz","AssetFile":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Debug\\net10.0\\compressed\\4cblaxq6jh-{0}-06098lyss8-06098lyss8.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"11046"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"hXLxKxNQS6hkMWOc1Po5uxTK8ovzNg0xvRC9wMKOZiM=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"06098lyss8"},{"Name":"integrity","Value":"sha256-hXLxKxNQS6hkMWOc1Po5uxTK8ovzNg0xvRC9wMKOZiM="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.gz"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css","AssetFile":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Debug\\net10.0\\compressed\\4cblaxq6jh-{0}-06098lyss8-06098lyss8.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000090522314"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"11046"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"hXLxKxNQS6hkMWOc1Po5uxTK8ovzNg0xvRC9wMKOZiM=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-GAUum6FjwQ8HrXGaoFRnHTqQQLpljXGavT7mBX8E9qU="},{"Name":"original-resource","Value":"\"GAUum6FjwQ8HrXGaoFRnHTqQQLpljXGavT7mBX8E9qU=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css","AssetFile":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-utilities.rtl.min.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"85281"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"GAUum6FjwQ8HrXGaoFRnHTqQQLpljXGavT7mBX8E9qU=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:34:31 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-GAUum6FjwQ8HrXGaoFRnHTqQQLpljXGavT7mBX8E9qU="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.gz","AssetFile":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Debug\\net10.0\\compressed\\4cblaxq6jh-{0}-06098lyss8-06098lyss8.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"11046"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"hXLxKxNQS6hkMWOc1Po5uxTK8ovzNg0xvRC9wMKOZiM=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-hXLxKxNQS6hkMWOc1Po5uxTK8ovzNg0xvRC9wMKOZiM="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.map","AssetFile":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Debug\\net10.0\\compressed\\44s2eqp64d-{0}-nvvlpmu67g-nvvlpmu67g.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000041137027"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"24308"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"cHE9/Oryzx3rvDz6rg6kwVAGdOFlXOCmBgU/SG5fJjA=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-o8XK32mcY/FfcOQ1D2HJvVuZ0YTXSURZDLXCK0fnQeA="},{"Name":"original-resource","Value":"\"o8XK32mcY/FfcOQ1D2HJvVuZ0YTXSURZDLXCK0fnQeA=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.map","AssetFile":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-utilities.rtl.min.css.map","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"180217"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"o8XK32mcY/FfcOQ1D2HJvVuZ0YTXSURZDLXCK0fnQeA=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:34:31 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-o8XK32mcY/FfcOQ1D2HJvVuZ0YTXSURZDLXCK0fnQeA="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.map.gz","AssetFile":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Debug\\net10.0\\compressed\\44s2eqp64d-{0}-nvvlpmu67g-nvvlpmu67g.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"24308"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"cHE9/Oryzx3rvDz6rg6kwVAGdOFlXOCmBgU/SG5fJjA=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-cHE9/Oryzx3rvDz6rg6kwVAGdOFlXOCmBgU/SG5fJjA="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.nvvlpmu67g.map","AssetFile":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Debug\\net10.0\\compressed\\44s2eqp64d-{0}-nvvlpmu67g-nvvlpmu67g.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000041137027"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"24308"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"cHE9/Oryzx3rvDz6rg6kwVAGdOFlXOCmBgU/SG5fJjA=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"nvvlpmu67g"},{"Name":"integrity","Value":"sha256-o8XK32mcY/FfcOQ1D2HJvVuZ0YTXSURZDLXCK0fnQeA="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.map"},{"Name":"original-resource","Value":"\"o8XK32mcY/FfcOQ1D2HJvVuZ0YTXSURZDLXCK0fnQeA=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.nvvlpmu67g.map","AssetFile":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-utilities.rtl.min.css.map","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"180217"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"o8XK32mcY/FfcOQ1D2HJvVuZ0YTXSURZDLXCK0fnQeA=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:34:31 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"nvvlpmu67g"},{"Name":"integrity","Value":"sha256-o8XK32mcY/FfcOQ1D2HJvVuZ0YTXSURZDLXCK0fnQeA="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.map"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.nvvlpmu67g.map.gz","AssetFile":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Debug\\net10.0\\compressed\\44s2eqp64d-{0}-nvvlpmu67g-nvvlpmu67g.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"24308"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"cHE9/Oryzx3rvDz6rg6kwVAGdOFlXOCmBgU/SG5fJjA=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"nvvlpmu67g"},{"Name":"integrity","Value":"sha256-cHE9/Oryzx3rvDz6rg6kwVAGdOFlXOCmBgU/SG5fJjA="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.map.gz"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.tdbxkamptv.css","AssetFile":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Debug\\net10.0\\compressed\\dt9lb9me9i-{0}-tdbxkamptv-tdbxkamptv.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000083794201"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"11933"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"QAnDcxiLhrclwEVeKtd/GREdZNbXO2rZP5agorcS5EM=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"tdbxkamptv"},{"Name":"integrity","Value":"sha256-H6wkBbSwjua2veJoThJo4uy161jp+DOiZTloUlcZ6qQ="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.css"},{"Name":"original-resource","Value":"\"H6wkBbSwjua2veJoThJo4uy161jp+DOiZTloUlcZ6qQ=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.tdbxkamptv.css","AssetFile":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-utilities.rtl.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"107691"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"H6wkBbSwjua2veJoThJo4uy161jp+DOiZTloUlcZ6qQ=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:34:31 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"tdbxkamptv"},{"Name":"integrity","Value":"sha256-H6wkBbSwjua2veJoThJo4uy161jp+DOiZTloUlcZ6qQ="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.css"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.tdbxkamptv.css.gz","AssetFile":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Debug\\net10.0\\compressed\\dt9lb9me9i-{0}-tdbxkamptv-tdbxkamptv.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"11933"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"QAnDcxiLhrclwEVeKtd/GREdZNbXO2rZP5agorcS5EM=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"tdbxkamptv"},{"Name":"integrity","Value":"sha256-QAnDcxiLhrclwEVeKtd/GREdZNbXO2rZP5agorcS5EM="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.gz"}]},{"Route":"lib/bootstrap/dist/css/bootstrap.css","AssetFile":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Debug\\net10.0\\compressed\\gcxof6xqvd-{0}-s35ty4nyc5-s35ty4nyc5.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000030067050"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"33258"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"pt+WNxTLLUqq6vRWwSTT2gtyBZCFg8ZA7nmeS+5+Z/s=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-GKEF18s44B5e0MolXAkpkqLiEbOVlKf6VyYr/G/E6pw="},{"Name":"original-resource","Value":"\"GKEF18s44B5e0MolXAkpkqLiEbOVlKf6VyYr/G/E6pw=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap.css","AssetFile":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"281046"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"GKEF18s44B5e0MolXAkpkqLiEbOVlKf6VyYr/G/E6pw=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:34:31 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-GKEF18s44B5e0MolXAkpkqLiEbOVlKf6VyYr/G/E6pw="}]},{"Route":"lib/bootstrap/dist/css/bootstrap.css.gz","AssetFile":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Debug\\net10.0\\compressed\\gcxof6xqvd-{0}-s35ty4nyc5-s35ty4nyc5.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"33258"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"pt+WNxTLLUqq6vRWwSTT2gtyBZCFg8ZA7nmeS+5+Z/s=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-pt+WNxTLLUqq6vRWwSTT2gtyBZCFg8ZA7nmeS+5+Z/s="}]},{"Route":"lib/bootstrap/dist/css/bootstrap.css.map","AssetFile":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Debug\\net10.0\\compressed\\z9wv7fs72k-{0}-pj5nd1wqec-pj5nd1wqec.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000008694367"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"115016"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"8MRqubXMeZHymG3Y+Uqns/oONNVcvUoxMPBYRNZmiNs=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-KzNVR3p7UZGba94dnCtlc6jXjK5urSPiZ/eNnKTmDkw="},{"Name":"original-resource","Value":"\"KzNVR3p7UZGba94dnCtlc6jXjK5urSPiZ/eNnKTmDkw=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap.css.map","AssetFile":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap.css.map","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"679755"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"KzNVR3p7UZGba94dnCtlc6jXjK5urSPiZ/eNnKTmDkw=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:34:31 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-KzNVR3p7UZGba94dnCtlc6jXjK5urSPiZ/eNnKTmDkw="}]},{"Route":"lib/bootstrap/dist/css/bootstrap.css.map.gz","AssetFile":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Debug\\net10.0\\compressed\\z9wv7fs72k-{0}-pj5nd1wqec-pj5nd1wqec.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"115016"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"8MRqubXMeZHymG3Y+Uqns/oONNVcvUoxMPBYRNZmiNs=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-8MRqubXMeZHymG3Y+Uqns/oONNVcvUoxMPBYRNZmiNs="}]},{"Route":"lib/bootstrap/dist/css/bootstrap.css.pj5nd1wqec.map","AssetFile":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Debug\\net10.0\\compressed\\z9wv7fs72k-{0}-pj5nd1wqec-pj5nd1wqec.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000008694367"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"115016"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"8MRqubXMeZHymG3Y+Uqns/oONNVcvUoxMPBYRNZmiNs=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"pj5nd1wqec"},{"Name":"integrity","Value":"sha256-KzNVR3p7UZGba94dnCtlc6jXjK5urSPiZ/eNnKTmDkw="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap.css.map"},{"Name":"original-resource","Value":"\"KzNVR3p7UZGba94dnCtlc6jXjK5urSPiZ/eNnKTmDkw=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap.css.pj5nd1wqec.map","AssetFile":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap.css.map","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"679755"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"KzNVR3p7UZGba94dnCtlc6jXjK5urSPiZ/eNnKTmDkw=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:34:31 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"pj5nd1wqec"},{"Name":"integrity","Value":"sha256-KzNVR3p7UZGba94dnCtlc6jXjK5urSPiZ/eNnKTmDkw="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap.css.map"}]},{"Route":"lib/bootstrap/dist/css/bootstrap.css.pj5nd1wqec.map.gz","AssetFile":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Debug\\net10.0\\compressed\\z9wv7fs72k-{0}-pj5nd1wqec-pj5nd1wqec.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"115016"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"8MRqubXMeZHymG3Y+Uqns/oONNVcvUoxMPBYRNZmiNs=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"pj5nd1wqec"},{"Name":"integrity","Value":"sha256-8MRqubXMeZHymG3Y+Uqns/oONNVcvUoxMPBYRNZmiNs="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap.css.map.gz"}]},{"Route":"lib/bootstrap/dist/css/bootstrap.min.46ein0sx1k.css","AssetFile":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Debug\\net10.0\\compressed\\4072jq1i2h-{0}-46ein0sx1k-46ein0sx1k.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000032288270"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"30970"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"ct6gh3bWPabPIUEmUcCXl7mxgr/V6roHfypeQaXerHU=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"46ein0sx1k"},{"Name":"integrity","Value":"sha256-PI8n5gCcz9cQqQXm3PEtDuPG8qx9oFsFctPg0S5zb8g="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap.min.css"},{"Name":"original-resource","Value":"\"PI8n5gCcz9cQqQXm3PEtDuPG8qx9oFsFctPg0S5zb8g=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap.min.46ein0sx1k.css","AssetFile":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap.min.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"232803"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"PI8n5gCcz9cQqQXm3PEtDuPG8qx9oFsFctPg0S5zb8g=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:34:31 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"46ein0sx1k"},{"Name":"integrity","Value":"sha256-PI8n5gCcz9cQqQXm3PEtDuPG8qx9oFsFctPg0S5zb8g="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap.min.css"}]},{"Route":"lib/bootstrap/dist/css/bootstrap.min.46ein0sx1k.css.gz","AssetFile":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Debug\\net10.0\\compressed\\4072jq1i2h-{0}-46ein0sx1k-46ein0sx1k.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"30970"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"ct6gh3bWPabPIUEmUcCXl7mxgr/V6roHfypeQaXerHU=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"46ein0sx1k"},{"Name":"integrity","Value":"sha256-ct6gh3bWPabPIUEmUcCXl7mxgr/V6roHfypeQaXerHU="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap.min.css.gz"}]},{"Route":"lib/bootstrap/dist/css/bootstrap.min.css","AssetFile":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Debug\\net10.0\\compressed\\4072jq1i2h-{0}-46ein0sx1k-46ein0sx1k.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000032288270"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"30970"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"ct6gh3bWPabPIUEmUcCXl7mxgr/V6roHfypeQaXerHU=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-PI8n5gCcz9cQqQXm3PEtDuPG8qx9oFsFctPg0S5zb8g="},{"Name":"original-resource","Value":"\"PI8n5gCcz9cQqQXm3PEtDuPG8qx9oFsFctPg0S5zb8g=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap.min.css","AssetFile":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap.min.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"232803"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"PI8n5gCcz9cQqQXm3PEtDuPG8qx9oFsFctPg0S5zb8g=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:34:31 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-PI8n5gCcz9cQqQXm3PEtDuPG8qx9oFsFctPg0S5zb8g="}]},{"Route":"lib/bootstrap/dist/css/bootstrap.min.css.gz","AssetFile":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Debug\\net10.0\\compressed\\4072jq1i2h-{0}-46ein0sx1k-46ein0sx1k.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"30970"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"ct6gh3bWPabPIUEmUcCXl7mxgr/V6roHfypeQaXerHU=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-ct6gh3bWPabPIUEmUcCXl7mxgr/V6roHfypeQaXerHU="}]},{"Route":"lib/bootstrap/dist/css/bootstrap.min.css.map","AssetFile":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Debug\\net10.0\\compressed\\a4eqfiv3ub-{0}-v0zj4ognzu-v0zj4ognzu.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000010890399"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"91823"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"9CI2KGakklFWR2ih9heBHyKNfnUGsALtlWASIJRc25A=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-8SM4U2NQpCLGTQLW5D/x3qSTwxVq2CP+GXYc3V1WwFs="},{"Name":"original-resource","Value":"\"8SM4U2NQpCLGTQLW5D/x3qSTwxVq2CP+GXYc3V1WwFs=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap.min.css.map","AssetFile":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap.min.css.map","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"589892"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"8SM4U2NQpCLGTQLW5D/x3qSTwxVq2CP+GXYc3V1WwFs=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:34:31 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-8SM4U2NQpCLGTQLW5D/x3qSTwxVq2CP+GXYc3V1WwFs="}]},{"Route":"lib/bootstrap/dist/css/bootstrap.min.css.map.gz","AssetFile":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Debug\\net10.0\\compressed\\a4eqfiv3ub-{0}-v0zj4ognzu-v0zj4ognzu.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"91823"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"9CI2KGakklFWR2ih9heBHyKNfnUGsALtlWASIJRc25A=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-9CI2KGakklFWR2ih9heBHyKNfnUGsALtlWASIJRc25A="}]},{"Route":"lib/bootstrap/dist/css/bootstrap.min.css.v0zj4ognzu.map","AssetFile":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Debug\\net10.0\\compressed\\a4eqfiv3ub-{0}-v0zj4ognzu-v0zj4ognzu.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000010890399"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"91823"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"9CI2KGakklFWR2ih9heBHyKNfnUGsALtlWASIJRc25A=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"v0zj4ognzu"},{"Name":"integrity","Value":"sha256-8SM4U2NQpCLGTQLW5D/x3qSTwxVq2CP+GXYc3V1WwFs="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap.min.css.map"},{"Name":"original-resource","Value":"\"8SM4U2NQpCLGTQLW5D/x3qSTwxVq2CP+GXYc3V1WwFs=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap.min.css.v0zj4ognzu.map","AssetFile":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap.min.css.map","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"589892"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"8SM4U2NQpCLGTQLW5D/x3qSTwxVq2CP+GXYc3V1WwFs=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:34:31 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"v0zj4ognzu"},{"Name":"integrity","Value":"sha256-8SM4U2NQpCLGTQLW5D/x3qSTwxVq2CP+GXYc3V1WwFs="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap.min.css.map"}]},{"Route":"lib/bootstrap/dist/css/bootstrap.min.css.v0zj4ognzu.map.gz","AssetFile":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Debug\\net10.0\\compressed\\a4eqfiv3ub-{0}-v0zj4ognzu-v0zj4ognzu.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"91823"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"9CI2KGakklFWR2ih9heBHyKNfnUGsALtlWASIJRc25A=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"v0zj4ognzu"},{"Name":"integrity","Value":"sha256-9CI2KGakklFWR2ih9heBHyKNfnUGsALtlWASIJRc25A="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap.min.css.map.gz"}]},{"Route":"lib/bootstrap/dist/css/bootstrap.rtl.37tfw0ft22.css","AssetFile":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Debug\\net10.0\\compressed\\rg0bjkw6wb-{0}-37tfw0ft22-37tfw0ft22.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000030203268"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"33108"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"fs1OjihDYC1UL3EjGsC/xVxgtu8ombjnF8kOmQxQ+Mo=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"37tfw0ft22"},{"Name":"integrity","Value":"sha256-j5E4XIj1p1kNnDi0x1teX9RXoh1/FNlPvCML9YmRh2Q="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap.rtl.css"},{"Name":"original-resource","Value":"\"j5E4XIj1p1kNnDi0x1teX9RXoh1/FNlPvCML9YmRh2Q=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap.rtl.37tfw0ft22.css","AssetFile":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap.rtl.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"280259"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"j5E4XIj1p1kNnDi0x1teX9RXoh1/FNlPvCML9YmRh2Q=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:34:31 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"37tfw0ft22"},{"Name":"integrity","Value":"sha256-j5E4XIj1p1kNnDi0x1teX9RXoh1/FNlPvCML9YmRh2Q="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap.rtl.css"}]},{"Route":"lib/bootstrap/dist/css/bootstrap.rtl.37tfw0ft22.css.gz","AssetFile":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Debug\\net10.0\\compressed\\rg0bjkw6wb-{0}-37tfw0ft22-37tfw0ft22.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"33108"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"fs1OjihDYC1UL3EjGsC/xVxgtu8ombjnF8kOmQxQ+Mo=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"37tfw0ft22"},{"Name":"integrity","Value":"sha256-fs1OjihDYC1UL3EjGsC/xVxgtu8ombjnF8kOmQxQ+Mo="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap.rtl.css.gz"}]},{"Route":"lib/bootstrap/dist/css/bootstrap.rtl.css","AssetFile":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Debug\\net10.0\\compressed\\rg0bjkw6wb-{0}-37tfw0ft22-37tfw0ft22.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000030203268"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"33108"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"fs1OjihDYC1UL3EjGsC/xVxgtu8ombjnF8kOmQxQ+Mo=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-j5E4XIj1p1kNnDi0x1teX9RXoh1/FNlPvCML9YmRh2Q="},{"Name":"original-resource","Value":"\"j5E4XIj1p1kNnDi0x1teX9RXoh1/FNlPvCML9YmRh2Q=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap.rtl.css","AssetFile":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap.rtl.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"280259"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"j5E4XIj1p1kNnDi0x1teX9RXoh1/FNlPvCML9YmRh2Q=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:34:31 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-j5E4XIj1p1kNnDi0x1teX9RXoh1/FNlPvCML9YmRh2Q="}]},{"Route":"lib/bootstrap/dist/css/bootstrap.rtl.css.gz","AssetFile":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Debug\\net10.0\\compressed\\rg0bjkw6wb-{0}-37tfw0ft22-37tfw0ft22.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"33108"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"fs1OjihDYC1UL3EjGsC/xVxgtu8ombjnF8kOmQxQ+Mo=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-fs1OjihDYC1UL3EjGsC/xVxgtu8ombjnF8kOmQxQ+Mo="}]},{"Route":"lib/bootstrap/dist/css/bootstrap.rtl.css.hrwsygsryq.map","AssetFile":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Debug\\net10.0\\compressed\\jomvpxly64-{0}-hrwsygsryq-hrwsygsryq.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000008698678"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"114959"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"u1Hpz3sxsOpr+ltBsyKbue1Mz8VL9c8goySlIAwPCh8=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"hrwsygsryq"},{"Name":"integrity","Value":"sha256-3bYWUiiVYMZfv2wq5JnXIsHlQKgSKs/VcRivgjgZ1ho="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap.rtl.css.map"},{"Name":"original-resource","Value":"\"3bYWUiiVYMZfv2wq5JnXIsHlQKgSKs/VcRivgjgZ1ho=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap.rtl.css.hrwsygsryq.map","AssetFile":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap.rtl.css.map","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"679615"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"3bYWUiiVYMZfv2wq5JnXIsHlQKgSKs/VcRivgjgZ1ho=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:34:31 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"hrwsygsryq"},{"Name":"integrity","Value":"sha256-3bYWUiiVYMZfv2wq5JnXIsHlQKgSKs/VcRivgjgZ1ho="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap.rtl.css.map"}]},{"Route":"lib/bootstrap/dist/css/bootstrap.rtl.css.hrwsygsryq.map.gz","AssetFile":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Debug\\net10.0\\compressed\\jomvpxly64-{0}-hrwsygsryq-hrwsygsryq.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"114959"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"u1Hpz3sxsOpr+ltBsyKbue1Mz8VL9c8goySlIAwPCh8=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"hrwsygsryq"},{"Name":"integrity","Value":"sha256-u1Hpz3sxsOpr+ltBsyKbue1Mz8VL9c8goySlIAwPCh8="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap.rtl.css.map.gz"}]},{"Route":"lib/bootstrap/dist/css/bootstrap.rtl.css.map","AssetFile":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Debug\\net10.0\\compressed\\jomvpxly64-{0}-hrwsygsryq-hrwsygsryq.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000008698678"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"114959"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"u1Hpz3sxsOpr+ltBsyKbue1Mz8VL9c8goySlIAwPCh8=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-3bYWUiiVYMZfv2wq5JnXIsHlQKgSKs/VcRivgjgZ1ho="},{"Name":"original-resource","Value":"\"3bYWUiiVYMZfv2wq5JnXIsHlQKgSKs/VcRivgjgZ1ho=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap.rtl.css.map","AssetFile":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap.rtl.css.map","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"679615"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"3bYWUiiVYMZfv2wq5JnXIsHlQKgSKs/VcRivgjgZ1ho=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:34:31 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-3bYWUiiVYMZfv2wq5JnXIsHlQKgSKs/VcRivgjgZ1ho="}]},{"Route":"lib/bootstrap/dist/css/bootstrap.rtl.css.map.gz","AssetFile":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Debug\\net10.0\\compressed\\jomvpxly64-{0}-hrwsygsryq-hrwsygsryq.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"114959"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"u1Hpz3sxsOpr+ltBsyKbue1Mz8VL9c8goySlIAwPCh8=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-u1Hpz3sxsOpr+ltBsyKbue1Mz8VL9c8goySlIAwPCh8="}]},{"Route":"lib/bootstrap/dist/css/bootstrap.rtl.min.css","AssetFile":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Debug\\net10.0\\compressed\\u4l44l4mup-{0}-pk9g2wxc8p-pk9g2wxc8p.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000032265350"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"30992"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"WwwE+3A7x1trge8XZeN9oKwkvd6mA0Oad5mAbTfmMtQ=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-h5lE7Nm8SkeIpBHHYxN99spP3VuGFKl5NZgsocil7zk="},{"Name":"original-resource","Value":"\"h5lE7Nm8SkeIpBHHYxN99spP3VuGFKl5NZgsocil7zk=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap.rtl.min.css","AssetFile":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap.rtl.min.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"232911"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"h5lE7Nm8SkeIpBHHYxN99spP3VuGFKl5NZgsocil7zk=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:34:31 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-h5lE7Nm8SkeIpBHHYxN99spP3VuGFKl5NZgsocil7zk="}]},{"Route":"lib/bootstrap/dist/css/bootstrap.rtl.min.css.ft3s53vfgj.map","AssetFile":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Debug\\net10.0\\compressed\\s45yklcy5s-{0}-ft3s53vfgj-ft3s53vfgj.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000010903223"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"91715"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"j64rFxRLhZHmUPsE/gjIPruUNUfXs1ivjm1eS9HMeoo=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ft3s53vfgj"},{"Name":"integrity","Value":"sha256-rTzXlnepcb/vgFAiB+U7ODQAfOlJLfM3gY6IU7eIANk="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap.rtl.min.css.map"},{"Name":"original-resource","Value":"\"rTzXlnepcb/vgFAiB+U7ODQAfOlJLfM3gY6IU7eIANk=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap.rtl.min.css.ft3s53vfgj.map","AssetFile":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap.rtl.min.css.map","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"589087"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"rTzXlnepcb/vgFAiB+U7ODQAfOlJLfM3gY6IU7eIANk=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:34:31 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ft3s53vfgj"},{"Name":"integrity","Value":"sha256-rTzXlnepcb/vgFAiB+U7ODQAfOlJLfM3gY6IU7eIANk="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap.rtl.min.css.map"}]},{"Route":"lib/bootstrap/dist/css/bootstrap.rtl.min.css.ft3s53vfgj.map.gz","AssetFile":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Debug\\net10.0\\compressed\\s45yklcy5s-{0}-ft3s53vfgj-ft3s53vfgj.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"91715"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"j64rFxRLhZHmUPsE/gjIPruUNUfXs1ivjm1eS9HMeoo=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ft3s53vfgj"},{"Name":"integrity","Value":"sha256-j64rFxRLhZHmUPsE/gjIPruUNUfXs1ivjm1eS9HMeoo="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap.rtl.min.css.map.gz"}]},{"Route":"lib/bootstrap/dist/css/bootstrap.rtl.min.css.gz","AssetFile":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Debug\\net10.0\\compressed\\u4l44l4mup-{0}-pk9g2wxc8p-pk9g2wxc8p.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"30992"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"WwwE+3A7x1trge8XZeN9oKwkvd6mA0Oad5mAbTfmMtQ=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-WwwE+3A7x1trge8XZeN9oKwkvd6mA0Oad5mAbTfmMtQ="}]},{"Route":"lib/bootstrap/dist/css/bootstrap.rtl.min.css.map","AssetFile":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Debug\\net10.0\\compressed\\s45yklcy5s-{0}-ft3s53vfgj-ft3s53vfgj.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000010903223"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"91715"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"j64rFxRLhZHmUPsE/gjIPruUNUfXs1ivjm1eS9HMeoo=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-rTzXlnepcb/vgFAiB+U7ODQAfOlJLfM3gY6IU7eIANk="},{"Name":"original-resource","Value":"\"rTzXlnepcb/vgFAiB+U7ODQAfOlJLfM3gY6IU7eIANk=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap.rtl.min.css.map","AssetFile":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap.rtl.min.css.map","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"589087"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"rTzXlnepcb/vgFAiB+U7ODQAfOlJLfM3gY6IU7eIANk=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:34:31 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-rTzXlnepcb/vgFAiB+U7ODQAfOlJLfM3gY6IU7eIANk="}]},{"Route":"lib/bootstrap/dist/css/bootstrap.rtl.min.css.map.gz","AssetFile":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Debug\\net10.0\\compressed\\s45yklcy5s-{0}-ft3s53vfgj-ft3s53vfgj.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"91715"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"j64rFxRLhZHmUPsE/gjIPruUNUfXs1ivjm1eS9HMeoo=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-j64rFxRLhZHmUPsE/gjIPruUNUfXs1ivjm1eS9HMeoo="}]},{"Route":"lib/bootstrap/dist/css/bootstrap.rtl.min.pk9g2wxc8p.css","AssetFile":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Debug\\net10.0\\compressed\\u4l44l4mup-{0}-pk9g2wxc8p-pk9g2wxc8p.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000032265350"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"30992"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"WwwE+3A7x1trge8XZeN9oKwkvd6mA0Oad5mAbTfmMtQ=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"pk9g2wxc8p"},{"Name":"integrity","Value":"sha256-h5lE7Nm8SkeIpBHHYxN99spP3VuGFKl5NZgsocil7zk="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap.rtl.min.css"},{"Name":"original-resource","Value":"\"h5lE7Nm8SkeIpBHHYxN99spP3VuGFKl5NZgsocil7zk=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap.rtl.min.pk9g2wxc8p.css","AssetFile":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap.rtl.min.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"232911"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"h5lE7Nm8SkeIpBHHYxN99spP3VuGFKl5NZgsocil7zk=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:34:31 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"pk9g2wxc8p"},{"Name":"integrity","Value":"sha256-h5lE7Nm8SkeIpBHHYxN99spP3VuGFKl5NZgsocil7zk="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap.rtl.min.css"}]},{"Route":"lib/bootstrap/dist/css/bootstrap.rtl.min.pk9g2wxc8p.css.gz","AssetFile":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Debug\\net10.0\\compressed\\u4l44l4mup-{0}-pk9g2wxc8p-pk9g2wxc8p.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"30992"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"WwwE+3A7x1trge8XZeN9oKwkvd6mA0Oad5mAbTfmMtQ=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"pk9g2wxc8p"},{"Name":"integrity","Value":"sha256-WwwE+3A7x1trge8XZeN9oKwkvd6mA0Oad5mAbTfmMtQ="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap.rtl.min.css.gz"}]},{"Route":"lib/bootstrap/dist/css/bootstrap.s35ty4nyc5.css","AssetFile":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Debug\\net10.0\\compressed\\gcxof6xqvd-{0}-s35ty4nyc5-s35ty4nyc5.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000030067050"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"33258"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"pt+WNxTLLUqq6vRWwSTT2gtyBZCFg8ZA7nmeS+5+Z/s=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"s35ty4nyc5"},{"Name":"integrity","Value":"sha256-GKEF18s44B5e0MolXAkpkqLiEbOVlKf6VyYr/G/E6pw="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap.css"},{"Name":"original-resource","Value":"\"GKEF18s44B5e0MolXAkpkqLiEbOVlKf6VyYr/G/E6pw=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap.s35ty4nyc5.css","AssetFile":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"281046"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"GKEF18s44B5e0MolXAkpkqLiEbOVlKf6VyYr/G/E6pw=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:34:31 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"s35ty4nyc5"},{"Name":"integrity","Value":"sha256-GKEF18s44B5e0MolXAkpkqLiEbOVlKf6VyYr/G/E6pw="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap.css"}]},{"Route":"lib/bootstrap/dist/css/bootstrap.s35ty4nyc5.css.gz","AssetFile":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Debug\\net10.0\\compressed\\gcxof6xqvd-{0}-s35ty4nyc5-s35ty4nyc5.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"33258"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"pt+WNxTLLUqq6vRWwSTT2gtyBZCFg8ZA7nmeS+5+Z/s=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"s35ty4nyc5"},{"Name":"integrity","Value":"sha256-pt+WNxTLLUqq6vRWwSTT2gtyBZCFg8ZA7nmeS+5+Z/s="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap.css.gz"}]},{"Route":"lib/bootstrap/dist/js/bootstrap.bundle.6cfz1n2cew.js","AssetFile":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Debug\\net10.0\\compressed\\ryegp6ubqi-{0}-6cfz1n2cew-6cfz1n2cew.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000022545881"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"44353"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"FwlVZHaqt/fCokCRPrJXpP3g8Xz8yowIwHYza63e5sA=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"6cfz1n2cew"},{"Name":"integrity","Value":"sha256-mkoRoV24jV+rCPWcHDR5awPx8VuzzJKN0ibhxZ9/WaM="},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.bundle.js"},{"Name":"original-resource","Value":"\"mkoRoV24jV+rCPWcHDR5awPx8VuzzJKN0ibhxZ9/WaM=\""}]},{"Route":"lib/bootstrap/dist/js/bootstrap.bundle.6cfz1n2cew.js","AssetFile":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\lib\\bootstrap\\dist\\js\\bootstrap.bundle.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"207819"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"mkoRoV24jV+rCPWcHDR5awPx8VuzzJKN0ibhxZ9/WaM=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:34:31 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"6cfz1n2cew"},{"Name":"integrity","Value":"sha256-mkoRoV24jV+rCPWcHDR5awPx8VuzzJKN0ibhxZ9/WaM="},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.bundle.js"}]},{"Route":"lib/bootstrap/dist/js/bootstrap.bundle.6cfz1n2cew.js.gz","AssetFile":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Debug\\net10.0\\compressed\\ryegp6ubqi-{0}-6cfz1n2cew-6cfz1n2cew.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"44353"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"FwlVZHaqt/fCokCRPrJXpP3g8Xz8yowIwHYza63e5sA=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"6cfz1n2cew"},{"Name":"integrity","Value":"sha256-FwlVZHaqt/fCokCRPrJXpP3g8Xz8yowIwHYza63e5sA="},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.bundle.js.gz"}]},{"Route":"lib/bootstrap/dist/js/bootstrap.bundle.js","AssetFile":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Debug\\net10.0\\compressed\\ryegp6ubqi-{0}-6cfz1n2cew-6cfz1n2cew.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000022545881"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"44353"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"FwlVZHaqt/fCokCRPrJXpP3g8Xz8yowIwHYza63e5sA=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-mkoRoV24jV+rCPWcHDR5awPx8VuzzJKN0ibhxZ9/WaM="},{"Name":"original-resource","Value":"\"mkoRoV24jV+rCPWcHDR5awPx8VuzzJKN0ibhxZ9/WaM=\""}]},{"Route":"lib/bootstrap/dist/js/bootstrap.bundle.js","AssetFile":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\lib\\bootstrap\\dist\\js\\bootstrap.bundle.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"207819"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"mkoRoV24jV+rCPWcHDR5awPx8VuzzJKN0ibhxZ9/WaM=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:34:31 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-mkoRoV24jV+rCPWcHDR5awPx8VuzzJKN0ibhxZ9/WaM="}]},{"Route":"lib/bootstrap/dist/js/bootstrap.bundle.js.6pdc2jztkx.map","AssetFile":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Debug\\net10.0\\compressed\\gfm26p5c1q-{0}-6pdc2jztkx-6pdc2jztkx.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000010860947"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"92072"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"1e0S5mPPo/9Qad4mnR2UVH1bu8Tevi6r+JvHAAykgfg=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"6pdc2jztkx"},{"Name":"integrity","Value":"sha256-Wq4aWW1rQdJ+6oAgy1JQc9IBjHL9T3MKfXTBNqOv02c="},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.bundle.js.map"},{"Name":"original-resource","Value":"\"Wq4aWW1rQdJ+6oAgy1JQc9IBjHL9T3MKfXTBNqOv02c=\""}]},{"Route":"lib/bootstrap/dist/js/bootstrap.bundle.js.6pdc2jztkx.map","AssetFile":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\lib\\bootstrap\\dist\\js\\bootstrap.bundle.js.map","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"444579"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"Wq4aWW1rQdJ+6oAgy1JQc9IBjHL9T3MKfXTBNqOv02c=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:34:31 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"6pdc2jztkx"},{"Name":"integrity","Value":"sha256-Wq4aWW1rQdJ+6oAgy1JQc9IBjHL9T3MKfXTBNqOv02c="},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.bundle.js.map"}]},{"Route":"lib/bootstrap/dist/js/bootstrap.bundle.js.6pdc2jztkx.map.gz","AssetFile":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Debug\\net10.0\\compressed\\gfm26p5c1q-{0}-6pdc2jztkx-6pdc2jztkx.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"92072"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"1e0S5mPPo/9Qad4mnR2UVH1bu8Tevi6r+JvHAAykgfg=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"6pdc2jztkx"},{"Name":"integrity","Value":"sha256-1e0S5mPPo/9Qad4mnR2UVH1bu8Tevi6r+JvHAAykgfg="},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.bundle.js.map.gz"}]},{"Route":"lib/bootstrap/dist/js/bootstrap.bundle.js.gz","AssetFile":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Debug\\net10.0\\compressed\\ryegp6ubqi-{0}-6cfz1n2cew-6cfz1n2cew.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"44353"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"FwlVZHaqt/fCokCRPrJXpP3g8Xz8yowIwHYza63e5sA=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-FwlVZHaqt/fCokCRPrJXpP3g8Xz8yowIwHYza63e5sA="}]},{"Route":"lib/bootstrap/dist/js/bootstrap.bundle.js.map","AssetFile":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Debug\\net10.0\\compressed\\gfm26p5c1q-{0}-6pdc2jztkx-6pdc2jztkx.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000010860947"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"92072"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"1e0S5mPPo/9Qad4mnR2UVH1bu8Tevi6r+JvHAAykgfg=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Wq4aWW1rQdJ+6oAgy1JQc9IBjHL9T3MKfXTBNqOv02c="},{"Name":"original-resource","Value":"\"Wq4aWW1rQdJ+6oAgy1JQc9IBjHL9T3MKfXTBNqOv02c=\""}]},{"Route":"lib/bootstrap/dist/js/bootstrap.bundle.js.map","AssetFile":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\lib\\bootstrap\\dist\\js\\bootstrap.bundle.js.map","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"444579"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"Wq4aWW1rQdJ+6oAgy1JQc9IBjHL9T3MKfXTBNqOv02c=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:34:31 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Wq4aWW1rQdJ+6oAgy1JQc9IBjHL9T3MKfXTBNqOv02c="}]},{"Route":"lib/bootstrap/dist/js/bootstrap.bundle.js.map.gz","AssetFile":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Debug\\net10.0\\compressed\\gfm26p5c1q-{0}-6pdc2jztkx-6pdc2jztkx.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"92072"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"1e0S5mPPo/9Qad4mnR2UVH1bu8Tevi6r+JvHAAykgfg=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-1e0S5mPPo/9Qad4mnR2UVH1bu8Tevi6r+JvHAAykgfg="}]},{"Route":"lib/bootstrap/dist/js/bootstrap.bundle.min.493y06b0oq.js","AssetFile":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Debug\\net10.0\\compressed\\wh1z5habmz-{0}-493y06b0oq-493y06b0oq.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000041692725"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"23984"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"PUb7rj1jLHgIo7Hwm3lvukBcGKDry7n7W2fa1xrz+zY=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"493y06b0oq"},{"Name":"integrity","Value":"sha256-CDOy6cOibCWEdsRiZuaHf8dSGGJRYuBGC+mjoJimHGw="},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.bundle.min.js"},{"Name":"original-resource","Value":"\"CDOy6cOibCWEdsRiZuaHf8dSGGJRYuBGC+mjoJimHGw=\""}]},{"Route":"lib/bootstrap/dist/js/bootstrap.bundle.min.493y06b0oq.js","AssetFile":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\lib\\bootstrap\\dist\\js\\bootstrap.bundle.min.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"80721"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"CDOy6cOibCWEdsRiZuaHf8dSGGJRYuBGC+mjoJimHGw=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:34:31 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"493y06b0oq"},{"Name":"integrity","Value":"sha256-CDOy6cOibCWEdsRiZuaHf8dSGGJRYuBGC+mjoJimHGw="},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.bundle.min.js"}]},{"Route":"lib/bootstrap/dist/js/bootstrap.bundle.min.493y06b0oq.js.gz","AssetFile":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Debug\\net10.0\\compressed\\wh1z5habmz-{0}-493y06b0oq-493y06b0oq.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"23984"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"PUb7rj1jLHgIo7Hwm3lvukBcGKDry7n7W2fa1xrz+zY=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"493y06b0oq"},{"Name":"integrity","Value":"sha256-PUb7rj1jLHgIo7Hwm3lvukBcGKDry7n7W2fa1xrz+zY="},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.bundle.min.js.gz"}]},{"Route":"lib/bootstrap/dist/js/bootstrap.bundle.min.js","AssetFile":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Debug\\net10.0\\compressed\\wh1z5habmz-{0}-493y06b0oq-493y06b0oq.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000041692725"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"23984"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"PUb7rj1jLHgIo7Hwm3lvukBcGKDry7n7W2fa1xrz+zY=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-CDOy6cOibCWEdsRiZuaHf8dSGGJRYuBGC+mjoJimHGw="},{"Name":"original-resource","Value":"\"CDOy6cOibCWEdsRiZuaHf8dSGGJRYuBGC+mjoJimHGw=\""}]},{"Route":"lib/bootstrap/dist/js/bootstrap.bundle.min.js","AssetFile":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\lib\\bootstrap\\dist\\js\\bootstrap.bundle.min.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"80721"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"CDOy6cOibCWEdsRiZuaHf8dSGGJRYuBGC+mjoJimHGw=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:34:31 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-CDOy6cOibCWEdsRiZuaHf8dSGGJRYuBGC+mjoJimHGw="}]},{"Route":"lib/bootstrap/dist/js/bootstrap.bundle.min.js.gz","AssetFile":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Debug\\net10.0\\compressed\\wh1z5habmz-{0}-493y06b0oq-493y06b0oq.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"23984"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"PUb7rj1jLHgIo7Hwm3lvukBcGKDry7n7W2fa1xrz+zY=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-PUb7rj1jLHgIo7Hwm3lvukBcGKDry7n7W2fa1xrz+zY="}]},{"Route":"lib/bootstrap/dist/js/bootstrap.bundle.min.js.iovd86k7lj.map","AssetFile":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Debug\\net10.0\\compressed\\oog3rser0x-{0}-iovd86k7lj-iovd86k7lj.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000011499276"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"86961"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"u2o8ZZaXgiYQGBSiviq197ts6elMTLIFCM5h/r+YzpI=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"iovd86k7lj"},{"Name":"integrity","Value":"sha256-Xj4HYxZBQ7qqHKBwa2EAugRS+RHWzpcTtI49vgezUSU="},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.bundle.min.js.map"},{"Name":"original-resource","Value":"\"Xj4HYxZBQ7qqHKBwa2EAugRS+RHWzpcTtI49vgezUSU=\""}]},{"Route":"lib/bootstrap/dist/js/bootstrap.bundle.min.js.iovd86k7lj.map","AssetFile":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\lib\\bootstrap\\dist\\js\\bootstrap.bundle.min.js.map","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"332090"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"Xj4HYxZBQ7qqHKBwa2EAugRS+RHWzpcTtI49vgezUSU=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:34:32 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"iovd86k7lj"},{"Name":"integrity","Value":"sha256-Xj4HYxZBQ7qqHKBwa2EAugRS+RHWzpcTtI49vgezUSU="},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.bundle.min.js.map"}]},{"Route":"lib/bootstrap/dist/js/bootstrap.bundle.min.js.iovd86k7lj.map.gz","AssetFile":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Debug\\net10.0\\compressed\\oog3rser0x-{0}-iovd86k7lj-iovd86k7lj.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"86961"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"u2o8ZZaXgiYQGBSiviq197ts6elMTLIFCM5h/r+YzpI=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"iovd86k7lj"},{"Name":"integrity","Value":"sha256-u2o8ZZaXgiYQGBSiviq197ts6elMTLIFCM5h/r+YzpI="},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.bundle.min.js.map.gz"}]},{"Route":"lib/bootstrap/dist/js/bootstrap.bundle.min.js.map","AssetFile":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Debug\\net10.0\\compressed\\oog3rser0x-{0}-iovd86k7lj-iovd86k7lj.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000011499276"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"86961"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"u2o8ZZaXgiYQGBSiviq197ts6elMTLIFCM5h/r+YzpI=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Xj4HYxZBQ7qqHKBwa2EAugRS+RHWzpcTtI49vgezUSU="},{"Name":"original-resource","Value":"\"Xj4HYxZBQ7qqHKBwa2EAugRS+RHWzpcTtI49vgezUSU=\""}]},{"Route":"lib/bootstrap/dist/js/bootstrap.bundle.min.js.map","AssetFile":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\lib\\bootstrap\\dist\\js\\bootstrap.bundle.min.js.map","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"332090"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"Xj4HYxZBQ7qqHKBwa2EAugRS+RHWzpcTtI49vgezUSU=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:34:32 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Xj4HYxZBQ7qqHKBwa2EAugRS+RHWzpcTtI49vgezUSU="}]},{"Route":"lib/bootstrap/dist/js/bootstrap.bundle.min.js.map.gz","AssetFile":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Debug\\net10.0\\compressed\\oog3rser0x-{0}-iovd86k7lj-iovd86k7lj.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"86961"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"u2o8ZZaXgiYQGBSiviq197ts6elMTLIFCM5h/r+YzpI=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-u2o8ZZaXgiYQGBSiviq197ts6elMTLIFCM5h/r+YzpI="}]},{"Route":"lib/bootstrap/dist/js/bootstrap.esm.js","AssetFile":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Debug\\net10.0\\compressed\\dd5v02aqjc-{0}-vr1egmr9el-vr1egmr9el.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000034659642"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"28851"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"wol+HTj/xiv1aZ5rAh91hRF83nnYHIOeqPJDujYZBV4=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-exiXZNJDwucXfuje3CbXPbuS6+Ery3z9sP+pgmvh8nA="},{"Name":"original-resource","Value":"\"exiXZNJDwucXfuje3CbXPbuS6+Ery3z9sP+pgmvh8nA=\""}]},{"Route":"lib/bootstrap/dist/js/bootstrap.esm.js","AssetFile":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\lib\\bootstrap\\dist\\js\\bootstrap.esm.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"135829"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"exiXZNJDwucXfuje3CbXPbuS6+Ery3z9sP+pgmvh8nA=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:34:32 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-exiXZNJDwucXfuje3CbXPbuS6+Ery3z9sP+pgmvh8nA="}]},{"Route":"lib/bootstrap/dist/js/bootstrap.esm.js.gz","AssetFile":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Debug\\net10.0\\compressed\\dd5v02aqjc-{0}-vr1egmr9el-vr1egmr9el.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"28851"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"wol+HTj/xiv1aZ5rAh91hRF83nnYHIOeqPJDujYZBV4=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-wol+HTj/xiv1aZ5rAh91hRF83nnYHIOeqPJDujYZBV4="}]},{"Route":"lib/bootstrap/dist/js/bootstrap.esm.js.kbrnm935zg.map","AssetFile":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Debug\\net10.0\\compressed\\61rmegrlmv-{0}-kbrnm935zg-kbrnm935zg.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000015592110"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"64134"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"FEVLoM8EBjBfNDxtN98NEdEJHpCjMxcAkjqPlv3oXEc=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"kbrnm935zg"},{"Name":"integrity","Value":"sha256-EPRLgpqWkahLxEn6CUjdM76RIYIw1xdHwTbeHssuj/4="},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.esm.js.map"},{"Name":"original-resource","Value":"\"EPRLgpqWkahLxEn6CUjdM76RIYIw1xdHwTbeHssuj/4=\""}]},{"Route":"lib/bootstrap/dist/js/bootstrap.esm.js.kbrnm935zg.map","AssetFile":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\lib\\bootstrap\\dist\\js\\bootstrap.esm.js.map","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"305438"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"EPRLgpqWkahLxEn6CUjdM76RIYIw1xdHwTbeHssuj/4=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:34:32 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"kbrnm935zg"},{"Name":"integrity","Value":"sha256-EPRLgpqWkahLxEn6CUjdM76RIYIw1xdHwTbeHssuj/4="},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.esm.js.map"}]},{"Route":"lib/bootstrap/dist/js/bootstrap.esm.js.kbrnm935zg.map.gz","AssetFile":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Debug\\net10.0\\compressed\\61rmegrlmv-{0}-kbrnm935zg-kbrnm935zg.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"64134"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"FEVLoM8EBjBfNDxtN98NEdEJHpCjMxcAkjqPlv3oXEc=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"kbrnm935zg"},{"Name":"integrity","Value":"sha256-FEVLoM8EBjBfNDxtN98NEdEJHpCjMxcAkjqPlv3oXEc="},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.esm.js.map.gz"}]},{"Route":"lib/bootstrap/dist/js/bootstrap.esm.js.map","AssetFile":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Debug\\net10.0\\compressed\\61rmegrlmv-{0}-kbrnm935zg-kbrnm935zg.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000015592110"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"64134"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"FEVLoM8EBjBfNDxtN98NEdEJHpCjMxcAkjqPlv3oXEc=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-EPRLgpqWkahLxEn6CUjdM76RIYIw1xdHwTbeHssuj/4="},{"Name":"original-resource","Value":"\"EPRLgpqWkahLxEn6CUjdM76RIYIw1xdHwTbeHssuj/4=\""}]},{"Route":"lib/bootstrap/dist/js/bootstrap.esm.js.map","AssetFile":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\lib\\bootstrap\\dist\\js\\bootstrap.esm.js.map","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"305438"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"EPRLgpqWkahLxEn6CUjdM76RIYIw1xdHwTbeHssuj/4=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:34:32 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-EPRLgpqWkahLxEn6CUjdM76RIYIw1xdHwTbeHssuj/4="}]},{"Route":"lib/bootstrap/dist/js/bootstrap.esm.js.map.gz","AssetFile":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Debug\\net10.0\\compressed\\61rmegrlmv-{0}-kbrnm935zg-kbrnm935zg.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"64134"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"FEVLoM8EBjBfNDxtN98NEdEJHpCjMxcAkjqPlv3oXEc=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-FEVLoM8EBjBfNDxtN98NEdEJHpCjMxcAkjqPlv3oXEc="}]},{"Route":"lib/bootstrap/dist/js/bootstrap.esm.min.jj8uyg4cgr.js","AssetFile":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Debug\\net10.0\\compressed\\0x3oeluflx-{0}-jj8uyg4cgr-jj8uyg4cgr.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000053659584"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"18635"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"WmNnoBgejwchZUYVA3o03QOAGOuMRS778DeXvhP6suo=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"jj8uyg4cgr"},{"Name":"integrity","Value":"sha256-QZdFT1ZNdly4rmgUBtXmXFS9BU1FTa+sPe6h794sFRQ="},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.esm.min.js"},{"Name":"original-resource","Value":"\"QZdFT1ZNdly4rmgUBtXmXFS9BU1FTa+sPe6h794sFRQ=\""}]},{"Route":"lib/bootstrap/dist/js/bootstrap.esm.min.jj8uyg4cgr.js","AssetFile":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\lib\\bootstrap\\dist\\js\\bootstrap.esm.min.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"73935"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"QZdFT1ZNdly4rmgUBtXmXFS9BU1FTa+sPe6h794sFRQ=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:34:32 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"jj8uyg4cgr"},{"Name":"integrity","Value":"sha256-QZdFT1ZNdly4rmgUBtXmXFS9BU1FTa+sPe6h794sFRQ="},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.esm.min.js"}]},{"Route":"lib/bootstrap/dist/js/bootstrap.esm.min.jj8uyg4cgr.js.gz","AssetFile":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Debug\\net10.0\\compressed\\0x3oeluflx-{0}-jj8uyg4cgr-jj8uyg4cgr.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"18635"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"WmNnoBgejwchZUYVA3o03QOAGOuMRS778DeXvhP6suo=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"jj8uyg4cgr"},{"Name":"integrity","Value":"sha256-WmNnoBgejwchZUYVA3o03QOAGOuMRS778DeXvhP6suo="},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.esm.min.js.gz"}]},{"Route":"lib/bootstrap/dist/js/bootstrap.esm.min.js","AssetFile":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Debug\\net10.0\\compressed\\0x3oeluflx-{0}-jj8uyg4cgr-jj8uyg4cgr.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000053659584"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"18635"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"WmNnoBgejwchZUYVA3o03QOAGOuMRS778DeXvhP6suo=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-QZdFT1ZNdly4rmgUBtXmXFS9BU1FTa+sPe6h794sFRQ="},{"Name":"original-resource","Value":"\"QZdFT1ZNdly4rmgUBtXmXFS9BU1FTa+sPe6h794sFRQ=\""}]},{"Route":"lib/bootstrap/dist/js/bootstrap.esm.min.js","AssetFile":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\lib\\bootstrap\\dist\\js\\bootstrap.esm.min.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"73935"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"QZdFT1ZNdly4rmgUBtXmXFS9BU1FTa+sPe6h794sFRQ=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:34:32 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-QZdFT1ZNdly4rmgUBtXmXFS9BU1FTa+sPe6h794sFRQ="}]},{"Route":"lib/bootstrap/dist/js/bootstrap.esm.min.js.gz","AssetFile":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Debug\\net10.0\\compressed\\0x3oeluflx-{0}-jj8uyg4cgr-jj8uyg4cgr.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"18635"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"WmNnoBgejwchZUYVA3o03QOAGOuMRS778DeXvhP6suo=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-WmNnoBgejwchZUYVA3o03QOAGOuMRS778DeXvhP6suo="}]},{"Route":"lib/bootstrap/dist/js/bootstrap.esm.min.js.map","AssetFile":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Debug\\net10.0\\compressed\\h7pf8rqo63-{0}-y7v9cxd14o-y7v9cxd14o.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000017645709"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"56670"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"j6u/zn+GRIVR7DjCioj3tkq2zAKNpSIfRdlNSkhuWuM=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Tsbv8z6VlNgVET8xvz/yLo/v5iJHTAj2J4hkhjP1rHM="},{"Name":"original-resource","Value":"\"Tsbv8z6VlNgVET8xvz/yLo/v5iJHTAj2J4hkhjP1rHM=\""}]},{"Route":"lib/bootstrap/dist/js/bootstrap.esm.min.js.map","AssetFile":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\lib\\bootstrap\\dist\\js\\bootstrap.esm.min.js.map","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"222455"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"Tsbv8z6VlNgVET8xvz/yLo/v5iJHTAj2J4hkhjP1rHM=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:34:32 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Tsbv8z6VlNgVET8xvz/yLo/v5iJHTAj2J4hkhjP1rHM="}]},{"Route":"lib/bootstrap/dist/js/bootstrap.esm.min.js.map.gz","AssetFile":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Debug\\net10.0\\compressed\\h7pf8rqo63-{0}-y7v9cxd14o-y7v9cxd14o.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"56670"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"j6u/zn+GRIVR7DjCioj3tkq2zAKNpSIfRdlNSkhuWuM=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-j6u/zn+GRIVR7DjCioj3tkq2zAKNpSIfRdlNSkhuWuM="}]},{"Route":"lib/bootstrap/dist/js/bootstrap.esm.min.js.y7v9cxd14o.map","AssetFile":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Debug\\net10.0\\compressed\\h7pf8rqo63-{0}-y7v9cxd14o-y7v9cxd14o.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000017645709"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"56670"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"j6u/zn+GRIVR7DjCioj3tkq2zAKNpSIfRdlNSkhuWuM=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"y7v9cxd14o"},{"Name":"integrity","Value":"sha256-Tsbv8z6VlNgVET8xvz/yLo/v5iJHTAj2J4hkhjP1rHM="},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.esm.min.js.map"},{"Name":"original-resource","Value":"\"Tsbv8z6VlNgVET8xvz/yLo/v5iJHTAj2J4hkhjP1rHM=\""}]},{"Route":"lib/bootstrap/dist/js/bootstrap.esm.min.js.y7v9cxd14o.map","AssetFile":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\lib\\bootstrap\\dist\\js\\bootstrap.esm.min.js.map","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"222455"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"Tsbv8z6VlNgVET8xvz/yLo/v5iJHTAj2J4hkhjP1rHM=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:34:32 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"y7v9cxd14o"},{"Name":"integrity","Value":"sha256-Tsbv8z6VlNgVET8xvz/yLo/v5iJHTAj2J4hkhjP1rHM="},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.esm.min.js.map"}]},{"Route":"lib/bootstrap/dist/js/bootstrap.esm.min.js.y7v9cxd14o.map.gz","AssetFile":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Debug\\net10.0\\compressed\\h7pf8rqo63-{0}-y7v9cxd14o-y7v9cxd14o.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"56670"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"j6u/zn+GRIVR7DjCioj3tkq2zAKNpSIfRdlNSkhuWuM=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"y7v9cxd14o"},{"Name":"integrity","Value":"sha256-j6u/zn+GRIVR7DjCioj3tkq2zAKNpSIfRdlNSkhuWuM="},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.esm.min.js.map.gz"}]},{"Route":"lib/bootstrap/dist/js/bootstrap.esm.vr1egmr9el.js","AssetFile":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Debug\\net10.0\\compressed\\dd5v02aqjc-{0}-vr1egmr9el-vr1egmr9el.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000034659642"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"28851"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"wol+HTj/xiv1aZ5rAh91hRF83nnYHIOeqPJDujYZBV4=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"vr1egmr9el"},{"Name":"integrity","Value":"sha256-exiXZNJDwucXfuje3CbXPbuS6+Ery3z9sP+pgmvh8nA="},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.esm.js"},{"Name":"original-resource","Value":"\"exiXZNJDwucXfuje3CbXPbuS6+Ery3z9sP+pgmvh8nA=\""}]},{"Route":"lib/bootstrap/dist/js/bootstrap.esm.vr1egmr9el.js","AssetFile":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\lib\\bootstrap\\dist\\js\\bootstrap.esm.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"135829"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"exiXZNJDwucXfuje3CbXPbuS6+Ery3z9sP+pgmvh8nA=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:34:32 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"vr1egmr9el"},{"Name":"integrity","Value":"sha256-exiXZNJDwucXfuje3CbXPbuS6+Ery3z9sP+pgmvh8nA="},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.esm.js"}]},{"Route":"lib/bootstrap/dist/js/bootstrap.esm.vr1egmr9el.js.gz","AssetFile":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Debug\\net10.0\\compressed\\dd5v02aqjc-{0}-vr1egmr9el-vr1egmr9el.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"28851"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"wol+HTj/xiv1aZ5rAh91hRF83nnYHIOeqPJDujYZBV4=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"vr1egmr9el"},{"Name":"integrity","Value":"sha256-wol+HTj/xiv1aZ5rAh91hRF83nnYHIOeqPJDujYZBV4="},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.esm.js.gz"}]},{"Route":"lib/bootstrap/dist/js/bootstrap.js","AssetFile":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Debug\\net10.0\\compressed\\a1937s5xj1-{0}-notf2xhcfb-notf2xhcfb.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000033819203"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"29568"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"vxTpQ/skdGaK1fWKJ6bpuKiCsKR5FwPOZXzuVrUcz58=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-+UW802wgVfnjaSbdwyHLlU7AVplb0WToOlvN1CnzIac="},{"Name":"original-resource","Value":"\"+UW802wgVfnjaSbdwyHLlU7AVplb0WToOlvN1CnzIac=\""}]},{"Route":"lib/bootstrap/dist/js/bootstrap.js","AssetFile":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\lib\\bootstrap\\dist\\js\\bootstrap.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"145401"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"+UW802wgVfnjaSbdwyHLlU7AVplb0WToOlvN1CnzIac=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:34:32 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-+UW802wgVfnjaSbdwyHLlU7AVplb0WToOlvN1CnzIac="}]},{"Route":"lib/bootstrap/dist/js/bootstrap.js.gz","AssetFile":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Debug\\net10.0\\compressed\\a1937s5xj1-{0}-notf2xhcfb-notf2xhcfb.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"29568"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"vxTpQ/skdGaK1fWKJ6bpuKiCsKR5FwPOZXzuVrUcz58=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-vxTpQ/skdGaK1fWKJ6bpuKiCsKR5FwPOZXzuVrUcz58="}]},{"Route":"lib/bootstrap/dist/js/bootstrap.js.h1s4sie4z3.map","AssetFile":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Debug\\net10.0\\compressed\\a7rq2yiqop-{0}-h1s4sie4z3-h1s4sie4z3.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000015519516"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"64434"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"6GxMyK5YAexwvliYNqeiH6oCqjjSdf0iOFokuntpNcU=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"h1s4sie4z3"},{"Name":"integrity","Value":"sha256-9Wr7Hxe8gCJDoIHh5xP29ldXvC3kN2GkifQj9c8vYx4="},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.js.map"},{"Name":"original-resource","Value":"\"9Wr7Hxe8gCJDoIHh5xP29ldXvC3kN2GkifQj9c8vYx4=\""}]},{"Route":"lib/bootstrap/dist/js/bootstrap.js.h1s4sie4z3.map","AssetFile":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\lib\\bootstrap\\dist\\js\\bootstrap.js.map","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"306606"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"9Wr7Hxe8gCJDoIHh5xP29ldXvC3kN2GkifQj9c8vYx4=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:34:32 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"h1s4sie4z3"},{"Name":"integrity","Value":"sha256-9Wr7Hxe8gCJDoIHh5xP29ldXvC3kN2GkifQj9c8vYx4="},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.js.map"}]},{"Route":"lib/bootstrap/dist/js/bootstrap.js.h1s4sie4z3.map.gz","AssetFile":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Debug\\net10.0\\compressed\\a7rq2yiqop-{0}-h1s4sie4z3-h1s4sie4z3.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"64434"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"6GxMyK5YAexwvliYNqeiH6oCqjjSdf0iOFokuntpNcU=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"h1s4sie4z3"},{"Name":"integrity","Value":"sha256-6GxMyK5YAexwvliYNqeiH6oCqjjSdf0iOFokuntpNcU="},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.js.map.gz"}]},{"Route":"lib/bootstrap/dist/js/bootstrap.js.map","AssetFile":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Debug\\net10.0\\compressed\\a7rq2yiqop-{0}-h1s4sie4z3-h1s4sie4z3.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000015519516"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"64434"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"6GxMyK5YAexwvliYNqeiH6oCqjjSdf0iOFokuntpNcU=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-9Wr7Hxe8gCJDoIHh5xP29ldXvC3kN2GkifQj9c8vYx4="},{"Name":"original-resource","Value":"\"9Wr7Hxe8gCJDoIHh5xP29ldXvC3kN2GkifQj9c8vYx4=\""}]},{"Route":"lib/bootstrap/dist/js/bootstrap.js.map","AssetFile":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\lib\\bootstrap\\dist\\js\\bootstrap.js.map","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"306606"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"9Wr7Hxe8gCJDoIHh5xP29ldXvC3kN2GkifQj9c8vYx4=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:34:32 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-9Wr7Hxe8gCJDoIHh5xP29ldXvC3kN2GkifQj9c8vYx4="}]},{"Route":"lib/bootstrap/dist/js/bootstrap.js.map.gz","AssetFile":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Debug\\net10.0\\compressed\\a7rq2yiqop-{0}-h1s4sie4z3-h1s4sie4z3.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"64434"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"6GxMyK5YAexwvliYNqeiH6oCqjjSdf0iOFokuntpNcU=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-6GxMyK5YAexwvliYNqeiH6oCqjjSdf0iOFokuntpNcU="}]},{"Route":"lib/bootstrap/dist/js/bootstrap.min.63fj8s7r0e.js","AssetFile":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Debug\\net10.0\\compressed\\ykh8zi7pka-{0}-63fj8s7r0e-63fj8s7r0e.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000060106990"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"16636"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"bIPgOT88ycSklHWxEzFQVPvNsgNbss3QQbyTqHho4PA=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"63fj8s7r0e"},{"Name":"integrity","Value":"sha256-3gQJhtmj7YnV1fmtbVcnAV6eI4ws0Tr48bVZCThtCGQ="},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.min.js"},{"Name":"original-resource","Value":"\"3gQJhtmj7YnV1fmtbVcnAV6eI4ws0Tr48bVZCThtCGQ=\""}]},{"Route":"lib/bootstrap/dist/js/bootstrap.min.63fj8s7r0e.js","AssetFile":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\lib\\bootstrap\\dist\\js\\bootstrap.min.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"60635"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"3gQJhtmj7YnV1fmtbVcnAV6eI4ws0Tr48bVZCThtCGQ=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:34:32 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"63fj8s7r0e"},{"Name":"integrity","Value":"sha256-3gQJhtmj7YnV1fmtbVcnAV6eI4ws0Tr48bVZCThtCGQ="},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.min.js"}]},{"Route":"lib/bootstrap/dist/js/bootstrap.min.63fj8s7r0e.js.gz","AssetFile":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Debug\\net10.0\\compressed\\ykh8zi7pka-{0}-63fj8s7r0e-63fj8s7r0e.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"16636"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"bIPgOT88ycSklHWxEzFQVPvNsgNbss3QQbyTqHho4PA=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"63fj8s7r0e"},{"Name":"integrity","Value":"sha256-bIPgOT88ycSklHWxEzFQVPvNsgNbss3QQbyTqHho4PA="},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.min.js.gz"}]},{"Route":"lib/bootstrap/dist/js/bootstrap.min.js","AssetFile":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Debug\\net10.0\\compressed\\ykh8zi7pka-{0}-63fj8s7r0e-63fj8s7r0e.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000060106990"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"16636"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"bIPgOT88ycSklHWxEzFQVPvNsgNbss3QQbyTqHho4PA=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-3gQJhtmj7YnV1fmtbVcnAV6eI4ws0Tr48bVZCThtCGQ="},{"Name":"original-resource","Value":"\"3gQJhtmj7YnV1fmtbVcnAV6eI4ws0Tr48bVZCThtCGQ=\""}]},{"Route":"lib/bootstrap/dist/js/bootstrap.min.js","AssetFile":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\lib\\bootstrap\\dist\\js\\bootstrap.min.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"60635"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"3gQJhtmj7YnV1fmtbVcnAV6eI4ws0Tr48bVZCThtCGQ=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:34:32 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-3gQJhtmj7YnV1fmtbVcnAV6eI4ws0Tr48bVZCThtCGQ="}]},{"Route":"lib/bootstrap/dist/js/bootstrap.min.js.0j3bgjxly4.map","AssetFile":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Debug\\net10.0\\compressed\\8q9g0t5yrl-{0}-0j3bgjxly4-0j3bgjxly4.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000017904782"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"55850"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"jqz3zWDVmly0HcVfO6RQ1Ew/6DCbF9EVmEe2DJdcW6Y=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"0j3bgjxly4"},{"Name":"integrity","Value":"sha256-ZI01e/ns473GKvACG4McggJdxvFfFIw4xspwQiG8Ye4="},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.min.js.map"},{"Name":"original-resource","Value":"\"ZI01e/ns473GKvACG4McggJdxvFfFIw4xspwQiG8Ye4=\""}]},{"Route":"lib/bootstrap/dist/js/bootstrap.min.js.0j3bgjxly4.map","AssetFile":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\lib\\bootstrap\\dist\\js\\bootstrap.min.js.map","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"220561"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"ZI01e/ns473GKvACG4McggJdxvFfFIw4xspwQiG8Ye4=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:34:32 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"0j3bgjxly4"},{"Name":"integrity","Value":"sha256-ZI01e/ns473GKvACG4McggJdxvFfFIw4xspwQiG8Ye4="},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.min.js.map"}]},{"Route":"lib/bootstrap/dist/js/bootstrap.min.js.0j3bgjxly4.map.gz","AssetFile":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Debug\\net10.0\\compressed\\8q9g0t5yrl-{0}-0j3bgjxly4-0j3bgjxly4.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"55850"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"jqz3zWDVmly0HcVfO6RQ1Ew/6DCbF9EVmEe2DJdcW6Y=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"0j3bgjxly4"},{"Name":"integrity","Value":"sha256-jqz3zWDVmly0HcVfO6RQ1Ew/6DCbF9EVmEe2DJdcW6Y="},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.min.js.map.gz"}]},{"Route":"lib/bootstrap/dist/js/bootstrap.min.js.gz","AssetFile":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Debug\\net10.0\\compressed\\ykh8zi7pka-{0}-63fj8s7r0e-63fj8s7r0e.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"16636"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"bIPgOT88ycSklHWxEzFQVPvNsgNbss3QQbyTqHho4PA=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-bIPgOT88ycSklHWxEzFQVPvNsgNbss3QQbyTqHho4PA="}]},{"Route":"lib/bootstrap/dist/js/bootstrap.min.js.map","AssetFile":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Debug\\net10.0\\compressed\\8q9g0t5yrl-{0}-0j3bgjxly4-0j3bgjxly4.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000017904782"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"55850"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"jqz3zWDVmly0HcVfO6RQ1Ew/6DCbF9EVmEe2DJdcW6Y=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-ZI01e/ns473GKvACG4McggJdxvFfFIw4xspwQiG8Ye4="},{"Name":"original-resource","Value":"\"ZI01e/ns473GKvACG4McggJdxvFfFIw4xspwQiG8Ye4=\""}]},{"Route":"lib/bootstrap/dist/js/bootstrap.min.js.map","AssetFile":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\lib\\bootstrap\\dist\\js\\bootstrap.min.js.map","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"220561"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"ZI01e/ns473GKvACG4McggJdxvFfFIw4xspwQiG8Ye4=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:34:32 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-ZI01e/ns473GKvACG4McggJdxvFfFIw4xspwQiG8Ye4="}]},{"Route":"lib/bootstrap/dist/js/bootstrap.min.js.map.gz","AssetFile":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Debug\\net10.0\\compressed\\8q9g0t5yrl-{0}-0j3bgjxly4-0j3bgjxly4.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"55850"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"jqz3zWDVmly0HcVfO6RQ1Ew/6DCbF9EVmEe2DJdcW6Y=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-jqz3zWDVmly0HcVfO6RQ1Ew/6DCbF9EVmEe2DJdcW6Y="}]},{"Route":"lib/bootstrap/dist/js/bootstrap.notf2xhcfb.js","AssetFile":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Debug\\net10.0\\compressed\\a1937s5xj1-{0}-notf2xhcfb-notf2xhcfb.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000033819203"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"29568"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"vxTpQ/skdGaK1fWKJ6bpuKiCsKR5FwPOZXzuVrUcz58=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"notf2xhcfb"},{"Name":"integrity","Value":"sha256-+UW802wgVfnjaSbdwyHLlU7AVplb0WToOlvN1CnzIac="},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.js"},{"Name":"original-resource","Value":"\"+UW802wgVfnjaSbdwyHLlU7AVplb0WToOlvN1CnzIac=\""}]},{"Route":"lib/bootstrap/dist/js/bootstrap.notf2xhcfb.js","AssetFile":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\lib\\bootstrap\\dist\\js\\bootstrap.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"145401"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"+UW802wgVfnjaSbdwyHLlU7AVplb0WToOlvN1CnzIac=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:34:32 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"notf2xhcfb"},{"Name":"integrity","Value":"sha256-+UW802wgVfnjaSbdwyHLlU7AVplb0WToOlvN1CnzIac="},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.js"}]},{"Route":"lib/bootstrap/dist/js/bootstrap.notf2xhcfb.js.gz","AssetFile":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Debug\\net10.0\\compressed\\a1937s5xj1-{0}-notf2xhcfb-notf2xhcfb.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"29568"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"vxTpQ/skdGaK1fWKJ6bpuKiCsKR5FwPOZXzuVrUcz58=\""},{"Name":"Last-Modified","Value":"Thu, 25 Jun 2026 06:35:09 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"notf2xhcfb"},{"Name":"integrity","Value":"sha256-vxTpQ/skdGaK1fWKJ6bpuKiCsKR5FwPOZXzuVrUcz58="},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.js.gz"}]}]} \ No newline at end of file diff --git a/src/dotnet/QuantEngine.Web/obj/Debug/net10.0/staticwebassets.build.json.cache b/src/dotnet/QuantEngine.Web/obj/Debug/net10.0/staticwebassets.build.json.cache new file mode 100644 index 0000000..f60da97 --- /dev/null +++ b/src/dotnet/QuantEngine.Web/obj/Debug/net10.0/staticwebassets.build.json.cache @@ -0,0 +1 @@ +4LK/w2orh93WuWIoS6Q+AfrmJB/D8ueRfB9DooE9Vho= \ No newline at end of file diff --git a/src/dotnet/QuantEngine.Web/obj/Debug/net10.0/staticwebassets.development.json b/src/dotnet/QuantEngine.Web/obj/Debug/net10.0/staticwebassets.development.json new file mode 100644 index 0000000..351d696 --- /dev/null +++ b/src/dotnet/QuantEngine.Web/obj/Debug/net10.0/staticwebassets.development.json @@ -0,0 +1 @@ +{"ContentRoots":["C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\","C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Debug\\net10.0\\compressed\\","C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Debug\\net10.0\\scopedcss\\bundle\\","C:\\Users\\kjh20\\.nuget\\packages\\microsoft.aspnetcore.app.internal.assets\\10.0.0\\_framework\\","C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\"],"Root":{"Children":{"app.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"app.css"},"Patterns":null},"app.css.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"q2w3mddmwi-{0}-4c8rkwezul-4c8rkwezul.gz"},"Patterns":null},"favicon.png":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"favicon.png"},"Patterns":null},"QuantEngine.Web.styles.css":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"QuantEngine.Web.styles.css"},"Patterns":null},"QuantEngine.Web.styles.css.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"b7jn6yc0gz-{0}-yi314np04p-yi314np04p.gz"},"Patterns":null},"_framework":{"Children":{"blazor.server.js":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"blazor.server.js"},"Patterns":null},"blazor.server.js.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"dym80g6kqp-{0}-u1n4jc5v46-u1n4jc5v46.gz"},"Patterns":null},"blazor.web.js":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"blazor.web.js"},"Patterns":null},"blazor.web.js.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"nr5locadir-{0}-j8lzlu28q6-j8lzlu28q6.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"Components":{"Children":{"Layout":{"Children":{"ReconnectModal.razor.js":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"Components/Layout/ReconnectModal.razor.js"},"Patterns":null},"ReconnectModal.razor.js.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"t9yb5ynpxl-{0}-13ja33weya-13ja33weya.gz"},"Patterns":null}},"Asset":null,"Patterns":null}},"Asset":null,"Patterns":null},"lib":{"Children":{"bootstrap":{"Children":{"dist":{"Children":{"css":{"Children":{"bootstrap-grid.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap-grid.css"},"Patterns":null},"bootstrap-grid.css.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"dgr8mv739g-{0}-bqjiyaj88i-bqjiyaj88i.gz"},"Patterns":null},"bootstrap-grid.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap-grid.css.map"},"Patterns":null},"bootstrap-grid.css.map.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"l0f1c41wbh-{0}-c2jlpeoesf-c2jlpeoesf.gz"},"Patterns":null},"bootstrap-grid.min.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap-grid.min.css"},"Patterns":null},"bootstrap-grid.min.css.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"ny3xbgedo0-{0}-erw9l3u2r3-erw9l3u2r3.gz"},"Patterns":null},"bootstrap-grid.min.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap-grid.min.css.map"},"Patterns":null},"bootstrap-grid.min.css.map.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"yyzux970us-{0}-aexeepp0ev-aexeepp0ev.gz"},"Patterns":null},"bootstrap-grid.rtl.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap-grid.rtl.css"},"Patterns":null},"bootstrap-grid.rtl.css.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"s8tfmvcl6l-{0}-d7shbmvgxk-d7shbmvgxk.gz"},"Patterns":null},"bootstrap-grid.rtl.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap-grid.rtl.css.map"},"Patterns":null},"bootstrap-grid.rtl.css.map.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"buy0lgnna4-{0}-ausgxo2sd3-ausgxo2sd3.gz"},"Patterns":null},"bootstrap-grid.rtl.min.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css"},"Patterns":null},"bootstrap-grid.rtl.min.css.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"rftpckz71e-{0}-k8d9w2qqmf-k8d9w2qqmf.gz"},"Patterns":null},"bootstrap-grid.rtl.min.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.map"},"Patterns":null},"bootstrap-grid.rtl.min.css.map.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"1xufxwh45d-{0}-cosvhxvwiu-cosvhxvwiu.gz"},"Patterns":null},"bootstrap-reboot.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap-reboot.css"},"Patterns":null},"bootstrap-reboot.css.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"110gjqadz3-{0}-ub07r2b239-ub07r2b239.gz"},"Patterns":null},"bootstrap-reboot.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap-reboot.css.map"},"Patterns":null},"bootstrap-reboot.css.map.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"moveir2wlt-{0}-fvhpjtyr6v-fvhpjtyr6v.gz"},"Patterns":null},"bootstrap-reboot.min.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap-reboot.min.css"},"Patterns":null},"bootstrap-reboot.min.css.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"i5gc3220r3-{0}-b7pk76d08c-b7pk76d08c.gz"},"Patterns":null},"bootstrap-reboot.min.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap-reboot.min.css.map"},"Patterns":null},"bootstrap-reboot.min.css.map.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"xhunqdkvqb-{0}-fsbi9cje9m-fsbi9cje9m.gz"},"Patterns":null},"bootstrap-reboot.rtl.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.css"},"Patterns":null},"bootstrap-reboot.rtl.css.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"gomvvqnjlm-{0}-rzd6atqjts-rzd6atqjts.gz"},"Patterns":null},"bootstrap-reboot.rtl.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.map"},"Patterns":null},"bootstrap-reboot.rtl.css.map.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"c34v41vs4l-{0}-ee0r1s7dh0-ee0r1s7dh0.gz"},"Patterns":null},"bootstrap-reboot.rtl.min.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css"},"Patterns":null},"bootstrap-reboot.rtl.min.css.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"0p7lrldjgj-{0}-dxx9fxp4il-dxx9fxp4il.gz"},"Patterns":null},"bootstrap-reboot.rtl.min.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.map"},"Patterns":null},"bootstrap-reboot.rtl.min.css.map.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"0auc0xnlsy-{0}-jd9uben2k1-jd9uben2k1.gz"},"Patterns":null},"bootstrap-utilities.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap-utilities.css"},"Patterns":null},"bootstrap-utilities.css.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"pbeu27ik9w-{0}-khv3u5hwcm-khv3u5hwcm.gz"},"Patterns":null},"bootstrap-utilities.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap-utilities.css.map"},"Patterns":null},"bootstrap-utilities.css.map.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"79raj0bcrr-{0}-r4e9w2rdcm-r4e9w2rdcm.gz"},"Patterns":null},"bootstrap-utilities.min.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap-utilities.min.css"},"Patterns":null},"bootstrap-utilities.min.css.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"jqrauj2svw-{0}-lcd1t2u6c8-lcd1t2u6c8.gz"},"Patterns":null},"bootstrap-utilities.min.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap-utilities.min.css.map"},"Patterns":null},"bootstrap-utilities.min.css.map.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"pj5n2mkkzw-{0}-c2oey78nd0-c2oey78nd0.gz"},"Patterns":null},"bootstrap-utilities.rtl.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.css"},"Patterns":null},"bootstrap-utilities.rtl.css.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"dt9lb9me9i-{0}-tdbxkamptv-tdbxkamptv.gz"},"Patterns":null},"bootstrap-utilities.rtl.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.map"},"Patterns":null},"bootstrap-utilities.rtl.css.map.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"lwh7ckeki7-{0}-j5mq2jizvt-j5mq2jizvt.gz"},"Patterns":null},"bootstrap-utilities.rtl.min.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css"},"Patterns":null},"bootstrap-utilities.rtl.min.css.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"4cblaxq6jh-{0}-06098lyss8-06098lyss8.gz"},"Patterns":null},"bootstrap-utilities.rtl.min.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.map"},"Patterns":null},"bootstrap-utilities.rtl.min.css.map.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"44s2eqp64d-{0}-nvvlpmu67g-nvvlpmu67g.gz"},"Patterns":null},"bootstrap.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap.css"},"Patterns":null},"bootstrap.css.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"gcxof6xqvd-{0}-s35ty4nyc5-s35ty4nyc5.gz"},"Patterns":null},"bootstrap.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap.css.map"},"Patterns":null},"bootstrap.css.map.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"z9wv7fs72k-{0}-pj5nd1wqec-pj5nd1wqec.gz"},"Patterns":null},"bootstrap.min.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap.min.css"},"Patterns":null},"bootstrap.min.css.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"4072jq1i2h-{0}-46ein0sx1k-46ein0sx1k.gz"},"Patterns":null},"bootstrap.min.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap.min.css.map"},"Patterns":null},"bootstrap.min.css.map.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"a4eqfiv3ub-{0}-v0zj4ognzu-v0zj4ognzu.gz"},"Patterns":null},"bootstrap.rtl.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap.rtl.css"},"Patterns":null},"bootstrap.rtl.css.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"rg0bjkw6wb-{0}-37tfw0ft22-37tfw0ft22.gz"},"Patterns":null},"bootstrap.rtl.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap.rtl.css.map"},"Patterns":null},"bootstrap.rtl.css.map.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"jomvpxly64-{0}-hrwsygsryq-hrwsygsryq.gz"},"Patterns":null},"bootstrap.rtl.min.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap.rtl.min.css"},"Patterns":null},"bootstrap.rtl.min.css.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"u4l44l4mup-{0}-pk9g2wxc8p-pk9g2wxc8p.gz"},"Patterns":null},"bootstrap.rtl.min.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap.rtl.min.css.map"},"Patterns":null},"bootstrap.rtl.min.css.map.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"s45yklcy5s-{0}-ft3s53vfgj-ft3s53vfgj.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"js":{"Children":{"bootstrap.bundle.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/js/bootstrap.bundle.js"},"Patterns":null},"bootstrap.bundle.js.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"ryegp6ubqi-{0}-6cfz1n2cew-6cfz1n2cew.gz"},"Patterns":null},"bootstrap.bundle.js.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/js/bootstrap.bundle.js.map"},"Patterns":null},"bootstrap.bundle.js.map.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"gfm26p5c1q-{0}-6pdc2jztkx-6pdc2jztkx.gz"},"Patterns":null},"bootstrap.bundle.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/js/bootstrap.bundle.min.js"},"Patterns":null},"bootstrap.bundle.min.js.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"wh1z5habmz-{0}-493y06b0oq-493y06b0oq.gz"},"Patterns":null},"bootstrap.bundle.min.js.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/js/bootstrap.bundle.min.js.map"},"Patterns":null},"bootstrap.bundle.min.js.map.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"oog3rser0x-{0}-iovd86k7lj-iovd86k7lj.gz"},"Patterns":null},"bootstrap.esm.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/js/bootstrap.esm.js"},"Patterns":null},"bootstrap.esm.js.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"dd5v02aqjc-{0}-vr1egmr9el-vr1egmr9el.gz"},"Patterns":null},"bootstrap.esm.js.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/js/bootstrap.esm.js.map"},"Patterns":null},"bootstrap.esm.js.map.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"61rmegrlmv-{0}-kbrnm935zg-kbrnm935zg.gz"},"Patterns":null},"bootstrap.esm.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/js/bootstrap.esm.min.js"},"Patterns":null},"bootstrap.esm.min.js.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"0x3oeluflx-{0}-jj8uyg4cgr-jj8uyg4cgr.gz"},"Patterns":null},"bootstrap.esm.min.js.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/js/bootstrap.esm.min.js.map"},"Patterns":null},"bootstrap.esm.min.js.map.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"h7pf8rqo63-{0}-y7v9cxd14o-y7v9cxd14o.gz"},"Patterns":null},"bootstrap.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/js/bootstrap.js"},"Patterns":null},"bootstrap.js.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"a1937s5xj1-{0}-notf2xhcfb-notf2xhcfb.gz"},"Patterns":null},"bootstrap.js.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/js/bootstrap.js.map"},"Patterns":null},"bootstrap.js.map.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"a7rq2yiqop-{0}-h1s4sie4z3-h1s4sie4z3.gz"},"Patterns":null},"bootstrap.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/js/bootstrap.min.js"},"Patterns":null},"bootstrap.min.js.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"ykh8zi7pka-{0}-63fj8s7r0e-63fj8s7r0e.gz"},"Patterns":null},"bootstrap.min.js.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/js/bootstrap.min.js.map"},"Patterns":null},"bootstrap.min.js.map.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"8q9g0t5yrl-{0}-0j3bgjxly4-0j3bgjxly4.gz"},"Patterns":null}},"Asset":null,"Patterns":null}},"Asset":null,"Patterns":null}},"Asset":null,"Patterns":null}},"Asset":null,"Patterns":null}},"Asset":null,"Patterns":[{"ContentRootIndex":0,"Pattern":"**","Depth":0}]}} \ No newline at end of file diff --git a/src/dotnet/QuantEngine.Web/obj/Debug/net10.0/swae.build.ex.cache b/src/dotnet/QuantEngine.Web/obj/Debug/net10.0/swae.build.ex.cache new file mode 100644 index 0000000..e69de29 diff --git a/src/dotnet/QuantEngine.Web/obj/QuantEngine.Web.csproj.nuget.dgspec.json b/src/dotnet/QuantEngine.Web/obj/QuantEngine.Web.csproj.nuget.dgspec.json new file mode 100644 index 0000000..25548b7 --- /dev/null +++ b/src/dotnet/QuantEngine.Web/obj/QuantEngine.Web.csproj.nuget.dgspec.json @@ -0,0 +1,1562 @@ +{ + "format": 1, + "restore": { + "C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\QuantEngine.Web.csproj": {} + }, + "projects": { + "C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Application\\QuantEngine.Application.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Application\\QuantEngine.Application.csproj", + "projectName": "QuantEngine.Application", + "projectPath": "C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Application\\QuantEngine.Application.csproj", + "packagesPath": "C:\\Users\\kjh20\\.nuget\\packages\\", + "outputPath": "C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Application\\obj\\", + "projectStyle": "PackageReference", + "fallbackFolders": [ + "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages", + "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder" + ], + "configFilePaths": [ + "C:\\Users\\kjh20\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "net10.0" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "C:\\Program Files\\dotnet\\library-packs": {}, + "https://api.nuget.org/v3/index.json": {}, + "https://nuget.telerik.com/v3/index.json": {} + }, + "frameworks": { + "net10.0": { + "targetAlias": "net10.0", + "projectReferences": { + "C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Core\\QuantEngine.Core.csproj": { + "projectPath": "C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Core\\QuantEngine.Core.csproj" + } + } + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + }, + "restoreAuditProperties": { + "enableAudit": "true", + "auditLevel": "low", + "auditMode": "all" + }, + "SdkAnalysisLevel": "10.0.100" + }, + "frameworks": { + "net10.0": { + "targetAlias": "net10.0", + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\10.0.100/PortableRuntimeIdentifierGraph.json", + "packagesToPrune": { + "Microsoft.CSharp": "(,4.7.32767]", + "Microsoft.VisualBasic": "(,10.4.32767]", + "Microsoft.Win32.Primitives": "(,4.3.32767]", + "Microsoft.Win32.Registry": "(,5.0.32767]", + "runtime.any.System.Collections": "(,4.3.32767]", + "runtime.any.System.Diagnostics.Tools": "(,4.3.32767]", + "runtime.any.System.Diagnostics.Tracing": "(,4.3.32767]", + "runtime.any.System.Globalization": "(,4.3.32767]", + "runtime.any.System.Globalization.Calendars": "(,4.3.32767]", + "runtime.any.System.IO": "(,4.3.32767]", + "runtime.any.System.Reflection": "(,4.3.32767]", + "runtime.any.System.Reflection.Extensions": "(,4.3.32767]", + "runtime.any.System.Reflection.Primitives": "(,4.3.32767]", + "runtime.any.System.Resources.ResourceManager": "(,4.3.32767]", + "runtime.any.System.Runtime": "(,4.3.32767]", + "runtime.any.System.Runtime.Handles": "(,4.3.32767]", + "runtime.any.System.Runtime.InteropServices": "(,4.3.32767]", + "runtime.any.System.Text.Encoding": "(,4.3.32767]", + "runtime.any.System.Text.Encoding.Extensions": "(,4.3.32767]", + "runtime.any.System.Threading.Tasks": "(,4.3.32767]", + "runtime.any.System.Threading.Timer": "(,4.3.32767]", + "runtime.aot.System.Collections": "(,4.3.32767]", + "runtime.aot.System.Diagnostics.Tools": "(,4.3.32767]", + "runtime.aot.System.Diagnostics.Tracing": "(,4.3.32767]", + "runtime.aot.System.Globalization": "(,4.3.32767]", + "runtime.aot.System.Globalization.Calendars": "(,4.3.32767]", + "runtime.aot.System.IO": "(,4.3.32767]", + "runtime.aot.System.Reflection": "(,4.3.32767]", + "runtime.aot.System.Reflection.Extensions": "(,4.3.32767]", + "runtime.aot.System.Reflection.Primitives": "(,4.3.32767]", + "runtime.aot.System.Resources.ResourceManager": "(,4.3.32767]", + "runtime.aot.System.Runtime": "(,4.3.32767]", + "runtime.aot.System.Runtime.Handles": "(,4.3.32767]", + "runtime.aot.System.Runtime.InteropServices": "(,4.3.32767]", + "runtime.aot.System.Text.Encoding": "(,4.3.32767]", + "runtime.aot.System.Text.Encoding.Extensions": "(,4.3.32767]", + "runtime.aot.System.Threading.Tasks": "(,4.3.32767]", + "runtime.aot.System.Threading.Timer": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.debian.9-x64.runtime.native.System": "(,4.3.32767]", + "runtime.debian.9-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.debian.9-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.debian.9-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.fedora.27-x64.runtime.native.System": "(,4.3.32767]", + "runtime.fedora.27-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.fedora.27-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.fedora.27-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.fedora.28-x64.runtime.native.System": "(,4.3.32767]", + "runtime.fedora.28-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.fedora.28-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.fedora.28-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.opensuse.42.3-x64.runtime.native.System": "(,4.3.32767]", + "runtime.opensuse.42.3-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.opensuse.42.3-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.opensuse.42.3-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.ubuntu.18.04-x64.runtime.native.System": "(,4.3.32767]", + "runtime.ubuntu.18.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.ubuntu.18.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.ubuntu.18.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.unix.Microsoft.Win32.Primitives": "(,4.3.32767]", + "runtime.unix.System.Console": "(,4.3.32767]", + "runtime.unix.System.Diagnostics.Debug": "(,4.3.32767]", + "runtime.unix.System.IO.FileSystem": "(,4.3.32767]", + "runtime.unix.System.Net.Primitives": "(,4.3.32767]", + "runtime.unix.System.Net.Sockets": "(,4.3.32767]", + "runtime.unix.System.Private.Uri": "(,4.3.32767]", + "runtime.unix.System.Runtime.Extensions": "(,4.3.32767]", + "runtime.win.Microsoft.Win32.Primitives": "(,4.3.32767]", + "runtime.win.System.Console": "(,4.3.32767]", + "runtime.win.System.Diagnostics.Debug": "(,4.3.32767]", + "runtime.win.System.IO.FileSystem": "(,4.3.32767]", + "runtime.win.System.Net.Primitives": "(,4.3.32767]", + "runtime.win.System.Net.Sockets": "(,4.3.32767]", + "runtime.win.System.Runtime.Extensions": "(,4.3.32767]", + "runtime.win10-arm-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", + "runtime.win10-arm64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.win10-x64-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", + "runtime.win10-x86-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", + "runtime.win7-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.win7-x86.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.win7.System.Private.Uri": "(,4.3.32767]", + "runtime.win8-arm.runtime.native.System.IO.Compression": "(,4.3.32767]", + "System.AppContext": "(,4.3.32767]", + "System.Buffers": "(,5.0.32767]", + "System.Collections": "(,4.3.32767]", + "System.Collections.Concurrent": "(,4.3.32767]", + "System.Collections.Immutable": "(,10.0.32767]", + "System.Collections.NonGeneric": "(,4.3.32767]", + "System.Collections.Specialized": "(,4.3.32767]", + "System.ComponentModel": "(,4.3.32767]", + "System.ComponentModel.Annotations": "(,4.3.32767]", + "System.ComponentModel.EventBasedAsync": "(,4.3.32767]", + "System.ComponentModel.Primitives": "(,4.3.32767]", + "System.ComponentModel.TypeConverter": "(,4.3.32767]", + "System.Console": "(,4.3.32767]", + "System.Data.Common": "(,4.3.32767]", + "System.Data.DataSetExtensions": "(,4.4.32767]", + "System.Diagnostics.Contracts": "(,4.3.32767]", + "System.Diagnostics.Debug": "(,4.3.32767]", + "System.Diagnostics.DiagnosticSource": "(,10.0.32767]", + "System.Diagnostics.FileVersionInfo": "(,4.3.32767]", + "System.Diagnostics.Process": "(,4.3.32767]", + "System.Diagnostics.StackTrace": "(,4.3.32767]", + "System.Diagnostics.TextWriterTraceListener": "(,4.3.32767]", + "System.Diagnostics.Tools": "(,4.3.32767]", + "System.Diagnostics.TraceSource": "(,4.3.32767]", + "System.Diagnostics.Tracing": "(,4.3.32767]", + "System.Drawing.Primitives": "(,4.3.32767]", + "System.Dynamic.Runtime": "(,4.3.32767]", + "System.Formats.Asn1": "(,10.0.32767]", + "System.Formats.Tar": "(,10.0.32767]", + "System.Globalization": "(,4.3.32767]", + "System.Globalization.Calendars": "(,4.3.32767]", + "System.Globalization.Extensions": "(,4.3.32767]", + "System.IO": "(,4.3.32767]", + "System.IO.Compression": "(,4.3.32767]", + "System.IO.Compression.ZipFile": "(,4.3.32767]", + "System.IO.FileSystem": "(,4.3.32767]", + "System.IO.FileSystem.AccessControl": "(,4.4.32767]", + "System.IO.FileSystem.DriveInfo": "(,4.3.32767]", + "System.IO.FileSystem.Primitives": "(,4.3.32767]", + "System.IO.FileSystem.Watcher": "(,4.3.32767]", + "System.IO.IsolatedStorage": "(,4.3.32767]", + "System.IO.MemoryMappedFiles": "(,4.3.32767]", + "System.IO.Pipelines": "(,10.0.32767]", + "System.IO.Pipes": "(,4.3.32767]", + "System.IO.Pipes.AccessControl": "(,5.0.32767]", + "System.IO.UnmanagedMemoryStream": "(,4.3.32767]", + "System.Linq": "(,4.3.32767]", + "System.Linq.AsyncEnumerable": "(,10.0.32767]", + "System.Linq.Expressions": "(,4.3.32767]", + "System.Linq.Parallel": "(,4.3.32767]", + "System.Linq.Queryable": "(,4.3.32767]", + "System.Memory": "(,5.0.32767]", + "System.Net.Http": "(,4.3.32767]", + "System.Net.Http.Json": "(,10.0.32767]", + "System.Net.NameResolution": "(,4.3.32767]", + "System.Net.NetworkInformation": "(,4.3.32767]", + "System.Net.Ping": "(,4.3.32767]", + "System.Net.Primitives": "(,4.3.32767]", + "System.Net.Requests": "(,4.3.32767]", + "System.Net.Security": "(,4.3.32767]", + "System.Net.ServerSentEvents": "(,10.0.32767]", + "System.Net.Sockets": "(,4.3.32767]", + "System.Net.WebHeaderCollection": "(,4.3.32767]", + "System.Net.WebSockets": "(,4.3.32767]", + "System.Net.WebSockets.Client": "(,4.3.32767]", + "System.Numerics.Vectors": "(,5.0.32767]", + "System.ObjectModel": "(,4.3.32767]", + "System.Private.DataContractSerialization": "(,4.3.32767]", + "System.Private.Uri": "(,4.3.32767]", + "System.Reflection": "(,4.3.32767]", + "System.Reflection.DispatchProxy": "(,6.0.32767]", + "System.Reflection.Emit": "(,4.7.32767]", + "System.Reflection.Emit.ILGeneration": "(,4.7.32767]", + "System.Reflection.Emit.Lightweight": "(,4.7.32767]", + "System.Reflection.Extensions": "(,4.3.32767]", + "System.Reflection.Metadata": "(,10.0.32767]", + "System.Reflection.Primitives": "(,4.3.32767]", + "System.Reflection.TypeExtensions": "(,4.3.32767]", + "System.Resources.Reader": "(,4.3.32767]", + "System.Resources.ResourceManager": "(,4.3.32767]", + "System.Resources.Writer": "(,4.3.32767]", + "System.Runtime": "(,4.3.32767]", + "System.Runtime.CompilerServices.Unsafe": "(,7.0.32767]", + "System.Runtime.CompilerServices.VisualC": "(,4.3.32767]", + "System.Runtime.Extensions": "(,4.3.32767]", + "System.Runtime.Handles": "(,4.3.32767]", + "System.Runtime.InteropServices": "(,4.3.32767]", + "System.Runtime.InteropServices.RuntimeInformation": "(,4.3.32767]", + "System.Runtime.Loader": "(,4.3.32767]", + "System.Runtime.Numerics": "(,4.3.32767]", + "System.Runtime.Serialization.Formatters": "(,4.3.32767]", + "System.Runtime.Serialization.Json": "(,4.3.32767]", + "System.Runtime.Serialization.Primitives": "(,4.3.32767]", + "System.Runtime.Serialization.Xml": "(,4.3.32767]", + "System.Security.AccessControl": "(,6.0.32767]", + "System.Security.Claims": "(,4.3.32767]", + "System.Security.Cryptography.Algorithms": "(,4.3.32767]", + "System.Security.Cryptography.Cng": "(,5.0.32767]", + "System.Security.Cryptography.Csp": "(,4.3.32767]", + "System.Security.Cryptography.Encoding": "(,4.3.32767]", + "System.Security.Cryptography.OpenSsl": "(,5.0.32767]", + "System.Security.Cryptography.Primitives": "(,4.3.32767]", + "System.Security.Cryptography.X509Certificates": "(,4.3.32767]", + "System.Security.Principal": "(,4.3.32767]", + "System.Security.Principal.Windows": "(,5.0.32767]", + "System.Security.SecureString": "(,4.3.32767]", + "System.Text.Encoding": "(,4.3.32767]", + "System.Text.Encoding.CodePages": "(,10.0.32767]", + "System.Text.Encoding.Extensions": "(,4.3.32767]", + "System.Text.Encodings.Web": "(,10.0.32767]", + "System.Text.Json": "(,10.0.32767]", + "System.Text.RegularExpressions": "(,4.3.32767]", + "System.Threading": "(,4.3.32767]", + "System.Threading.AccessControl": "(,10.0.32767]", + "System.Threading.Channels": "(,10.0.32767]", + "System.Threading.Overlapped": "(,4.3.32767]", + "System.Threading.Tasks": "(,4.3.32767]", + "System.Threading.Tasks.Dataflow": "(,10.0.32767]", + "System.Threading.Tasks.Extensions": "(,5.0.32767]", + "System.Threading.Tasks.Parallel": "(,4.3.32767]", + "System.Threading.Thread": "(,4.3.32767]", + "System.Threading.ThreadPool": "(,4.3.32767]", + "System.Threading.Timer": "(,4.3.32767]", + "System.ValueTuple": "(,4.5.32767]", + "System.Xml.ReaderWriter": "(,4.3.32767]", + "System.Xml.XDocument": "(,4.3.32767]", + "System.Xml.XmlDocument": "(,4.3.32767]", + "System.Xml.XmlSerializer": "(,4.3.32767]", + "System.Xml.XPath": "(,4.3.32767]", + "System.Xml.XPath.XDocument": "(,5.0.32767]" + } + } + } + }, + "C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Core\\QuantEngine.Core.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Core\\QuantEngine.Core.csproj", + "projectName": "QuantEngine.Core", + "projectPath": "C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Core\\QuantEngine.Core.csproj", + "packagesPath": "C:\\Users\\kjh20\\.nuget\\packages\\", + "outputPath": "C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Core\\obj\\", + "projectStyle": "PackageReference", + "fallbackFolders": [ + "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages", + "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder" + ], + "configFilePaths": [ + "C:\\Users\\kjh20\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "net10.0" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "C:\\Program Files\\dotnet\\library-packs": {}, + "https://api.nuget.org/v3/index.json": {}, + "https://nuget.telerik.com/v3/index.json": {} + }, + "frameworks": { + "net10.0": { + "targetAlias": "net10.0", + "projectReferences": {} + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + }, + "restoreAuditProperties": { + "enableAudit": "true", + "auditLevel": "low", + "auditMode": "all" + }, + "SdkAnalysisLevel": "10.0.100" + }, + "frameworks": { + "net10.0": { + "targetAlias": "net10.0", + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\10.0.100/PortableRuntimeIdentifierGraph.json", + "packagesToPrune": { + "Microsoft.CSharp": "(,4.7.32767]", + "Microsoft.VisualBasic": "(,10.4.32767]", + "Microsoft.Win32.Primitives": "(,4.3.32767]", + "Microsoft.Win32.Registry": "(,5.0.32767]", + "runtime.any.System.Collections": "(,4.3.32767]", + "runtime.any.System.Diagnostics.Tools": "(,4.3.32767]", + "runtime.any.System.Diagnostics.Tracing": "(,4.3.32767]", + "runtime.any.System.Globalization": "(,4.3.32767]", + "runtime.any.System.Globalization.Calendars": "(,4.3.32767]", + "runtime.any.System.IO": "(,4.3.32767]", + "runtime.any.System.Reflection": "(,4.3.32767]", + "runtime.any.System.Reflection.Extensions": "(,4.3.32767]", + "runtime.any.System.Reflection.Primitives": "(,4.3.32767]", + "runtime.any.System.Resources.ResourceManager": "(,4.3.32767]", + "runtime.any.System.Runtime": "(,4.3.32767]", + "runtime.any.System.Runtime.Handles": "(,4.3.32767]", + "runtime.any.System.Runtime.InteropServices": "(,4.3.32767]", + "runtime.any.System.Text.Encoding": "(,4.3.32767]", + "runtime.any.System.Text.Encoding.Extensions": "(,4.3.32767]", + "runtime.any.System.Threading.Tasks": "(,4.3.32767]", + "runtime.any.System.Threading.Timer": "(,4.3.32767]", + "runtime.aot.System.Collections": "(,4.3.32767]", + "runtime.aot.System.Diagnostics.Tools": "(,4.3.32767]", + "runtime.aot.System.Diagnostics.Tracing": "(,4.3.32767]", + "runtime.aot.System.Globalization": "(,4.3.32767]", + "runtime.aot.System.Globalization.Calendars": "(,4.3.32767]", + "runtime.aot.System.IO": "(,4.3.32767]", + "runtime.aot.System.Reflection": "(,4.3.32767]", + "runtime.aot.System.Reflection.Extensions": "(,4.3.32767]", + "runtime.aot.System.Reflection.Primitives": "(,4.3.32767]", + "runtime.aot.System.Resources.ResourceManager": "(,4.3.32767]", + "runtime.aot.System.Runtime": "(,4.3.32767]", + "runtime.aot.System.Runtime.Handles": "(,4.3.32767]", + "runtime.aot.System.Runtime.InteropServices": "(,4.3.32767]", + "runtime.aot.System.Text.Encoding": "(,4.3.32767]", + "runtime.aot.System.Text.Encoding.Extensions": "(,4.3.32767]", + "runtime.aot.System.Threading.Tasks": "(,4.3.32767]", + "runtime.aot.System.Threading.Timer": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.debian.9-x64.runtime.native.System": "(,4.3.32767]", + "runtime.debian.9-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.debian.9-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.debian.9-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.fedora.27-x64.runtime.native.System": "(,4.3.32767]", + "runtime.fedora.27-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.fedora.27-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.fedora.27-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.fedora.28-x64.runtime.native.System": "(,4.3.32767]", + "runtime.fedora.28-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.fedora.28-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.fedora.28-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.opensuse.42.3-x64.runtime.native.System": "(,4.3.32767]", + "runtime.opensuse.42.3-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.opensuse.42.3-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.opensuse.42.3-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.ubuntu.18.04-x64.runtime.native.System": "(,4.3.32767]", + "runtime.ubuntu.18.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.ubuntu.18.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.ubuntu.18.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.unix.Microsoft.Win32.Primitives": "(,4.3.32767]", + "runtime.unix.System.Console": "(,4.3.32767]", + "runtime.unix.System.Diagnostics.Debug": "(,4.3.32767]", + "runtime.unix.System.IO.FileSystem": "(,4.3.32767]", + "runtime.unix.System.Net.Primitives": "(,4.3.32767]", + "runtime.unix.System.Net.Sockets": "(,4.3.32767]", + "runtime.unix.System.Private.Uri": "(,4.3.32767]", + "runtime.unix.System.Runtime.Extensions": "(,4.3.32767]", + "runtime.win.Microsoft.Win32.Primitives": "(,4.3.32767]", + "runtime.win.System.Console": "(,4.3.32767]", + "runtime.win.System.Diagnostics.Debug": "(,4.3.32767]", + "runtime.win.System.IO.FileSystem": "(,4.3.32767]", + "runtime.win.System.Net.Primitives": "(,4.3.32767]", + "runtime.win.System.Net.Sockets": "(,4.3.32767]", + "runtime.win.System.Runtime.Extensions": "(,4.3.32767]", + "runtime.win10-arm-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", + "runtime.win10-arm64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.win10-x64-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", + "runtime.win10-x86-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", + "runtime.win7-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.win7-x86.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.win7.System.Private.Uri": "(,4.3.32767]", + "runtime.win8-arm.runtime.native.System.IO.Compression": "(,4.3.32767]", + "System.AppContext": "(,4.3.32767]", + "System.Buffers": "(,5.0.32767]", + "System.Collections": "(,4.3.32767]", + "System.Collections.Concurrent": "(,4.3.32767]", + "System.Collections.Immutable": "(,10.0.32767]", + "System.Collections.NonGeneric": "(,4.3.32767]", + "System.Collections.Specialized": "(,4.3.32767]", + "System.ComponentModel": "(,4.3.32767]", + "System.ComponentModel.Annotations": "(,4.3.32767]", + "System.ComponentModel.EventBasedAsync": "(,4.3.32767]", + "System.ComponentModel.Primitives": "(,4.3.32767]", + "System.ComponentModel.TypeConverter": "(,4.3.32767]", + "System.Console": "(,4.3.32767]", + "System.Data.Common": "(,4.3.32767]", + "System.Data.DataSetExtensions": "(,4.4.32767]", + "System.Diagnostics.Contracts": "(,4.3.32767]", + "System.Diagnostics.Debug": "(,4.3.32767]", + "System.Diagnostics.DiagnosticSource": "(,10.0.32767]", + "System.Diagnostics.FileVersionInfo": "(,4.3.32767]", + "System.Diagnostics.Process": "(,4.3.32767]", + "System.Diagnostics.StackTrace": "(,4.3.32767]", + "System.Diagnostics.TextWriterTraceListener": "(,4.3.32767]", + "System.Diagnostics.Tools": "(,4.3.32767]", + "System.Diagnostics.TraceSource": "(,4.3.32767]", + "System.Diagnostics.Tracing": "(,4.3.32767]", + "System.Drawing.Primitives": "(,4.3.32767]", + "System.Dynamic.Runtime": "(,4.3.32767]", + "System.Formats.Asn1": "(,10.0.32767]", + "System.Formats.Tar": "(,10.0.32767]", + "System.Globalization": "(,4.3.32767]", + "System.Globalization.Calendars": "(,4.3.32767]", + "System.Globalization.Extensions": "(,4.3.32767]", + "System.IO": "(,4.3.32767]", + "System.IO.Compression": "(,4.3.32767]", + "System.IO.Compression.ZipFile": "(,4.3.32767]", + "System.IO.FileSystem": "(,4.3.32767]", + "System.IO.FileSystem.AccessControl": "(,4.4.32767]", + "System.IO.FileSystem.DriveInfo": "(,4.3.32767]", + "System.IO.FileSystem.Primitives": "(,4.3.32767]", + "System.IO.FileSystem.Watcher": "(,4.3.32767]", + "System.IO.IsolatedStorage": "(,4.3.32767]", + "System.IO.MemoryMappedFiles": "(,4.3.32767]", + "System.IO.Pipelines": "(,10.0.32767]", + "System.IO.Pipes": "(,4.3.32767]", + "System.IO.Pipes.AccessControl": "(,5.0.32767]", + "System.IO.UnmanagedMemoryStream": "(,4.3.32767]", + "System.Linq": "(,4.3.32767]", + "System.Linq.AsyncEnumerable": "(,10.0.32767]", + "System.Linq.Expressions": "(,4.3.32767]", + "System.Linq.Parallel": "(,4.3.32767]", + "System.Linq.Queryable": "(,4.3.32767]", + "System.Memory": "(,5.0.32767]", + "System.Net.Http": "(,4.3.32767]", + "System.Net.Http.Json": "(,10.0.32767]", + "System.Net.NameResolution": "(,4.3.32767]", + "System.Net.NetworkInformation": "(,4.3.32767]", + "System.Net.Ping": "(,4.3.32767]", + "System.Net.Primitives": "(,4.3.32767]", + "System.Net.Requests": "(,4.3.32767]", + "System.Net.Security": "(,4.3.32767]", + "System.Net.ServerSentEvents": "(,10.0.32767]", + "System.Net.Sockets": "(,4.3.32767]", + "System.Net.WebHeaderCollection": "(,4.3.32767]", + "System.Net.WebSockets": "(,4.3.32767]", + "System.Net.WebSockets.Client": "(,4.3.32767]", + "System.Numerics.Vectors": "(,5.0.32767]", + "System.ObjectModel": "(,4.3.32767]", + "System.Private.DataContractSerialization": "(,4.3.32767]", + "System.Private.Uri": "(,4.3.32767]", + "System.Reflection": "(,4.3.32767]", + "System.Reflection.DispatchProxy": "(,6.0.32767]", + "System.Reflection.Emit": "(,4.7.32767]", + "System.Reflection.Emit.ILGeneration": "(,4.7.32767]", + "System.Reflection.Emit.Lightweight": "(,4.7.32767]", + "System.Reflection.Extensions": "(,4.3.32767]", + "System.Reflection.Metadata": "(,10.0.32767]", + "System.Reflection.Primitives": "(,4.3.32767]", + "System.Reflection.TypeExtensions": "(,4.3.32767]", + "System.Resources.Reader": "(,4.3.32767]", + "System.Resources.ResourceManager": "(,4.3.32767]", + "System.Resources.Writer": "(,4.3.32767]", + "System.Runtime": "(,4.3.32767]", + "System.Runtime.CompilerServices.Unsafe": "(,7.0.32767]", + "System.Runtime.CompilerServices.VisualC": "(,4.3.32767]", + "System.Runtime.Extensions": "(,4.3.32767]", + "System.Runtime.Handles": "(,4.3.32767]", + "System.Runtime.InteropServices": "(,4.3.32767]", + "System.Runtime.InteropServices.RuntimeInformation": "(,4.3.32767]", + "System.Runtime.Loader": "(,4.3.32767]", + "System.Runtime.Numerics": "(,4.3.32767]", + "System.Runtime.Serialization.Formatters": "(,4.3.32767]", + "System.Runtime.Serialization.Json": "(,4.3.32767]", + "System.Runtime.Serialization.Primitives": "(,4.3.32767]", + "System.Runtime.Serialization.Xml": "(,4.3.32767]", + "System.Security.AccessControl": "(,6.0.32767]", + "System.Security.Claims": "(,4.3.32767]", + "System.Security.Cryptography.Algorithms": "(,4.3.32767]", + "System.Security.Cryptography.Cng": "(,5.0.32767]", + "System.Security.Cryptography.Csp": "(,4.3.32767]", + "System.Security.Cryptography.Encoding": "(,4.3.32767]", + "System.Security.Cryptography.OpenSsl": "(,5.0.32767]", + "System.Security.Cryptography.Primitives": "(,4.3.32767]", + "System.Security.Cryptography.X509Certificates": "(,4.3.32767]", + "System.Security.Principal": "(,4.3.32767]", + "System.Security.Principal.Windows": "(,5.0.32767]", + "System.Security.SecureString": "(,4.3.32767]", + "System.Text.Encoding": "(,4.3.32767]", + "System.Text.Encoding.CodePages": "(,10.0.32767]", + "System.Text.Encoding.Extensions": "(,4.3.32767]", + "System.Text.Encodings.Web": "(,10.0.32767]", + "System.Text.Json": "(,10.0.32767]", + "System.Text.RegularExpressions": "(,4.3.32767]", + "System.Threading": "(,4.3.32767]", + "System.Threading.AccessControl": "(,10.0.32767]", + "System.Threading.Channels": "(,10.0.32767]", + "System.Threading.Overlapped": "(,4.3.32767]", + "System.Threading.Tasks": "(,4.3.32767]", + "System.Threading.Tasks.Dataflow": "(,10.0.32767]", + "System.Threading.Tasks.Extensions": "(,5.0.32767]", + "System.Threading.Tasks.Parallel": "(,4.3.32767]", + "System.Threading.Thread": "(,4.3.32767]", + "System.Threading.ThreadPool": "(,4.3.32767]", + "System.Threading.Timer": "(,4.3.32767]", + "System.ValueTuple": "(,4.5.32767]", + "System.Xml.ReaderWriter": "(,4.3.32767]", + "System.Xml.XDocument": "(,4.3.32767]", + "System.Xml.XmlDocument": "(,4.3.32767]", + "System.Xml.XmlSerializer": "(,4.3.32767]", + "System.Xml.XPath": "(,4.3.32767]", + "System.Xml.XPath.XDocument": "(,5.0.32767]" + } + } + } + }, + "C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Infrastructure\\QuantEngine.Infrastructure.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Infrastructure\\QuantEngine.Infrastructure.csproj", + "projectName": "QuantEngine.Infrastructure", + "projectPath": "C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Infrastructure\\QuantEngine.Infrastructure.csproj", + "packagesPath": "C:\\Users\\kjh20\\.nuget\\packages\\", + "outputPath": "C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Infrastructure\\obj\\", + "projectStyle": "PackageReference", + "fallbackFolders": [ + "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages", + "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder" + ], + "configFilePaths": [ + "C:\\Users\\kjh20\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "net10.0" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "C:\\Program Files\\dotnet\\library-packs": {}, + "https://api.nuget.org/v3/index.json": {}, + "https://nuget.telerik.com/v3/index.json": {} + }, + "frameworks": { + "net10.0": { + "targetAlias": "net10.0", + "projectReferences": { + "C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Application\\QuantEngine.Application.csproj": { + "projectPath": "C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Application\\QuantEngine.Application.csproj" + }, + "C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Core\\QuantEngine.Core.csproj": { + "projectPath": "C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Core\\QuantEngine.Core.csproj" + } + } + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + }, + "restoreAuditProperties": { + "enableAudit": "true", + "auditLevel": "low", + "auditMode": "all" + }, + "SdkAnalysisLevel": "10.0.100" + }, + "frameworks": { + "net10.0": { + "targetAlias": "net10.0", + "dependencies": { + "Dapper": { + "target": "Package", + "version": "[2.1.79, )" + }, + "Npgsql": { + "target": "Package", + "version": "[10.0.3, )" + }, + "System.Text.Encoding.CodePages": { + "target": "Package", + "version": "[10.0.9, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\10.0.100/PortableRuntimeIdentifierGraph.json", + "packagesToPrune": { + "Microsoft.CSharp": "(,4.7.32767]", + "Microsoft.VisualBasic": "(,10.4.32767]", + "Microsoft.Win32.Primitives": "(,4.3.32767]", + "Microsoft.Win32.Registry": "(,5.0.32767]", + "runtime.any.System.Collections": "(,4.3.32767]", + "runtime.any.System.Diagnostics.Tools": "(,4.3.32767]", + "runtime.any.System.Diagnostics.Tracing": "(,4.3.32767]", + "runtime.any.System.Globalization": "(,4.3.32767]", + "runtime.any.System.Globalization.Calendars": "(,4.3.32767]", + "runtime.any.System.IO": "(,4.3.32767]", + "runtime.any.System.Reflection": "(,4.3.32767]", + "runtime.any.System.Reflection.Extensions": "(,4.3.32767]", + "runtime.any.System.Reflection.Primitives": "(,4.3.32767]", + "runtime.any.System.Resources.ResourceManager": "(,4.3.32767]", + "runtime.any.System.Runtime": "(,4.3.32767]", + "runtime.any.System.Runtime.Handles": "(,4.3.32767]", + "runtime.any.System.Runtime.InteropServices": "(,4.3.32767]", + "runtime.any.System.Text.Encoding": "(,4.3.32767]", + "runtime.any.System.Text.Encoding.Extensions": "(,4.3.32767]", + "runtime.any.System.Threading.Tasks": "(,4.3.32767]", + "runtime.any.System.Threading.Timer": "(,4.3.32767]", + "runtime.aot.System.Collections": "(,4.3.32767]", + "runtime.aot.System.Diagnostics.Tools": "(,4.3.32767]", + "runtime.aot.System.Diagnostics.Tracing": "(,4.3.32767]", + "runtime.aot.System.Globalization": "(,4.3.32767]", + "runtime.aot.System.Globalization.Calendars": "(,4.3.32767]", + "runtime.aot.System.IO": "(,4.3.32767]", + "runtime.aot.System.Reflection": "(,4.3.32767]", + "runtime.aot.System.Reflection.Extensions": "(,4.3.32767]", + "runtime.aot.System.Reflection.Primitives": "(,4.3.32767]", + "runtime.aot.System.Resources.ResourceManager": "(,4.3.32767]", + "runtime.aot.System.Runtime": "(,4.3.32767]", + "runtime.aot.System.Runtime.Handles": "(,4.3.32767]", + "runtime.aot.System.Runtime.InteropServices": "(,4.3.32767]", + "runtime.aot.System.Text.Encoding": "(,4.3.32767]", + "runtime.aot.System.Text.Encoding.Extensions": "(,4.3.32767]", + "runtime.aot.System.Threading.Tasks": "(,4.3.32767]", + "runtime.aot.System.Threading.Timer": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.debian.9-x64.runtime.native.System": "(,4.3.32767]", + "runtime.debian.9-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.debian.9-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.debian.9-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.fedora.27-x64.runtime.native.System": "(,4.3.32767]", + "runtime.fedora.27-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.fedora.27-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.fedora.27-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.fedora.28-x64.runtime.native.System": "(,4.3.32767]", + "runtime.fedora.28-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.fedora.28-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.fedora.28-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.opensuse.42.3-x64.runtime.native.System": "(,4.3.32767]", + "runtime.opensuse.42.3-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.opensuse.42.3-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.opensuse.42.3-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.ubuntu.18.04-x64.runtime.native.System": "(,4.3.32767]", + "runtime.ubuntu.18.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.ubuntu.18.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.ubuntu.18.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.unix.Microsoft.Win32.Primitives": "(,4.3.32767]", + "runtime.unix.System.Console": "(,4.3.32767]", + "runtime.unix.System.Diagnostics.Debug": "(,4.3.32767]", + "runtime.unix.System.IO.FileSystem": "(,4.3.32767]", + "runtime.unix.System.Net.Primitives": "(,4.3.32767]", + "runtime.unix.System.Net.Sockets": "(,4.3.32767]", + "runtime.unix.System.Private.Uri": "(,4.3.32767]", + "runtime.unix.System.Runtime.Extensions": "(,4.3.32767]", + "runtime.win.Microsoft.Win32.Primitives": "(,4.3.32767]", + "runtime.win.System.Console": "(,4.3.32767]", + "runtime.win.System.Diagnostics.Debug": "(,4.3.32767]", + "runtime.win.System.IO.FileSystem": "(,4.3.32767]", + "runtime.win.System.Net.Primitives": "(,4.3.32767]", + "runtime.win.System.Net.Sockets": "(,4.3.32767]", + "runtime.win.System.Runtime.Extensions": "(,4.3.32767]", + "runtime.win10-arm-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", + "runtime.win10-arm64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.win10-x64-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", + "runtime.win10-x86-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", + "runtime.win7-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.win7-x86.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.win7.System.Private.Uri": "(,4.3.32767]", + "runtime.win8-arm.runtime.native.System.IO.Compression": "(,4.3.32767]", + "System.AppContext": "(,4.3.32767]", + "System.Buffers": "(,5.0.32767]", + "System.Collections": "(,4.3.32767]", + "System.Collections.Concurrent": "(,4.3.32767]", + "System.Collections.Immutable": "(,10.0.32767]", + "System.Collections.NonGeneric": "(,4.3.32767]", + "System.Collections.Specialized": "(,4.3.32767]", + "System.ComponentModel": "(,4.3.32767]", + "System.ComponentModel.Annotations": "(,4.3.32767]", + "System.ComponentModel.EventBasedAsync": "(,4.3.32767]", + "System.ComponentModel.Primitives": "(,4.3.32767]", + "System.ComponentModel.TypeConverter": "(,4.3.32767]", + "System.Console": "(,4.3.32767]", + "System.Data.Common": "(,4.3.32767]", + "System.Data.DataSetExtensions": "(,4.4.32767]", + "System.Diagnostics.Contracts": "(,4.3.32767]", + "System.Diagnostics.Debug": "(,4.3.32767]", + "System.Diagnostics.DiagnosticSource": "(,10.0.32767]", + "System.Diagnostics.FileVersionInfo": "(,4.3.32767]", + "System.Diagnostics.Process": "(,4.3.32767]", + "System.Diagnostics.StackTrace": "(,4.3.32767]", + "System.Diagnostics.TextWriterTraceListener": "(,4.3.32767]", + "System.Diagnostics.Tools": "(,4.3.32767]", + "System.Diagnostics.TraceSource": "(,4.3.32767]", + "System.Diagnostics.Tracing": "(,4.3.32767]", + "System.Drawing.Primitives": "(,4.3.32767]", + "System.Dynamic.Runtime": "(,4.3.32767]", + "System.Formats.Asn1": "(,10.0.32767]", + "System.Formats.Tar": "(,10.0.32767]", + "System.Globalization": "(,4.3.32767]", + "System.Globalization.Calendars": "(,4.3.32767]", + "System.Globalization.Extensions": "(,4.3.32767]", + "System.IO": "(,4.3.32767]", + "System.IO.Compression": "(,4.3.32767]", + "System.IO.Compression.ZipFile": "(,4.3.32767]", + "System.IO.FileSystem": "(,4.3.32767]", + "System.IO.FileSystem.AccessControl": "(,4.4.32767]", + "System.IO.FileSystem.DriveInfo": "(,4.3.32767]", + "System.IO.FileSystem.Primitives": "(,4.3.32767]", + "System.IO.FileSystem.Watcher": "(,4.3.32767]", + "System.IO.IsolatedStorage": "(,4.3.32767]", + "System.IO.MemoryMappedFiles": "(,4.3.32767]", + "System.IO.Pipelines": "(,10.0.32767]", + "System.IO.Pipes": "(,4.3.32767]", + "System.IO.Pipes.AccessControl": "(,5.0.32767]", + "System.IO.UnmanagedMemoryStream": "(,4.3.32767]", + "System.Linq": "(,4.3.32767]", + "System.Linq.AsyncEnumerable": "(,10.0.32767]", + "System.Linq.Expressions": "(,4.3.32767]", + "System.Linq.Parallel": "(,4.3.32767]", + "System.Linq.Queryable": "(,4.3.32767]", + "System.Memory": "(,5.0.32767]", + "System.Net.Http": "(,4.3.32767]", + "System.Net.Http.Json": "(,10.0.32767]", + "System.Net.NameResolution": "(,4.3.32767]", + "System.Net.NetworkInformation": "(,4.3.32767]", + "System.Net.Ping": "(,4.3.32767]", + "System.Net.Primitives": "(,4.3.32767]", + "System.Net.Requests": "(,4.3.32767]", + "System.Net.Security": "(,4.3.32767]", + "System.Net.ServerSentEvents": "(,10.0.32767]", + "System.Net.Sockets": "(,4.3.32767]", + "System.Net.WebHeaderCollection": "(,4.3.32767]", + "System.Net.WebSockets": "(,4.3.32767]", + "System.Net.WebSockets.Client": "(,4.3.32767]", + "System.Numerics.Vectors": "(,5.0.32767]", + "System.ObjectModel": "(,4.3.32767]", + "System.Private.DataContractSerialization": "(,4.3.32767]", + "System.Private.Uri": "(,4.3.32767]", + "System.Reflection": "(,4.3.32767]", + "System.Reflection.DispatchProxy": "(,6.0.32767]", + "System.Reflection.Emit": "(,4.7.32767]", + "System.Reflection.Emit.ILGeneration": "(,4.7.32767]", + "System.Reflection.Emit.Lightweight": "(,4.7.32767]", + "System.Reflection.Extensions": "(,4.3.32767]", + "System.Reflection.Metadata": "(,10.0.32767]", + "System.Reflection.Primitives": "(,4.3.32767]", + "System.Reflection.TypeExtensions": "(,4.3.32767]", + "System.Resources.Reader": "(,4.3.32767]", + "System.Resources.ResourceManager": "(,4.3.32767]", + "System.Resources.Writer": "(,4.3.32767]", + "System.Runtime": "(,4.3.32767]", + "System.Runtime.CompilerServices.Unsafe": "(,7.0.32767]", + "System.Runtime.CompilerServices.VisualC": "(,4.3.32767]", + "System.Runtime.Extensions": "(,4.3.32767]", + "System.Runtime.Handles": "(,4.3.32767]", + "System.Runtime.InteropServices": "(,4.3.32767]", + "System.Runtime.InteropServices.RuntimeInformation": "(,4.3.32767]", + "System.Runtime.Loader": "(,4.3.32767]", + "System.Runtime.Numerics": "(,4.3.32767]", + "System.Runtime.Serialization.Formatters": "(,4.3.32767]", + "System.Runtime.Serialization.Json": "(,4.3.32767]", + "System.Runtime.Serialization.Primitives": "(,4.3.32767]", + "System.Runtime.Serialization.Xml": "(,4.3.32767]", + "System.Security.AccessControl": "(,6.0.32767]", + "System.Security.Claims": "(,4.3.32767]", + "System.Security.Cryptography.Algorithms": "(,4.3.32767]", + "System.Security.Cryptography.Cng": "(,5.0.32767]", + "System.Security.Cryptography.Csp": "(,4.3.32767]", + "System.Security.Cryptography.Encoding": "(,4.3.32767]", + "System.Security.Cryptography.OpenSsl": "(,5.0.32767]", + "System.Security.Cryptography.Primitives": "(,4.3.32767]", + "System.Security.Cryptography.X509Certificates": "(,4.3.32767]", + "System.Security.Principal": "(,4.3.32767]", + "System.Security.Principal.Windows": "(,5.0.32767]", + "System.Security.SecureString": "(,4.3.32767]", + "System.Text.Encoding": "(,4.3.32767]", + "System.Text.Encoding.CodePages": "(,10.0.32767]", + "System.Text.Encoding.Extensions": "(,4.3.32767]", + "System.Text.Encodings.Web": "(,10.0.32767]", + "System.Text.Json": "(,10.0.32767]", + "System.Text.RegularExpressions": "(,4.3.32767]", + "System.Threading": "(,4.3.32767]", + "System.Threading.AccessControl": "(,10.0.32767]", + "System.Threading.Channels": "(,10.0.32767]", + "System.Threading.Overlapped": "(,4.3.32767]", + "System.Threading.Tasks": "(,4.3.32767]", + "System.Threading.Tasks.Dataflow": "(,10.0.32767]", + "System.Threading.Tasks.Extensions": "(,5.0.32767]", + "System.Threading.Tasks.Parallel": "(,4.3.32767]", + "System.Threading.Thread": "(,4.3.32767]", + "System.Threading.ThreadPool": "(,4.3.32767]", + "System.Threading.Timer": "(,4.3.32767]", + "System.ValueTuple": "(,4.5.32767]", + "System.Xml.ReaderWriter": "(,4.3.32767]", + "System.Xml.XDocument": "(,4.3.32767]", + "System.Xml.XmlDocument": "(,4.3.32767]", + "System.Xml.XmlSerializer": "(,4.3.32767]", + "System.Xml.XPath": "(,4.3.32767]", + "System.Xml.XPath.XDocument": "(,5.0.32767]" + } + } + } + }, + "C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\QuantEngine.Web.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\QuantEngine.Web.csproj", + "projectName": "QuantEngine.Web", + "projectPath": "C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\QuantEngine.Web.csproj", + "packagesPath": "C:\\Users\\kjh20\\.nuget\\packages\\", + "outputPath": "C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\", + "projectStyle": "PackageReference", + "fallbackFolders": [ + "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages", + "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder" + ], + "configFilePaths": [ + "C:\\Users\\kjh20\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "net10.0" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "C:\\Program Files\\dotnet\\library-packs": {}, + "https://api.nuget.org/v3/index.json": {}, + "https://nuget.telerik.com/v3/index.json": {} + }, + "frameworks": { + "net10.0": { + "targetAlias": "net10.0", + "projectReferences": { + "C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Application\\QuantEngine.Application.csproj": { + "projectPath": "C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Application\\QuantEngine.Application.csproj" + }, + "C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Core\\QuantEngine.Core.csproj": { + "projectPath": "C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Core\\QuantEngine.Core.csproj" + }, + "C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Infrastructure\\QuantEngine.Infrastructure.csproj": { + "projectPath": "C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Infrastructure\\QuantEngine.Infrastructure.csproj" + } + } + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + }, + "restoreAuditProperties": { + "enableAudit": "true", + "auditLevel": "low", + "auditMode": "all" + }, + "SdkAnalysisLevel": "10.0.100" + }, + "frameworks": { + "net10.0": { + "targetAlias": "net10.0", + "dependencies": { + "Microsoft.AspNetCore.App.Internal.Assets": { + "suppressParent": "All", + "target": "Package", + "version": "[10.0.0, )", + "autoReferenced": true + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.AspNetCore.App": { + "privateAssets": "none" + }, + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\10.0.100/PortableRuntimeIdentifierGraph.json", + "packagesToPrune": { + "Microsoft.AspNetCore": "(,10.0.32767]", + "Microsoft.AspNetCore.Antiforgery": "(,10.0.32767]", + "Microsoft.AspNetCore.App": "(,10.0.32767]", + "Microsoft.AspNetCore.Authentication": "(,10.0.32767]", + "Microsoft.AspNetCore.Authentication.Abstractions": "(,10.0.32767]", + "Microsoft.AspNetCore.Authentication.BearerToken": "(,10.0.32767]", + "Microsoft.AspNetCore.Authentication.Cookies": "(,10.0.32767]", + "Microsoft.AspNetCore.Authentication.Core": "(,10.0.32767]", + "Microsoft.AspNetCore.Authentication.OAuth": "(,10.0.32767]", + "Microsoft.AspNetCore.Authorization": "(,10.0.32767]", + "Microsoft.AspNetCore.Authorization.Policy": "(,10.0.32767]", + "Microsoft.AspNetCore.Components": "(,10.0.32767]", + "Microsoft.AspNetCore.Components.Authorization": "(,10.0.32767]", + "Microsoft.AspNetCore.Components.Endpoints": "(,10.0.32767]", + "Microsoft.AspNetCore.Components.Forms": "(,10.0.32767]", + "Microsoft.AspNetCore.Components.Server": "(,10.0.32767]", + "Microsoft.AspNetCore.Components.Web": "(,10.0.32767]", + "Microsoft.AspNetCore.Connections.Abstractions": "(,10.0.32767]", + "Microsoft.AspNetCore.CookiePolicy": "(,10.0.32767]", + "Microsoft.AspNetCore.Cors": "(,10.0.32767]", + "Microsoft.AspNetCore.Cryptography.Internal": "(,10.0.32767]", + "Microsoft.AspNetCore.Cryptography.KeyDerivation": "(,10.0.32767]", + "Microsoft.AspNetCore.DataProtection": "(,10.0.32767]", + "Microsoft.AspNetCore.DataProtection.Abstractions": "(,10.0.32767]", + "Microsoft.AspNetCore.DataProtection.Extensions": "(,10.0.32767]", + "Microsoft.AspNetCore.Diagnostics": "(,10.0.32767]", + "Microsoft.AspNetCore.Diagnostics.Abstractions": "(,10.0.32767]", + "Microsoft.AspNetCore.Diagnostics.HealthChecks": "(,10.0.32767]", + "Microsoft.AspNetCore.HostFiltering": "(,10.0.32767]", + "Microsoft.AspNetCore.Hosting": "(,10.0.32767]", + "Microsoft.AspNetCore.Hosting.Abstractions": "(,10.0.32767]", + "Microsoft.AspNetCore.Hosting.Server.Abstractions": "(,10.0.32767]", + "Microsoft.AspNetCore.Html.Abstractions": "(,10.0.32767]", + "Microsoft.AspNetCore.Http": "(,10.0.32767]", + "Microsoft.AspNetCore.Http.Abstractions": "(,10.0.32767]", + "Microsoft.AspNetCore.Http.Connections": "(,10.0.32767]", + "Microsoft.AspNetCore.Http.Connections.Common": "(,10.0.32767]", + "Microsoft.AspNetCore.Http.Extensions": "(,10.0.32767]", + "Microsoft.AspNetCore.Http.Features": "(,10.0.32767]", + "Microsoft.AspNetCore.Http.Results": "(,10.0.32767]", + "Microsoft.AspNetCore.HttpLogging": "(,10.0.32767]", + "Microsoft.AspNetCore.HttpOverrides": "(,10.0.32767]", + "Microsoft.AspNetCore.HttpsPolicy": "(,10.0.32767]", + "Microsoft.AspNetCore.Identity": "(,10.0.32767]", + "Microsoft.AspNetCore.Localization": "(,10.0.32767]", + "Microsoft.AspNetCore.Localization.Routing": "(,10.0.32767]", + "Microsoft.AspNetCore.Metadata": "(,10.0.32767]", + "Microsoft.AspNetCore.Mvc": "(,10.0.32767]", + "Microsoft.AspNetCore.Mvc.Abstractions": "(,10.0.32767]", + "Microsoft.AspNetCore.Mvc.ApiExplorer": "(,10.0.32767]", + "Microsoft.AspNetCore.Mvc.Core": "(,10.0.32767]", + "Microsoft.AspNetCore.Mvc.Cors": "(,10.0.32767]", + "Microsoft.AspNetCore.Mvc.DataAnnotations": "(,10.0.32767]", + "Microsoft.AspNetCore.Mvc.Formatters.Json": "(,10.0.32767]", + "Microsoft.AspNetCore.Mvc.Formatters.Xml": "(,10.0.32767]", + "Microsoft.AspNetCore.Mvc.Localization": "(,10.0.32767]", + "Microsoft.AspNetCore.Mvc.Razor": "(,10.0.32767]", + "Microsoft.AspNetCore.Mvc.RazorPages": "(,10.0.32767]", + "Microsoft.AspNetCore.Mvc.TagHelpers": "(,10.0.32767]", + "Microsoft.AspNetCore.Mvc.ViewFeatures": "(,10.0.32767]", + "Microsoft.AspNetCore.OutputCaching": "(,10.0.32767]", + "Microsoft.AspNetCore.RateLimiting": "(,10.0.32767]", + "Microsoft.AspNetCore.Razor": "(,10.0.32767]", + "Microsoft.AspNetCore.Razor.Runtime": "(,10.0.32767]", + "Microsoft.AspNetCore.RequestDecompression": "(,10.0.32767]", + "Microsoft.AspNetCore.ResponseCaching": "(,10.0.32767]", + "Microsoft.AspNetCore.ResponseCaching.Abstractions": "(,10.0.32767]", + "Microsoft.AspNetCore.ResponseCompression": "(,10.0.32767]", + "Microsoft.AspNetCore.Rewrite": "(,10.0.32767]", + "Microsoft.AspNetCore.Routing": "(,10.0.32767]", + "Microsoft.AspNetCore.Routing.Abstractions": "(,10.0.32767]", + "Microsoft.AspNetCore.Server.HttpSys": "(,10.0.32767]", + "Microsoft.AspNetCore.Server.IIS": "(,10.0.32767]", + "Microsoft.AspNetCore.Server.IISIntegration": "(,10.0.32767]", + "Microsoft.AspNetCore.Server.Kestrel": "(,10.0.32767]", + "Microsoft.AspNetCore.Server.Kestrel.Core": "(,10.0.32767]", + "Microsoft.AspNetCore.Server.Kestrel.Transport.NamedPipes": "(,10.0.32767]", + "Microsoft.AspNetCore.Server.Kestrel.Transport.Quic": "(,10.0.32767]", + "Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets": "(,10.0.32767]", + "Microsoft.AspNetCore.Session": "(,10.0.32767]", + "Microsoft.AspNetCore.SignalR": "(,10.0.32767]", + "Microsoft.AspNetCore.SignalR.Common": "(,10.0.32767]", + "Microsoft.AspNetCore.SignalR.Core": "(,10.0.32767]", + "Microsoft.AspNetCore.SignalR.Protocols.Json": "(,10.0.32767]", + "Microsoft.AspNetCore.StaticAssets": "(,10.0.32767]", + "Microsoft.AspNetCore.StaticFiles": "(,10.0.32767]", + "Microsoft.AspNetCore.WebSockets": "(,10.0.32767]", + "Microsoft.AspNetCore.WebUtilities": "(,10.0.32767]", + "Microsoft.CSharp": "(,4.7.32767]", + "Microsoft.Extensions.Caching.Abstractions": "(,10.0.32767]", + "Microsoft.Extensions.Caching.Memory": "(,10.0.32767]", + "Microsoft.Extensions.Configuration": "(,10.0.32767]", + "Microsoft.Extensions.Configuration.Abstractions": "(,10.0.32767]", + "Microsoft.Extensions.Configuration.Binder": "(,10.0.32767]", + "Microsoft.Extensions.Configuration.CommandLine": "(,10.0.32767]", + "Microsoft.Extensions.Configuration.EnvironmentVariables": "(,10.0.32767]", + "Microsoft.Extensions.Configuration.FileExtensions": "(,10.0.32767]", + "Microsoft.Extensions.Configuration.Ini": "(,10.0.32767]", + "Microsoft.Extensions.Configuration.Json": "(,10.0.32767]", + "Microsoft.Extensions.Configuration.KeyPerFile": "(,10.0.32767]", + "Microsoft.Extensions.Configuration.UserSecrets": "(,10.0.32767]", + "Microsoft.Extensions.Configuration.Xml": "(,10.0.32767]", + "Microsoft.Extensions.DependencyInjection": "(,10.0.32767]", + "Microsoft.Extensions.DependencyInjection.Abstractions": "(,10.0.32767]", + "Microsoft.Extensions.Diagnostics": "(,10.0.32767]", + "Microsoft.Extensions.Diagnostics.Abstractions": "(,10.0.32767]", + "Microsoft.Extensions.Diagnostics.HealthChecks": "(,10.0.32767]", + "Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions": "(,10.0.32767]", + "Microsoft.Extensions.Features": "(,10.0.32767]", + "Microsoft.Extensions.FileProviders.Abstractions": "(,10.0.32767]", + "Microsoft.Extensions.FileProviders.Composite": "(,10.0.32767]", + "Microsoft.Extensions.FileProviders.Physical": "(,10.0.32767]", + "Microsoft.Extensions.FileSystemGlobbing": "(,10.0.32767]", + "Microsoft.Extensions.Hosting": "(,10.0.32767]", + "Microsoft.Extensions.Hosting.Abstractions": "(,10.0.32767]", + "Microsoft.Extensions.Http": "(,10.0.32767]", + "Microsoft.Extensions.Identity.Core": "(,10.0.32767]", + "Microsoft.Extensions.Identity.Stores": "(,10.0.32767]", + "Microsoft.Extensions.Localization": "(,10.0.32767]", + "Microsoft.Extensions.Localization.Abstractions": "(,10.0.32767]", + "Microsoft.Extensions.Logging": "(,10.0.32767]", + "Microsoft.Extensions.Logging.Abstractions": "(,10.0.32767]", + "Microsoft.Extensions.Logging.Configuration": "(,10.0.32767]", + "Microsoft.Extensions.Logging.Console": "(,10.0.32767]", + "Microsoft.Extensions.Logging.Debug": "(,10.0.32767]", + "Microsoft.Extensions.Logging.EventLog": "(,10.0.32767]", + "Microsoft.Extensions.Logging.EventSource": "(,10.0.32767]", + "Microsoft.Extensions.Logging.TraceSource": "(,10.0.32767]", + "Microsoft.Extensions.ObjectPool": "(,10.0.32767]", + "Microsoft.Extensions.Options": "(,10.0.32767]", + "Microsoft.Extensions.Options.ConfigurationExtensions": "(,10.0.32767]", + "Microsoft.Extensions.Options.DataAnnotations": "(,10.0.32767]", + "Microsoft.Extensions.Primitives": "(,10.0.32767]", + "Microsoft.Extensions.Validation": "(,10.0.32767]", + "Microsoft.Extensions.WebEncoders": "(,10.0.32767]", + "Microsoft.JSInterop": "(,10.0.32767]", + "Microsoft.Net.Http.Headers": "(,10.0.32767]", + "Microsoft.VisualBasic": "(,10.4.32767]", + "Microsoft.Win32.Primitives": "(,4.3.32767]", + "Microsoft.Win32.Registry": "(,5.0.32767]", + "runtime.any.System.Collections": "(,4.3.32767]", + "runtime.any.System.Diagnostics.Tools": "(,4.3.32767]", + "runtime.any.System.Diagnostics.Tracing": "(,4.3.32767]", + "runtime.any.System.Globalization": "(,4.3.32767]", + "runtime.any.System.Globalization.Calendars": "(,4.3.32767]", + "runtime.any.System.IO": "(,4.3.32767]", + "runtime.any.System.Reflection": "(,4.3.32767]", + "runtime.any.System.Reflection.Extensions": "(,4.3.32767]", + "runtime.any.System.Reflection.Primitives": "(,4.3.32767]", + "runtime.any.System.Resources.ResourceManager": "(,4.3.32767]", + "runtime.any.System.Runtime": "(,4.3.32767]", + "runtime.any.System.Runtime.Handles": "(,4.3.32767]", + "runtime.any.System.Runtime.InteropServices": "(,4.3.32767]", + "runtime.any.System.Text.Encoding": "(,4.3.32767]", + "runtime.any.System.Text.Encoding.Extensions": "(,4.3.32767]", + "runtime.any.System.Threading.Tasks": "(,4.3.32767]", + "runtime.any.System.Threading.Timer": "(,4.3.32767]", + "runtime.aot.System.Collections": "(,4.3.32767]", + "runtime.aot.System.Diagnostics.Tools": "(,4.3.32767]", + "runtime.aot.System.Diagnostics.Tracing": "(,4.3.32767]", + "runtime.aot.System.Globalization": "(,4.3.32767]", + "runtime.aot.System.Globalization.Calendars": "(,4.3.32767]", + "runtime.aot.System.IO": "(,4.3.32767]", + "runtime.aot.System.Reflection": "(,4.3.32767]", + "runtime.aot.System.Reflection.Extensions": "(,4.3.32767]", + "runtime.aot.System.Reflection.Primitives": "(,4.3.32767]", + "runtime.aot.System.Resources.ResourceManager": "(,4.3.32767]", + "runtime.aot.System.Runtime": "(,4.3.32767]", + "runtime.aot.System.Runtime.Handles": "(,4.3.32767]", + "runtime.aot.System.Runtime.InteropServices": "(,4.3.32767]", + "runtime.aot.System.Text.Encoding": "(,4.3.32767]", + "runtime.aot.System.Text.Encoding.Extensions": "(,4.3.32767]", + "runtime.aot.System.Threading.Tasks": "(,4.3.32767]", + "runtime.aot.System.Threading.Timer": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.debian.9-x64.runtime.native.System": "(,4.3.32767]", + "runtime.debian.9-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.debian.9-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.debian.9-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.fedora.27-x64.runtime.native.System": "(,4.3.32767]", + "runtime.fedora.27-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.fedora.27-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.fedora.27-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.fedora.28-x64.runtime.native.System": "(,4.3.32767]", + "runtime.fedora.28-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.fedora.28-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.fedora.28-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.opensuse.42.3-x64.runtime.native.System": "(,4.3.32767]", + "runtime.opensuse.42.3-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.opensuse.42.3-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.opensuse.42.3-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.ubuntu.18.04-x64.runtime.native.System": "(,4.3.32767]", + "runtime.ubuntu.18.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.ubuntu.18.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.ubuntu.18.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.unix.Microsoft.Win32.Primitives": "(,4.3.32767]", + "runtime.unix.System.Console": "(,4.3.32767]", + "runtime.unix.System.Diagnostics.Debug": "(,4.3.32767]", + "runtime.unix.System.IO.FileSystem": "(,4.3.32767]", + "runtime.unix.System.Net.Primitives": "(,4.3.32767]", + "runtime.unix.System.Net.Sockets": "(,4.3.32767]", + "runtime.unix.System.Private.Uri": "(,4.3.32767]", + "runtime.unix.System.Runtime.Extensions": "(,4.3.32767]", + "runtime.win.Microsoft.Win32.Primitives": "(,4.3.32767]", + "runtime.win.System.Console": "(,4.3.32767]", + "runtime.win.System.Diagnostics.Debug": "(,4.3.32767]", + "runtime.win.System.IO.FileSystem": "(,4.3.32767]", + "runtime.win.System.Net.Primitives": "(,4.3.32767]", + "runtime.win.System.Net.Sockets": "(,4.3.32767]", + "runtime.win.System.Runtime.Extensions": "(,4.3.32767]", + "runtime.win10-arm-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", + "runtime.win10-arm64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.win10-x64-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", + "runtime.win10-x86-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", + "runtime.win7-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.win7-x86.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.win7.System.Private.Uri": "(,4.3.32767]", + "runtime.win8-arm.runtime.native.System.IO.Compression": "(,4.3.32767]", + "System.AppContext": "(,4.3.32767]", + "System.Buffers": "(,5.0.32767]", + "System.Collections": "(,4.3.32767]", + "System.Collections.Concurrent": "(,4.3.32767]", + "System.Collections.Immutable": "(,10.0.32767]", + "System.Collections.NonGeneric": "(,4.3.32767]", + "System.Collections.Specialized": "(,4.3.32767]", + "System.ComponentModel": "(,4.3.32767]", + "System.ComponentModel.Annotations": "(,4.3.32767]", + "System.ComponentModel.EventBasedAsync": "(,4.3.32767]", + "System.ComponentModel.Primitives": "(,4.3.32767]", + "System.ComponentModel.TypeConverter": "(,4.3.32767]", + "System.Console": "(,4.3.32767]", + "System.Data.Common": "(,4.3.32767]", + "System.Data.DataSetExtensions": "(,4.4.32767]", + "System.Diagnostics.Contracts": "(,4.3.32767]", + "System.Diagnostics.Debug": "(,4.3.32767]", + "System.Diagnostics.DiagnosticSource": "(,10.0.32767]", + "System.Diagnostics.EventLog": "(,10.0.32767]", + "System.Diagnostics.FileVersionInfo": "(,4.3.32767]", + "System.Diagnostics.Process": "(,4.3.32767]", + "System.Diagnostics.StackTrace": "(,4.3.32767]", + "System.Diagnostics.TextWriterTraceListener": "(,4.3.32767]", + "System.Diagnostics.Tools": "(,4.3.32767]", + "System.Diagnostics.TraceSource": "(,4.3.32767]", + "System.Diagnostics.Tracing": "(,4.3.32767]", + "System.Drawing.Primitives": "(,4.3.32767]", + "System.Dynamic.Runtime": "(,4.3.32767]", + "System.Formats.Asn1": "(,10.0.32767]", + "System.Formats.Cbor": "(,10.0.32767]", + "System.Formats.Tar": "(,10.0.32767]", + "System.Globalization": "(,4.3.32767]", + "System.Globalization.Calendars": "(,4.3.32767]", + "System.Globalization.Extensions": "(,4.3.32767]", + "System.IO": "(,4.3.32767]", + "System.IO.Compression": "(,4.3.32767]", + "System.IO.Compression.ZipFile": "(,4.3.32767]", + "System.IO.FileSystem": "(,4.3.32767]", + "System.IO.FileSystem.AccessControl": "(,4.4.32767]", + "System.IO.FileSystem.DriveInfo": "(,4.3.32767]", + "System.IO.FileSystem.Primitives": "(,4.3.32767]", + "System.IO.FileSystem.Watcher": "(,4.3.32767]", + "System.IO.IsolatedStorage": "(,4.3.32767]", + "System.IO.MemoryMappedFiles": "(,4.3.32767]", + "System.IO.Pipelines": "(,10.0.32767]", + "System.IO.Pipes": "(,4.3.32767]", + "System.IO.Pipes.AccessControl": "(,5.0.32767]", + "System.IO.UnmanagedMemoryStream": "(,4.3.32767]", + "System.Linq": "(,4.3.32767]", + "System.Linq.AsyncEnumerable": "(,10.0.32767]", + "System.Linq.Expressions": "(,4.3.32767]", + "System.Linq.Parallel": "(,4.3.32767]", + "System.Linq.Queryable": "(,4.3.32767]", + "System.Memory": "(,5.0.32767]", + "System.Net.Http": "(,4.3.32767]", + "System.Net.Http.Json": "(,10.0.32767]", + "System.Net.NameResolution": "(,4.3.32767]", + "System.Net.NetworkInformation": "(,4.3.32767]", + "System.Net.Ping": "(,4.3.32767]", + "System.Net.Primitives": "(,4.3.32767]", + "System.Net.Requests": "(,4.3.32767]", + "System.Net.Security": "(,4.3.32767]", + "System.Net.ServerSentEvents": "(,10.0.32767]", + "System.Net.Sockets": "(,4.3.32767]", + "System.Net.WebHeaderCollection": "(,4.3.32767]", + "System.Net.WebSockets": "(,4.3.32767]", + "System.Net.WebSockets.Client": "(,4.3.32767]", + "System.Numerics.Vectors": "(,5.0.32767]", + "System.ObjectModel": "(,4.3.32767]", + "System.Private.DataContractSerialization": "(,4.3.32767]", + "System.Private.Uri": "(,4.3.32767]", + "System.Reflection": "(,4.3.32767]", + "System.Reflection.DispatchProxy": "(,6.0.32767]", + "System.Reflection.Emit": "(,4.7.32767]", + "System.Reflection.Emit.ILGeneration": "(,4.7.32767]", + "System.Reflection.Emit.Lightweight": "(,4.7.32767]", + "System.Reflection.Extensions": "(,4.3.32767]", + "System.Reflection.Metadata": "(,10.0.32767]", + "System.Reflection.Primitives": "(,4.3.32767]", + "System.Reflection.TypeExtensions": "(,4.3.32767]", + "System.Resources.Reader": "(,4.3.32767]", + "System.Resources.ResourceManager": "(,4.3.32767]", + "System.Resources.Writer": "(,4.3.32767]", + "System.Runtime": "(,4.3.32767]", + "System.Runtime.CompilerServices.Unsafe": "(,7.0.32767]", + "System.Runtime.CompilerServices.VisualC": "(,4.3.32767]", + "System.Runtime.Extensions": "(,4.3.32767]", + "System.Runtime.Handles": "(,4.3.32767]", + "System.Runtime.InteropServices": "(,4.3.32767]", + "System.Runtime.InteropServices.RuntimeInformation": "(,4.3.32767]", + "System.Runtime.Loader": "(,4.3.32767]", + "System.Runtime.Numerics": "(,4.3.32767]", + "System.Runtime.Serialization.Formatters": "(,4.3.32767]", + "System.Runtime.Serialization.Json": "(,4.3.32767]", + "System.Runtime.Serialization.Primitives": "(,4.3.32767]", + "System.Runtime.Serialization.Xml": "(,4.3.32767]", + "System.Security.AccessControl": "(,6.0.32767]", + "System.Security.Claims": "(,4.3.32767]", + "System.Security.Cryptography.Algorithms": "(,4.3.32767]", + "System.Security.Cryptography.Cng": "(,5.0.32767]", + "System.Security.Cryptography.Csp": "(,4.3.32767]", + "System.Security.Cryptography.Encoding": "(,4.3.32767]", + "System.Security.Cryptography.OpenSsl": "(,5.0.32767]", + "System.Security.Cryptography.Primitives": "(,4.3.32767]", + "System.Security.Cryptography.X509Certificates": "(,4.3.32767]", + "System.Security.Cryptography.Xml": "(,10.0.32767]", + "System.Security.Principal": "(,4.3.32767]", + "System.Security.Principal.Windows": "(,5.0.32767]", + "System.Security.SecureString": "(,4.3.32767]", + "System.Text.Encoding": "(,4.3.32767]", + "System.Text.Encoding.CodePages": "(,10.0.32767]", + "System.Text.Encoding.Extensions": "(,4.3.32767]", + "System.Text.Encodings.Web": "(,10.0.32767]", + "System.Text.Json": "(,10.0.32767]", + "System.Text.RegularExpressions": "(,4.3.32767]", + "System.Threading": "(,4.3.32767]", + "System.Threading.AccessControl": "(,10.0.32767]", + "System.Threading.Channels": "(,10.0.32767]", + "System.Threading.Overlapped": "(,4.3.32767]", + "System.Threading.RateLimiting": "(,10.0.32767]", + "System.Threading.Tasks": "(,4.3.32767]", + "System.Threading.Tasks.Dataflow": "(,10.0.32767]", + "System.Threading.Tasks.Extensions": "(,5.0.32767]", + "System.Threading.Tasks.Parallel": "(,4.3.32767]", + "System.Threading.Thread": "(,4.3.32767]", + "System.Threading.ThreadPool": "(,4.3.32767]", + "System.Threading.Timer": "(,4.3.32767]", + "System.ValueTuple": "(,4.5.32767]", + "System.Xml.ReaderWriter": "(,4.3.32767]", + "System.Xml.XDocument": "(,4.3.32767]", + "System.Xml.XmlDocument": "(,4.3.32767]", + "System.Xml.XmlSerializer": "(,4.3.32767]", + "System.Xml.XPath": "(,4.3.32767]", + "System.Xml.XPath.XDocument": "(,5.0.32767]" + } + } + } + } + } +} \ No newline at end of file diff --git a/src/dotnet/QuantEngine.Web/obj/QuantEngine.Web.csproj.nuget.g.props b/src/dotnet/QuantEngine.Web/obj/QuantEngine.Web.csproj.nuget.g.props new file mode 100644 index 0000000..6d43d4d --- /dev/null +++ b/src/dotnet/QuantEngine.Web/obj/QuantEngine.Web.csproj.nuget.g.props @@ -0,0 +1,20 @@ + + + + True + NuGet + $(MSBuildThisFileDirectory)project.assets.json + $(UserProfile)\.nuget\packages\ + C:\Users\kjh20\.nuget\packages\;C:\Program Files (x86)\Microsoft Visual Studio\Shared\NuGetPackages;C:\Program Files\dotnet\sdk\NuGetFallbackFolder + PackageReference + 7.0.0 + + + + + + + + + + \ No newline at end of file diff --git a/src/dotnet/QuantEngine.Web/obj/QuantEngine.Web.csproj.nuget.g.targets b/src/dotnet/QuantEngine.Web/obj/QuantEngine.Web.csproj.nuget.g.targets new file mode 100644 index 0000000..2a391f1 --- /dev/null +++ b/src/dotnet/QuantEngine.Web/obj/QuantEngine.Web.csproj.nuget.g.targets @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/src/dotnet/QuantEngine.Web/obj/project.assets.json b/src/dotnet/QuantEngine.Web/obj/project.assets.json new file mode 100644 index 0000000..f4f83aa --- /dev/null +++ b/src/dotnet/QuantEngine.Web/obj/project.assets.json @@ -0,0 +1,678 @@ +{ + "version": 3, + "targets": { + "net10.0": { + "Dapper/2.1.79": { + "type": "package", + "compile": { + "lib/net10.0/Dapper.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net10.0/Dapper.dll": { + "related": ".xml" + } + } + }, + "Microsoft.AspNetCore.App.Internal.Assets/10.0.0": { + "type": "package", + "build": { + "build/Microsoft.AspNetCore.App.Internal.Assets.props": {}, + "buildTransitive/Microsoft.AspNetCore.App.Internal.Assets.targets": {} + }, + "buildMultiTargeting": { + "buildMultiTargeting/Microsoft.AspNetCore.App.Internal.Assets.targets": {} + } + }, + "Npgsql/10.0.3": { + "type": "package", + "compile": { + "lib/net10.0/Npgsql.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net10.0/Npgsql.dll": { + "related": ".xml" + } + } + }, + "QuantEngine.Application/1.0.0": { + "type": "project", + "framework": ".NETCoreApp,Version=v10.0", + "dependencies": { + "QuantEngine.Core": "1.0.0" + }, + "compile": { + "bin/placeholder/QuantEngine.Application.dll": {} + }, + "runtime": { + "bin/placeholder/QuantEngine.Application.dll": {} + } + }, + "QuantEngine.Core/1.0.0": { + "type": "project", + "framework": ".NETCoreApp,Version=v10.0", + "compile": { + "bin/placeholder/QuantEngine.Core.dll": {} + }, + "runtime": { + "bin/placeholder/QuantEngine.Core.dll": {} + } + }, + "QuantEngine.Infrastructure/1.0.0": { + "type": "project", + "framework": ".NETCoreApp,Version=v10.0", + "dependencies": { + "Dapper": "2.1.79", + "Npgsql": "10.0.3", + "QuantEngine.Application": "1.0.0", + "QuantEngine.Core": "1.0.0" + }, + "compile": { + "bin/placeholder/QuantEngine.Infrastructure.dll": {} + }, + "runtime": { + "bin/placeholder/QuantEngine.Infrastructure.dll": {} + } + } + } + }, + "libraries": { + "Dapper/2.1.79": { + "sha512": "8YijbzgTfmqmQOnVNorYM6K++pxqnW3nJ4aC1sRHzxUA2CcuoJ9gsTem3kgBnPRMc38zZHl4Esb6hAezXIEEuw==", + "type": "package", + "path": "dapper/2.1.79", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Dapper.png", + "dapper.2.1.79.nupkg.sha512", + "dapper.nuspec", + "lib/net10.0/Dapper.dll", + "lib/net10.0/Dapper.xml", + "lib/net461/Dapper.dll", + "lib/net461/Dapper.xml", + "lib/net8.0/Dapper.dll", + "lib/net8.0/Dapper.xml", + "lib/netstandard2.0/Dapper.dll", + "lib/netstandard2.0/Dapper.xml", + "readme.md" + ] + }, + "Microsoft.AspNetCore.App.Internal.Assets/10.0.0": { + "sha512": "0gZrESKwnlmbE8Br8XIy3kk7Pj0++9T2Ly+A8BFYYgo5EgfqWEln26cho+l92KOaHUzclhvz314RiwE910s24g==", + "type": "package", + "path": "microsoft.aspnetcore.app.internal.assets/10.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "THIRD-PARTY-NOTICES.TXT", + "_framework/blazor.server.js", + "_framework/blazor.server.js.map", + "_framework/blazor.web.js", + "_framework/blazor.web.js.map", + "_framework/blazor.webassembly.js", + "_framework/blazor.webassembly.js.map", + "build/Microsoft.AspNetCore.App.Internal.Assets.props", + "build/Microsoft.AspNetCore.App.Internal.Assets.targets", + "buildMultiTargeting/Microsoft.AspNetCore.App.Internal.Assets.targets", + "buildTransitive/Microsoft.AspNetCore.App.Internal.Assets.targets", + "microsoft.aspnetcore.app.internal.assets.10.0.0.nupkg.sha512", + "microsoft.aspnetcore.app.internal.assets.nuspec" + ] + }, + "Npgsql/10.0.3": { + "sha512": "7nb5YzXuvWWJxB0J8DiyL3we+X4FOctZrt0fIBnucOIaIevFEEwGQVZKtiu9olXdlNAK1eNgqSral6r/jlhI4w==", + "type": "package", + "path": "npgsql/10.0.3", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "README.md", + "lib/net10.0/Npgsql.dll", + "lib/net10.0/Npgsql.xml", + "lib/net8.0/Npgsql.dll", + "lib/net8.0/Npgsql.xml", + "lib/net9.0/Npgsql.dll", + "lib/net9.0/Npgsql.xml", + "npgsql.10.0.3.nupkg.sha512", + "npgsql.nuspec", + "postgresql.png" + ] + }, + "QuantEngine.Application/1.0.0": { + "type": "project", + "path": "../QuantEngine.Application/QuantEngine.Application.csproj", + "msbuildProject": "../QuantEngine.Application/QuantEngine.Application.csproj" + }, + "QuantEngine.Core/1.0.0": { + "type": "project", + "path": "../QuantEngine.Core/QuantEngine.Core.csproj", + "msbuildProject": "../QuantEngine.Core/QuantEngine.Core.csproj" + }, + "QuantEngine.Infrastructure/1.0.0": { + "type": "project", + "path": "../QuantEngine.Infrastructure/QuantEngine.Infrastructure.csproj", + "msbuildProject": "../QuantEngine.Infrastructure/QuantEngine.Infrastructure.csproj" + } + }, + "projectFileDependencyGroups": { + "net10.0": [ + "Microsoft.AspNetCore.App.Internal.Assets >= 10.0.0", + "QuantEngine.Application >= 1.0.0", + "QuantEngine.Core >= 1.0.0", + "QuantEngine.Infrastructure >= 1.0.0" + ] + }, + "packageFolders": { + "C:\\Users\\kjh20\\.nuget\\packages\\": {}, + "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages": {}, + "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder": {} + }, + "project": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\QuantEngine.Web.csproj", + "projectName": "QuantEngine.Web", + "projectPath": "C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\QuantEngine.Web.csproj", + "packagesPath": "C:\\Users\\kjh20\\.nuget\\packages\\", + "outputPath": "C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\", + "projectStyle": "PackageReference", + "fallbackFolders": [ + "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages", + "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder" + ], + "configFilePaths": [ + "C:\\Users\\kjh20\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "net10.0" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "C:\\Program Files\\dotnet\\library-packs": {}, + "https://api.nuget.org/v3/index.json": {}, + "https://nuget.telerik.com/v3/index.json": {} + }, + "frameworks": { + "net10.0": { + "targetAlias": "net10.0", + "projectReferences": { + "C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Application\\QuantEngine.Application.csproj": { + "projectPath": "C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Application\\QuantEngine.Application.csproj" + }, + "C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Core\\QuantEngine.Core.csproj": { + "projectPath": "C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Core\\QuantEngine.Core.csproj" + }, + "C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Infrastructure\\QuantEngine.Infrastructure.csproj": { + "projectPath": "C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Infrastructure\\QuantEngine.Infrastructure.csproj" + } + } + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + }, + "restoreAuditProperties": { + "enableAudit": "true", + "auditLevel": "low", + "auditMode": "all" + }, + "SdkAnalysisLevel": "10.0.100" + }, + "frameworks": { + "net10.0": { + "targetAlias": "net10.0", + "dependencies": { + "Microsoft.AspNetCore.App.Internal.Assets": { + "suppressParent": "All", + "target": "Package", + "version": "[10.0.0, )", + "autoReferenced": true + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.AspNetCore.App": { + "privateAssets": "none" + }, + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\10.0.100/PortableRuntimeIdentifierGraph.json", + "packagesToPrune": { + "Microsoft.AspNetCore": "(,10.0.32767]", + "Microsoft.AspNetCore.Antiforgery": "(,10.0.32767]", + "Microsoft.AspNetCore.App": "(,10.0.32767]", + "Microsoft.AspNetCore.Authentication": "(,10.0.32767]", + "Microsoft.AspNetCore.Authentication.Abstractions": "(,10.0.32767]", + "Microsoft.AspNetCore.Authentication.BearerToken": "(,10.0.32767]", + "Microsoft.AspNetCore.Authentication.Cookies": "(,10.0.32767]", + "Microsoft.AspNetCore.Authentication.Core": "(,10.0.32767]", + "Microsoft.AspNetCore.Authentication.OAuth": "(,10.0.32767]", + "Microsoft.AspNetCore.Authorization": "(,10.0.32767]", + "Microsoft.AspNetCore.Authorization.Policy": "(,10.0.32767]", + "Microsoft.AspNetCore.Components": "(,10.0.32767]", + "Microsoft.AspNetCore.Components.Authorization": "(,10.0.32767]", + "Microsoft.AspNetCore.Components.Endpoints": "(,10.0.32767]", + "Microsoft.AspNetCore.Components.Forms": "(,10.0.32767]", + "Microsoft.AspNetCore.Components.Server": "(,10.0.32767]", + "Microsoft.AspNetCore.Components.Web": "(,10.0.32767]", + "Microsoft.AspNetCore.Connections.Abstractions": "(,10.0.32767]", + "Microsoft.AspNetCore.CookiePolicy": "(,10.0.32767]", + "Microsoft.AspNetCore.Cors": "(,10.0.32767]", + "Microsoft.AspNetCore.Cryptography.Internal": "(,10.0.32767]", + "Microsoft.AspNetCore.Cryptography.KeyDerivation": "(,10.0.32767]", + "Microsoft.AspNetCore.DataProtection": "(,10.0.32767]", + "Microsoft.AspNetCore.DataProtection.Abstractions": "(,10.0.32767]", + "Microsoft.AspNetCore.DataProtection.Extensions": "(,10.0.32767]", + "Microsoft.AspNetCore.Diagnostics": "(,10.0.32767]", + "Microsoft.AspNetCore.Diagnostics.Abstractions": "(,10.0.32767]", + "Microsoft.AspNetCore.Diagnostics.HealthChecks": "(,10.0.32767]", + "Microsoft.AspNetCore.HostFiltering": "(,10.0.32767]", + "Microsoft.AspNetCore.Hosting": "(,10.0.32767]", + "Microsoft.AspNetCore.Hosting.Abstractions": "(,10.0.32767]", + "Microsoft.AspNetCore.Hosting.Server.Abstractions": "(,10.0.32767]", + "Microsoft.AspNetCore.Html.Abstractions": "(,10.0.32767]", + "Microsoft.AspNetCore.Http": "(,10.0.32767]", + "Microsoft.AspNetCore.Http.Abstractions": "(,10.0.32767]", + "Microsoft.AspNetCore.Http.Connections": "(,10.0.32767]", + "Microsoft.AspNetCore.Http.Connections.Common": "(,10.0.32767]", + "Microsoft.AspNetCore.Http.Extensions": "(,10.0.32767]", + "Microsoft.AspNetCore.Http.Features": "(,10.0.32767]", + "Microsoft.AspNetCore.Http.Results": "(,10.0.32767]", + "Microsoft.AspNetCore.HttpLogging": "(,10.0.32767]", + "Microsoft.AspNetCore.HttpOverrides": "(,10.0.32767]", + "Microsoft.AspNetCore.HttpsPolicy": "(,10.0.32767]", + "Microsoft.AspNetCore.Identity": "(,10.0.32767]", + "Microsoft.AspNetCore.Localization": "(,10.0.32767]", + "Microsoft.AspNetCore.Localization.Routing": "(,10.0.32767]", + "Microsoft.AspNetCore.Metadata": "(,10.0.32767]", + "Microsoft.AspNetCore.Mvc": "(,10.0.32767]", + "Microsoft.AspNetCore.Mvc.Abstractions": "(,10.0.32767]", + "Microsoft.AspNetCore.Mvc.ApiExplorer": "(,10.0.32767]", + "Microsoft.AspNetCore.Mvc.Core": "(,10.0.32767]", + "Microsoft.AspNetCore.Mvc.Cors": "(,10.0.32767]", + "Microsoft.AspNetCore.Mvc.DataAnnotations": "(,10.0.32767]", + "Microsoft.AspNetCore.Mvc.Formatters.Json": "(,10.0.32767]", + "Microsoft.AspNetCore.Mvc.Formatters.Xml": "(,10.0.32767]", + "Microsoft.AspNetCore.Mvc.Localization": "(,10.0.32767]", + "Microsoft.AspNetCore.Mvc.Razor": "(,10.0.32767]", + "Microsoft.AspNetCore.Mvc.RazorPages": "(,10.0.32767]", + "Microsoft.AspNetCore.Mvc.TagHelpers": "(,10.0.32767]", + "Microsoft.AspNetCore.Mvc.ViewFeatures": "(,10.0.32767]", + "Microsoft.AspNetCore.OutputCaching": "(,10.0.32767]", + "Microsoft.AspNetCore.RateLimiting": "(,10.0.32767]", + "Microsoft.AspNetCore.Razor": "(,10.0.32767]", + "Microsoft.AspNetCore.Razor.Runtime": "(,10.0.32767]", + "Microsoft.AspNetCore.RequestDecompression": "(,10.0.32767]", + "Microsoft.AspNetCore.ResponseCaching": "(,10.0.32767]", + "Microsoft.AspNetCore.ResponseCaching.Abstractions": "(,10.0.32767]", + "Microsoft.AspNetCore.ResponseCompression": "(,10.0.32767]", + "Microsoft.AspNetCore.Rewrite": "(,10.0.32767]", + "Microsoft.AspNetCore.Routing": "(,10.0.32767]", + "Microsoft.AspNetCore.Routing.Abstractions": "(,10.0.32767]", + "Microsoft.AspNetCore.Server.HttpSys": "(,10.0.32767]", + "Microsoft.AspNetCore.Server.IIS": "(,10.0.32767]", + "Microsoft.AspNetCore.Server.IISIntegration": "(,10.0.32767]", + "Microsoft.AspNetCore.Server.Kestrel": "(,10.0.32767]", + "Microsoft.AspNetCore.Server.Kestrel.Core": "(,10.0.32767]", + "Microsoft.AspNetCore.Server.Kestrel.Transport.NamedPipes": "(,10.0.32767]", + "Microsoft.AspNetCore.Server.Kestrel.Transport.Quic": "(,10.0.32767]", + "Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets": "(,10.0.32767]", + "Microsoft.AspNetCore.Session": "(,10.0.32767]", + "Microsoft.AspNetCore.SignalR": "(,10.0.32767]", + "Microsoft.AspNetCore.SignalR.Common": "(,10.0.32767]", + "Microsoft.AspNetCore.SignalR.Core": "(,10.0.32767]", + "Microsoft.AspNetCore.SignalR.Protocols.Json": "(,10.0.32767]", + "Microsoft.AspNetCore.StaticAssets": "(,10.0.32767]", + "Microsoft.AspNetCore.StaticFiles": "(,10.0.32767]", + "Microsoft.AspNetCore.WebSockets": "(,10.0.32767]", + "Microsoft.AspNetCore.WebUtilities": "(,10.0.32767]", + "Microsoft.CSharp": "(,4.7.32767]", + "Microsoft.Extensions.Caching.Abstractions": "(,10.0.32767]", + "Microsoft.Extensions.Caching.Memory": "(,10.0.32767]", + "Microsoft.Extensions.Configuration": "(,10.0.32767]", + "Microsoft.Extensions.Configuration.Abstractions": "(,10.0.32767]", + "Microsoft.Extensions.Configuration.Binder": "(,10.0.32767]", + "Microsoft.Extensions.Configuration.CommandLine": "(,10.0.32767]", + "Microsoft.Extensions.Configuration.EnvironmentVariables": "(,10.0.32767]", + "Microsoft.Extensions.Configuration.FileExtensions": "(,10.0.32767]", + "Microsoft.Extensions.Configuration.Ini": "(,10.0.32767]", + "Microsoft.Extensions.Configuration.Json": "(,10.0.32767]", + "Microsoft.Extensions.Configuration.KeyPerFile": "(,10.0.32767]", + "Microsoft.Extensions.Configuration.UserSecrets": "(,10.0.32767]", + "Microsoft.Extensions.Configuration.Xml": "(,10.0.32767]", + "Microsoft.Extensions.DependencyInjection": "(,10.0.32767]", + "Microsoft.Extensions.DependencyInjection.Abstractions": "(,10.0.32767]", + "Microsoft.Extensions.Diagnostics": "(,10.0.32767]", + "Microsoft.Extensions.Diagnostics.Abstractions": "(,10.0.32767]", + "Microsoft.Extensions.Diagnostics.HealthChecks": "(,10.0.32767]", + "Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions": "(,10.0.32767]", + "Microsoft.Extensions.Features": "(,10.0.32767]", + "Microsoft.Extensions.FileProviders.Abstractions": "(,10.0.32767]", + "Microsoft.Extensions.FileProviders.Composite": "(,10.0.32767]", + "Microsoft.Extensions.FileProviders.Physical": "(,10.0.32767]", + "Microsoft.Extensions.FileSystemGlobbing": "(,10.0.32767]", + "Microsoft.Extensions.Hosting": "(,10.0.32767]", + "Microsoft.Extensions.Hosting.Abstractions": "(,10.0.32767]", + "Microsoft.Extensions.Http": "(,10.0.32767]", + "Microsoft.Extensions.Identity.Core": "(,10.0.32767]", + "Microsoft.Extensions.Identity.Stores": "(,10.0.32767]", + "Microsoft.Extensions.Localization": "(,10.0.32767]", + "Microsoft.Extensions.Localization.Abstractions": "(,10.0.32767]", + "Microsoft.Extensions.Logging": "(,10.0.32767]", + "Microsoft.Extensions.Logging.Abstractions": "(,10.0.32767]", + "Microsoft.Extensions.Logging.Configuration": "(,10.0.32767]", + "Microsoft.Extensions.Logging.Console": "(,10.0.32767]", + "Microsoft.Extensions.Logging.Debug": "(,10.0.32767]", + "Microsoft.Extensions.Logging.EventLog": "(,10.0.32767]", + "Microsoft.Extensions.Logging.EventSource": "(,10.0.32767]", + "Microsoft.Extensions.Logging.TraceSource": "(,10.0.32767]", + "Microsoft.Extensions.ObjectPool": "(,10.0.32767]", + "Microsoft.Extensions.Options": "(,10.0.32767]", + "Microsoft.Extensions.Options.ConfigurationExtensions": "(,10.0.32767]", + "Microsoft.Extensions.Options.DataAnnotations": "(,10.0.32767]", + "Microsoft.Extensions.Primitives": "(,10.0.32767]", + "Microsoft.Extensions.Validation": "(,10.0.32767]", + "Microsoft.Extensions.WebEncoders": "(,10.0.32767]", + "Microsoft.JSInterop": "(,10.0.32767]", + "Microsoft.Net.Http.Headers": "(,10.0.32767]", + "Microsoft.VisualBasic": "(,10.4.32767]", + "Microsoft.Win32.Primitives": "(,4.3.32767]", + "Microsoft.Win32.Registry": "(,5.0.32767]", + "runtime.any.System.Collections": "(,4.3.32767]", + "runtime.any.System.Diagnostics.Tools": "(,4.3.32767]", + "runtime.any.System.Diagnostics.Tracing": "(,4.3.32767]", + "runtime.any.System.Globalization": "(,4.3.32767]", + "runtime.any.System.Globalization.Calendars": "(,4.3.32767]", + "runtime.any.System.IO": "(,4.3.32767]", + "runtime.any.System.Reflection": "(,4.3.32767]", + "runtime.any.System.Reflection.Extensions": "(,4.3.32767]", + "runtime.any.System.Reflection.Primitives": "(,4.3.32767]", + "runtime.any.System.Resources.ResourceManager": "(,4.3.32767]", + "runtime.any.System.Runtime": "(,4.3.32767]", + "runtime.any.System.Runtime.Handles": "(,4.3.32767]", + "runtime.any.System.Runtime.InteropServices": "(,4.3.32767]", + "runtime.any.System.Text.Encoding": "(,4.3.32767]", + "runtime.any.System.Text.Encoding.Extensions": "(,4.3.32767]", + "runtime.any.System.Threading.Tasks": "(,4.3.32767]", + "runtime.any.System.Threading.Timer": "(,4.3.32767]", + "runtime.aot.System.Collections": "(,4.3.32767]", + "runtime.aot.System.Diagnostics.Tools": "(,4.3.32767]", + "runtime.aot.System.Diagnostics.Tracing": "(,4.3.32767]", + "runtime.aot.System.Globalization": "(,4.3.32767]", + "runtime.aot.System.Globalization.Calendars": "(,4.3.32767]", + "runtime.aot.System.IO": "(,4.3.32767]", + "runtime.aot.System.Reflection": "(,4.3.32767]", + "runtime.aot.System.Reflection.Extensions": "(,4.3.32767]", + "runtime.aot.System.Reflection.Primitives": "(,4.3.32767]", + "runtime.aot.System.Resources.ResourceManager": "(,4.3.32767]", + "runtime.aot.System.Runtime": "(,4.3.32767]", + "runtime.aot.System.Runtime.Handles": "(,4.3.32767]", + "runtime.aot.System.Runtime.InteropServices": "(,4.3.32767]", + "runtime.aot.System.Text.Encoding": "(,4.3.32767]", + "runtime.aot.System.Text.Encoding.Extensions": "(,4.3.32767]", + "runtime.aot.System.Threading.Tasks": "(,4.3.32767]", + "runtime.aot.System.Threading.Timer": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.debian.9-x64.runtime.native.System": "(,4.3.32767]", + "runtime.debian.9-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.debian.9-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.debian.9-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.fedora.27-x64.runtime.native.System": "(,4.3.32767]", + "runtime.fedora.27-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.fedora.27-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.fedora.27-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.fedora.28-x64.runtime.native.System": "(,4.3.32767]", + "runtime.fedora.28-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.fedora.28-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.fedora.28-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.opensuse.42.3-x64.runtime.native.System": "(,4.3.32767]", + "runtime.opensuse.42.3-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.opensuse.42.3-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.opensuse.42.3-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.ubuntu.18.04-x64.runtime.native.System": "(,4.3.32767]", + "runtime.ubuntu.18.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.ubuntu.18.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.ubuntu.18.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.unix.Microsoft.Win32.Primitives": "(,4.3.32767]", + "runtime.unix.System.Console": "(,4.3.32767]", + "runtime.unix.System.Diagnostics.Debug": "(,4.3.32767]", + "runtime.unix.System.IO.FileSystem": "(,4.3.32767]", + "runtime.unix.System.Net.Primitives": "(,4.3.32767]", + "runtime.unix.System.Net.Sockets": "(,4.3.32767]", + "runtime.unix.System.Private.Uri": "(,4.3.32767]", + "runtime.unix.System.Runtime.Extensions": "(,4.3.32767]", + "runtime.win.Microsoft.Win32.Primitives": "(,4.3.32767]", + "runtime.win.System.Console": "(,4.3.32767]", + "runtime.win.System.Diagnostics.Debug": "(,4.3.32767]", + "runtime.win.System.IO.FileSystem": "(,4.3.32767]", + "runtime.win.System.Net.Primitives": "(,4.3.32767]", + "runtime.win.System.Net.Sockets": "(,4.3.32767]", + "runtime.win.System.Runtime.Extensions": "(,4.3.32767]", + "runtime.win10-arm-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", + "runtime.win10-arm64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.win10-x64-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", + "runtime.win10-x86-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", + "runtime.win7-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.win7-x86.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.win7.System.Private.Uri": "(,4.3.32767]", + "runtime.win8-arm.runtime.native.System.IO.Compression": "(,4.3.32767]", + "System.AppContext": "(,4.3.32767]", + "System.Buffers": "(,5.0.32767]", + "System.Collections": "(,4.3.32767]", + "System.Collections.Concurrent": "(,4.3.32767]", + "System.Collections.Immutable": "(,10.0.32767]", + "System.Collections.NonGeneric": "(,4.3.32767]", + "System.Collections.Specialized": "(,4.3.32767]", + "System.ComponentModel": "(,4.3.32767]", + "System.ComponentModel.Annotations": "(,4.3.32767]", + "System.ComponentModel.EventBasedAsync": "(,4.3.32767]", + "System.ComponentModel.Primitives": "(,4.3.32767]", + "System.ComponentModel.TypeConverter": "(,4.3.32767]", + "System.Console": "(,4.3.32767]", + "System.Data.Common": "(,4.3.32767]", + "System.Data.DataSetExtensions": "(,4.4.32767]", + "System.Diagnostics.Contracts": "(,4.3.32767]", + "System.Diagnostics.Debug": "(,4.3.32767]", + "System.Diagnostics.DiagnosticSource": "(,10.0.32767]", + "System.Diagnostics.EventLog": "(,10.0.32767]", + "System.Diagnostics.FileVersionInfo": "(,4.3.32767]", + "System.Diagnostics.Process": "(,4.3.32767]", + "System.Diagnostics.StackTrace": "(,4.3.32767]", + "System.Diagnostics.TextWriterTraceListener": "(,4.3.32767]", + "System.Diagnostics.Tools": "(,4.3.32767]", + "System.Diagnostics.TraceSource": "(,4.3.32767]", + "System.Diagnostics.Tracing": "(,4.3.32767]", + "System.Drawing.Primitives": "(,4.3.32767]", + "System.Dynamic.Runtime": "(,4.3.32767]", + "System.Formats.Asn1": "(,10.0.32767]", + "System.Formats.Cbor": "(,10.0.32767]", + "System.Formats.Tar": "(,10.0.32767]", + "System.Globalization": "(,4.3.32767]", + "System.Globalization.Calendars": "(,4.3.32767]", + "System.Globalization.Extensions": "(,4.3.32767]", + "System.IO": "(,4.3.32767]", + "System.IO.Compression": "(,4.3.32767]", + "System.IO.Compression.ZipFile": "(,4.3.32767]", + "System.IO.FileSystem": "(,4.3.32767]", + "System.IO.FileSystem.AccessControl": "(,4.4.32767]", + "System.IO.FileSystem.DriveInfo": "(,4.3.32767]", + "System.IO.FileSystem.Primitives": "(,4.3.32767]", + "System.IO.FileSystem.Watcher": "(,4.3.32767]", + "System.IO.IsolatedStorage": "(,4.3.32767]", + "System.IO.MemoryMappedFiles": "(,4.3.32767]", + "System.IO.Pipelines": "(,10.0.32767]", + "System.IO.Pipes": "(,4.3.32767]", + "System.IO.Pipes.AccessControl": "(,5.0.32767]", + "System.IO.UnmanagedMemoryStream": "(,4.3.32767]", + "System.Linq": "(,4.3.32767]", + "System.Linq.AsyncEnumerable": "(,10.0.32767]", + "System.Linq.Expressions": "(,4.3.32767]", + "System.Linq.Parallel": "(,4.3.32767]", + "System.Linq.Queryable": "(,4.3.32767]", + "System.Memory": "(,5.0.32767]", + "System.Net.Http": "(,4.3.32767]", + "System.Net.Http.Json": "(,10.0.32767]", + "System.Net.NameResolution": "(,4.3.32767]", + "System.Net.NetworkInformation": "(,4.3.32767]", + "System.Net.Ping": "(,4.3.32767]", + "System.Net.Primitives": "(,4.3.32767]", + "System.Net.Requests": "(,4.3.32767]", + "System.Net.Security": "(,4.3.32767]", + "System.Net.ServerSentEvents": "(,10.0.32767]", + "System.Net.Sockets": "(,4.3.32767]", + "System.Net.WebHeaderCollection": "(,4.3.32767]", + "System.Net.WebSockets": "(,4.3.32767]", + "System.Net.WebSockets.Client": "(,4.3.32767]", + "System.Numerics.Vectors": "(,5.0.32767]", + "System.ObjectModel": "(,4.3.32767]", + "System.Private.DataContractSerialization": "(,4.3.32767]", + "System.Private.Uri": "(,4.3.32767]", + "System.Reflection": "(,4.3.32767]", + "System.Reflection.DispatchProxy": "(,6.0.32767]", + "System.Reflection.Emit": "(,4.7.32767]", + "System.Reflection.Emit.ILGeneration": "(,4.7.32767]", + "System.Reflection.Emit.Lightweight": "(,4.7.32767]", + "System.Reflection.Extensions": "(,4.3.32767]", + "System.Reflection.Metadata": "(,10.0.32767]", + "System.Reflection.Primitives": "(,4.3.32767]", + "System.Reflection.TypeExtensions": "(,4.3.32767]", + "System.Resources.Reader": "(,4.3.32767]", + "System.Resources.ResourceManager": "(,4.3.32767]", + "System.Resources.Writer": "(,4.3.32767]", + "System.Runtime": "(,4.3.32767]", + "System.Runtime.CompilerServices.Unsafe": "(,7.0.32767]", + "System.Runtime.CompilerServices.VisualC": "(,4.3.32767]", + "System.Runtime.Extensions": "(,4.3.32767]", + "System.Runtime.Handles": "(,4.3.32767]", + "System.Runtime.InteropServices": "(,4.3.32767]", + "System.Runtime.InteropServices.RuntimeInformation": "(,4.3.32767]", + "System.Runtime.Loader": "(,4.3.32767]", + "System.Runtime.Numerics": "(,4.3.32767]", + "System.Runtime.Serialization.Formatters": "(,4.3.32767]", + "System.Runtime.Serialization.Json": "(,4.3.32767]", + "System.Runtime.Serialization.Primitives": "(,4.3.32767]", + "System.Runtime.Serialization.Xml": "(,4.3.32767]", + "System.Security.AccessControl": "(,6.0.32767]", + "System.Security.Claims": "(,4.3.32767]", + "System.Security.Cryptography.Algorithms": "(,4.3.32767]", + "System.Security.Cryptography.Cng": "(,5.0.32767]", + "System.Security.Cryptography.Csp": "(,4.3.32767]", + "System.Security.Cryptography.Encoding": "(,4.3.32767]", + "System.Security.Cryptography.OpenSsl": "(,5.0.32767]", + "System.Security.Cryptography.Primitives": "(,4.3.32767]", + "System.Security.Cryptography.X509Certificates": "(,4.3.32767]", + "System.Security.Cryptography.Xml": "(,10.0.32767]", + "System.Security.Principal": "(,4.3.32767]", + "System.Security.Principal.Windows": "(,5.0.32767]", + "System.Security.SecureString": "(,4.3.32767]", + "System.Text.Encoding": "(,4.3.32767]", + "System.Text.Encoding.CodePages": "(,10.0.32767]", + "System.Text.Encoding.Extensions": "(,4.3.32767]", + "System.Text.Encodings.Web": "(,10.0.32767]", + "System.Text.Json": "(,10.0.32767]", + "System.Text.RegularExpressions": "(,4.3.32767]", + "System.Threading": "(,4.3.32767]", + "System.Threading.AccessControl": "(,10.0.32767]", + "System.Threading.Channels": "(,10.0.32767]", + "System.Threading.Overlapped": "(,4.3.32767]", + "System.Threading.RateLimiting": "(,10.0.32767]", + "System.Threading.Tasks": "(,4.3.32767]", + "System.Threading.Tasks.Dataflow": "(,10.0.32767]", + "System.Threading.Tasks.Extensions": "(,5.0.32767]", + "System.Threading.Tasks.Parallel": "(,4.3.32767]", + "System.Threading.Thread": "(,4.3.32767]", + "System.Threading.ThreadPool": "(,4.3.32767]", + "System.Threading.Timer": "(,4.3.32767]", + "System.ValueTuple": "(,4.5.32767]", + "System.Xml.ReaderWriter": "(,4.3.32767]", + "System.Xml.XDocument": "(,4.3.32767]", + "System.Xml.XmlDocument": "(,4.3.32767]", + "System.Xml.XmlSerializer": "(,4.3.32767]", + "System.Xml.XPath": "(,4.3.32767]", + "System.Xml.XPath.XDocument": "(,5.0.32767]" + } + } + } + } +} \ No newline at end of file diff --git a/src/dotnet/QuantEngine.Web/obj/project.nuget.cache b/src/dotnet/QuantEngine.Web/obj/project.nuget.cache new file mode 100644 index 0000000..c4a82b1 --- /dev/null +++ b/src/dotnet/QuantEngine.Web/obj/project.nuget.cache @@ -0,0 +1,12 @@ +{ + "version": 2, + "dgSpecHash": "+FGEmyd+6Ek=", + "success": true, + "projectFilePath": "C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\QuantEngine.Web.csproj", + "expectedPackageFiles": [ + "C:\\Users\\kjh20\\.nuget\\packages\\dapper\\2.1.79\\dapper.2.1.79.nupkg.sha512", + "C:\\Users\\kjh20\\.nuget\\packages\\microsoft.aspnetcore.app.internal.assets\\10.0.0\\microsoft.aspnetcore.app.internal.assets.10.0.0.nupkg.sha512", + "C:\\Users\\kjh20\\.nuget\\packages\\npgsql\\10.0.3\\npgsql.10.0.3.nupkg.sha512" + ], + "logs": [] +} \ No newline at end of file diff --git a/src/dotnet/QuantEngine.Web/wwwroot/app.css b/src/dotnet/QuantEngine.Web/wwwroot/app.css new file mode 100644 index 0000000..07c88b2 --- /dev/null +++ b/src/dotnet/QuantEngine.Web/wwwroot/app.css @@ -0,0 +1,333 @@ +/* Quant Engine Premium Custom Theme & Aesthetics */ +@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;800&family=JetBrains+Mono:wght@400;700&display=swap'); + +:root { + --bg-dark: #090b11; + --card-bg: rgba(22, 28, 45, 0.7); + --border-color: rgba(255, 255, 255, 0.08); + --text-primary: #f3f4f6; + --text-secondary: #9ca3af; + --accent-blue: #3b82f6; + --accent-green: #10b981; + --accent-red: #ef4444; + --accent-yellow: #f59e0b; + --font-sans: 'Outfit', sans-serif; + --font-mono: 'JetBrains Mono', monospace; +} + +body { + background-color: var(--bg-dark); + color: var(--text-primary); + font-family: var(--font-sans); + margin: 0; + padding: 0; + min-height: 100vh; + background-image: radial-gradient(circle at 10% 20%, rgba(59, 130, 246, 0.05) 0%, transparent 40%), + radial-gradient(circle at 90% 80%, rgba(16, 185, 129, 0.05) 0%, transparent 40%); +} + +.dashboard-container { + padding: 2rem; + max-width: 1600px; + margin: 0 auto; +} + +/* Header */ +.db-header { + display: flex; + justify-content: space-between; + align-items: center; + padding-bottom: 1.5rem; + border-bottom: 1px solid var(--border-color); + margin-bottom: 2rem; +} + +.logo-area { + display: flex; + align-items: center; + gap: 0.75rem; +} + +.logo-area h1 { + font-size: 1.75rem; + font-weight: 800; + margin: 0; + background: linear-gradient(135deg, #60a5fa, #34d399); + -webkit-background-clip: text; + -webkit-text-fill-color: transparent; +} + +.logo-area .badge { + background: rgba(59, 130, 246, 0.15); + color: var(--accent-blue); + padding: 0.25rem 0.6rem; + border-radius: 9999px; + font-size: 0.75rem; + font-weight: 600; + border: 1px solid rgba(59, 130, 246, 0.3); +} + +.system-status { + display: flex; + align-items: center; + gap: 0.5rem; + font-size: 0.875rem; + color: var(--text-secondary); +} + +.status-dot { + width: 8px; + height: 8px; + border-radius: 50%; + display: inline-block; +} + +.status-dot.green { + background-color: var(--accent-green); + box-shadow: 0 0 10px var(--accent-green); +} + +/* Layout Grid */ +.db-grid { + display: grid; + grid-template-columns: 350px 1fr; + gap: 2rem; +} + +/* Cards */ +.card { + background: var(--card-bg); + border: 1px solid var(--border-color); + border-radius: 16px; + padding: 1.5rem; + backdrop-filter: blur(12px); + box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2); +} + +.status-card { + margin-bottom: 1.5rem; +} + +.status-card h3 { + font-size: 1.1rem; + margin-top: 0; + margin-bottom: 1rem; + border-bottom: 1px solid var(--border-color); + padding-bottom: 0.5rem; + color: var(--text-secondary); +} + +.status-list { + list-style: none; + padding: 0; + margin: 0; +} + +.status-list li { + padding: 0.75rem 0; + border-bottom: 1px solid rgba(255, 255, 255, 0.04); +} + +.status-list li:last-child { + border-bottom: none; +} + +.status-list strong { + color: var(--accent-blue); +} + +.status-list span.meta { + display: block; + font-size: 0.75rem; + color: var(--text-secondary); + margin-top: 0.25rem; +} + +.badge.success, .badge.approved { background: rgba(16, 185, 129, 0.15); color: var(--accent-green); } +.badge.pending { background: rgba(245, 158, 11, 0.15); color: var(--accent-yellow); } + +/* Table Section */ +.table-card { + overflow: hidden; +} + +.table-header { + display: flex; + justify-content: space-between; + align-items: center; + margin-bottom: 1.5rem; +} + +.table-header h2 { + font-size: 1.4rem; + margin: 0; +} + +.table-container { + overflow-x: auto; +} + +table { + width: 100%; + border-collapse: collapse; + text-align: left; +} + +th, td { + padding: 1rem; + border-bottom: 1px solid var(--border-color); +} + +th { + font-weight: 600; + color: var(--text-secondary); + font-size: 0.85rem; + text-transform: uppercase; + letter-spacing: 0.05em; +} + +td { + font-size: 0.9rem; +} + +tr:hover { + background: rgba(255, 255, 255, 0.02); +} + +.font-mono { + font-family: var(--font-mono); + font-size: 0.85rem; +} + +.value-cell { + max-width: 300px; + overflow: hidden; + text-overflow: ellipsis; + white-space: nowrap; +} + +/* Buttons */ +.btn { + font-family: var(--font-sans); + font-weight: 600; + border: none; + border-radius: 8px; + padding: 0.5rem 1rem; + cursor: pointer; + transition: all 0.2s ease; +} + +.btn-primary { + background: linear-gradient(135deg, var(--accent-blue), #2563eb); + color: white; +} + +.btn-primary:hover { + transform: translateY(-1px); + box-shadow: 0 4px 15px rgba(59, 130, 246, 0.4); +} + +.btn-sm { + padding: 0.25rem 0.5rem; + font-size: 0.75rem; +} + +.btn-secondary { + background: rgba(255, 255, 255, 0.08); + color: var(--text-primary); +} + +.btn-secondary:hover { + background: rgba(255, 255, 255, 0.15); +} + +.btn-danger { + background: rgba(239, 68, 68, 0.15); + color: var(--accent-red); + border: 1px solid rgba(239, 68, 68, 0.3); +} + +.btn-danger:hover { + background: var(--accent-red); + color: white; +} + +/* Modals */ +.modal-backdrop { + position: fixed; + top: 0; + left: 0; + width: 100vw; + height: 100vh; + background: rgba(0, 0, 0, 0.6); + backdrop-filter: blur(8px); + display: flex; + justify-content: center; + align-items: center; + z-index: 1000; +} + +.modal-content { + background: #111827; + border: 1px solid var(--border-color); + border-radius: 16px; + width: 500px; + padding: 1.5rem; + box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5); +} + +.modal-header { + display: flex; + justify-content: space-between; + align-items: center; + border-bottom: 1px solid var(--border-color); + padding-bottom: 0.75rem; + margin-bottom: 1.25rem; +} + +.modal-header h3 { + margin: 0; +} + +.close-btn { + background: none; + border: none; + color: var(--text-secondary); + font-size: 1.5rem; + cursor: pointer; +} + +.form-group { + margin-bottom: 1.25rem; +} + +.form-group label { + display: block; + margin-bottom: 0.5rem; + font-size: 0.85rem; + color: var(--text-secondary); +} + +.form-control { + width: 100%; + background: rgba(0, 0, 0, 0.3); + border: 1px solid var(--border-color); + border-radius: 8px; + padding: 0.6rem; + color: var(--text-primary); + box-sizing: border-box; +} + +.form-control:focus { + border-color: var(--accent-blue); + outline: none; +} + +.modal-footer { + display: flex; + justify-content: flex-end; + gap: 0.75rem; + border-top: 1px solid var(--border-color); + padding-top: 1rem; + margin-top: 1.5rem; +} \ No newline at end of file diff --git a/src/dotnet/QuantEngine.Web/wwwroot/favicon.png b/src/dotnet/QuantEngine.Web/wwwroot/favicon.png new file mode 100644 index 0000000..8422b59 Binary files /dev/null and b/src/dotnet/QuantEngine.Web/wwwroot/favicon.png differ diff --git a/src/dotnet/QuantEngine.sln b/src/dotnet/QuantEngine.sln new file mode 100644 index 0000000..b7a031f --- /dev/null +++ b/src/dotnet/QuantEngine.sln @@ -0,0 +1,76 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio Version 17 +VisualStudioVersion = 17.0.31903.59 +MinimumVisualStudioVersion = 10.0.40219.1 +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "QuantEngine.Core", "QuantEngine.Core\QuantEngine.Core.csproj", "{F95F4420-A82D-4FC4-881C-BFAB04A5280D}" +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "QuantEngine.Application", "QuantEngine.Application\QuantEngine.Application.csproj", "{81CE989D-52D2-4375-930F-485CE6BA5006}" +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "QuantEngine.Infrastructure", "QuantEngine.Infrastructure\QuantEngine.Infrastructure.csproj", "{123C963B-C447-4253-9A4B-6A8F9048F5E0}" +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "QuantEngine.Web", "QuantEngine.Web\QuantEngine.Web.csproj", "{15F27C9D-077F-4788-9F6A-88092BEA1814}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Debug|x64 = Debug|x64 + Debug|x86 = Debug|x86 + Release|Any CPU = Release|Any CPU + Release|x64 = Release|x64 + Release|x86 = Release|x86 + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {F95F4420-A82D-4FC4-881C-BFAB04A5280D}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {F95F4420-A82D-4FC4-881C-BFAB04A5280D}.Debug|Any CPU.Build.0 = Debug|Any CPU + {F95F4420-A82D-4FC4-881C-BFAB04A5280D}.Debug|x64.ActiveCfg = Debug|Any CPU + {F95F4420-A82D-4FC4-881C-BFAB04A5280D}.Debug|x64.Build.0 = Debug|Any CPU + {F95F4420-A82D-4FC4-881C-BFAB04A5280D}.Debug|x86.ActiveCfg = Debug|Any CPU + {F95F4420-A82D-4FC4-881C-BFAB04A5280D}.Debug|x86.Build.0 = Debug|Any CPU + {F95F4420-A82D-4FC4-881C-BFAB04A5280D}.Release|Any CPU.ActiveCfg = Release|Any CPU + {F95F4420-A82D-4FC4-881C-BFAB04A5280D}.Release|Any CPU.Build.0 = Release|Any CPU + {F95F4420-A82D-4FC4-881C-BFAB04A5280D}.Release|x64.ActiveCfg = Release|Any CPU + {F95F4420-A82D-4FC4-881C-BFAB04A5280D}.Release|x64.Build.0 = Release|Any CPU + {F95F4420-A82D-4FC4-881C-BFAB04A5280D}.Release|x86.ActiveCfg = Release|Any CPU + {F95F4420-A82D-4FC4-881C-BFAB04A5280D}.Release|x86.Build.0 = Release|Any CPU + {81CE989D-52D2-4375-930F-485CE6BA5006}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {81CE989D-52D2-4375-930F-485CE6BA5006}.Debug|Any CPU.Build.0 = Debug|Any CPU + {81CE989D-52D2-4375-930F-485CE6BA5006}.Debug|x64.ActiveCfg = Debug|Any CPU + {81CE989D-52D2-4375-930F-485CE6BA5006}.Debug|x64.Build.0 = Debug|Any CPU + {81CE989D-52D2-4375-930F-485CE6BA5006}.Debug|x86.ActiveCfg = Debug|Any CPU + {81CE989D-52D2-4375-930F-485CE6BA5006}.Debug|x86.Build.0 = Debug|Any CPU + {81CE989D-52D2-4375-930F-485CE6BA5006}.Release|Any CPU.ActiveCfg = Release|Any CPU + {81CE989D-52D2-4375-930F-485CE6BA5006}.Release|Any CPU.Build.0 = Release|Any CPU + {81CE989D-52D2-4375-930F-485CE6BA5006}.Release|x64.ActiveCfg = Release|Any CPU + {81CE989D-52D2-4375-930F-485CE6BA5006}.Release|x64.Build.0 = Release|Any CPU + {81CE989D-52D2-4375-930F-485CE6BA5006}.Release|x86.ActiveCfg = Release|Any CPU + {81CE989D-52D2-4375-930F-485CE6BA5006}.Release|x86.Build.0 = Release|Any CPU + {123C963B-C447-4253-9A4B-6A8F9048F5E0}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {123C963B-C447-4253-9A4B-6A8F9048F5E0}.Debug|Any CPU.Build.0 = Debug|Any CPU + {123C963B-C447-4253-9A4B-6A8F9048F5E0}.Debug|x64.ActiveCfg = Debug|Any CPU + {123C963B-C447-4253-9A4B-6A8F9048F5E0}.Debug|x64.Build.0 = Debug|Any CPU + {123C963B-C447-4253-9A4B-6A8F9048F5E0}.Debug|x86.ActiveCfg = Debug|Any CPU + {123C963B-C447-4253-9A4B-6A8F9048F5E0}.Debug|x86.Build.0 = Debug|Any CPU + {123C963B-C447-4253-9A4B-6A8F9048F5E0}.Release|Any CPU.ActiveCfg = Release|Any CPU + {123C963B-C447-4253-9A4B-6A8F9048F5E0}.Release|Any CPU.Build.0 = Release|Any CPU + {123C963B-C447-4253-9A4B-6A8F9048F5E0}.Release|x64.ActiveCfg = Release|Any CPU + {123C963B-C447-4253-9A4B-6A8F9048F5E0}.Release|x64.Build.0 = Release|Any CPU + {123C963B-C447-4253-9A4B-6A8F9048F5E0}.Release|x86.ActiveCfg = Release|Any CPU + {123C963B-C447-4253-9A4B-6A8F9048F5E0}.Release|x86.Build.0 = Release|Any CPU + {15F27C9D-077F-4788-9F6A-88092BEA1814}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {15F27C9D-077F-4788-9F6A-88092BEA1814}.Debug|Any CPU.Build.0 = Debug|Any CPU + {15F27C9D-077F-4788-9F6A-88092BEA1814}.Debug|x64.ActiveCfg = Debug|Any CPU + {15F27C9D-077F-4788-9F6A-88092BEA1814}.Debug|x64.Build.0 = Debug|Any CPU + {15F27C9D-077F-4788-9F6A-88092BEA1814}.Debug|x86.ActiveCfg = Debug|Any CPU + {15F27C9D-077F-4788-9F6A-88092BEA1814}.Debug|x86.Build.0 = Debug|Any CPU + {15F27C9D-077F-4788-9F6A-88092BEA1814}.Release|Any CPU.ActiveCfg = Release|Any CPU + {15F27C9D-077F-4788-9F6A-88092BEA1814}.Release|Any CPU.Build.0 = Release|Any CPU + {15F27C9D-077F-4788-9F6A-88092BEA1814}.Release|x64.ActiveCfg = Release|Any CPU + {15F27C9D-077F-4788-9F6A-88092BEA1814}.Release|x64.Build.0 = Release|Any CPU + {15F27C9D-077F-4788-9F6A-88092BEA1814}.Release|x86.ActiveCfg = Release|Any CPU + {15F27C9D-077F-4788-9F6A-88092BEA1814}.Release|x86.Build.0 = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection +EndGlobal diff --git a/tools/deploy_quantengine.sh b/tools/deploy_quantengine.sh new file mode 100644 index 0000000..1ac80b9 --- /dev/null +++ b/tools/deploy_quantengine.sh @@ -0,0 +1,51 @@ +#!/bin/bash +# Quant Engine Shadow Copy Hot Deploy Script +# To be executed on Hz-Prod-01 Remote Server + +set -e + +DEPLOY_BASE="/home/kjh2064/deployments" +ACTIVE_LINK="/home/kjh2064/quantengine_active" +TMP_ARCHIVE="/home/kjh2064/tmp/quantengine.tar.gz" + +TIMESTAMP=$(date +%Y%m%d_%H%M%S) +TARGET_DIR="${DEPLOY_BASE}/quantengine_${TIMESTAMP}" + +echo "=========================================" +echo "Starting Shadow Copy Hot Deploy [${TIMESTAMP}]" +echo "=========================================" + +# 1. Ensure directories exist +mkdir -p "${DEPLOY_BASE}" +mkdir -p "${TARGET_DIR}" + +# 2. Extract build artifact to unique shadow directory +if [ -f "${TMP_ARCHIVE}" ]; then + echo "Extracting build artifact to ${TARGET_DIR}..." + tar -xzf "${TMP_ARCHIVE}" -C "${TARGET_DIR}" + rm -f "${TMP_ARCHIVE}" +else + echo "ERROR: Deployment archive not found at ${TMP_ARCHIVE}" + exit 1 +fi + +# 3. Swap symbolic link atomically +echo "Swapping symbolic link dynamically..." +ln -sfn "${TARGET_DIR}" "${ACTIVE_LINK}" + +# 4. Restart Systemd service (requires passwordless sudo reload or specific policy) +echo "Restarting Systemd service..." +sudo systemctl restart quantengine + +# 5. Clean up old deployments (keep last 5) +echo "Cleaning up obsolete deployments..." +cd "${DEPLOY_BASE}" +ls -dt quantengine_* | tail -n +6 | while read -r old_dir; do + echo "Removing old release: ${old_dir}" + rm -rf "${old_dir}" +done + +echo "=========================================" +echo "Deployment successfully completed!" +echo "Active Version: $(readlink -f ${ACTIVE_LINK})" +echo "========================================="