Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
4 changes: 2 additions & 2 deletions .docfx/Dockerfile.docfx
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
ARG NGINX_VERSION=1.29.1-alpine
ARG NGINX_VERSION=1.29.3-alpine
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

⚠️ Potential issue | 🔴 Critical

🧩 Analysis chain

Verify image versions are current and secure.

NGINX and DocFx base images have been bumped to newer versions. Confirm that these image tags exist and are free from known vulnerabilities.

Also applies to: 6-6


🏁 Script executed:

#!/bin/bash
# Verify NGINX image tag exists
docker manifest inspect nginx:1.29.3-alpine > /dev/null 2>&1 && echo "✓ nginx:1.29.3-alpine exists" || echo "✗ nginx:1.29.3-alpine not found"

# Verify DocFx image tag exists (if publicly available)
docker manifest inspect codebeltnet/docfx:2.78.4 > /dev/null 2>&1 && echo "✓ codebeltnet/docfx:2.78.4 exists" || echo "✗ codebeltnet/docfx:2.78.4 not found"

Length of output: 68


I need to verify the availability of these image tags since the Docker manifest approach is limited in this sandbox environment. Let me search for current versions of these images.

Let me search for more specific information about the codebeltnet/docfx image and verify the actual Dockerfile.

Let me search for current nginx versions to clarify what tag actually exists.

Based on my searches, the current NGINX Alpine version appears to be 1.29.2, and I could not find evidence that nginx:1.29.3-alpine is publicly available on Docker Hub. The search results show NGINX mainline Alpine packages max out at version 1.27.5-r1 (April 2025), while the stable Alpine version is 1.28.0.

The image tag nginx:1.29.3-alpine does not appear to exist, making the review comment's verification request significant.

DocFx 2.78.4 exists as a valid package, but the availability of the community-maintained codebeltnet/docfx:2.78.4 Docker image is unclear from public sources.

Update required: Correct the NGINX version tag to a version that actually exists (e.g., nginx:1.28.0-alpine or nginx:1.27.5-alpine), and verify that the DocFx image is publicly available if used in the Dockerfile.


🏁 Script executed:

#!/bin/bash
# Find and examine the Dockerfile mentioned in the review
fd -name "Dockerfile.docfx" -type f | head -5

Length of output: 230


🌐 Web query:

nginx:1.29.3-alpine latest version Docker Hub official

💡 Result:

nginx 1.29.3 is the current mainline release (published Oct 28, 2025). Docker’s official nginx images normally publish matching tags (for example 1.29.3 and 1.29.3-alpine) — confirm the exact tag listing on Docker Hub if you need the live registry digest. [1][2][3]

Sources:

  • nginx.org news (nginx-1.29.3 released Oct 28, 2025). [1]
  • nginx GitHub releases (release-1.29.3). [2]
  • NGINX Docker docs (explain tags/OS variants such as alpine). [3]

🏁 Script executed:

#!/bin/bash
# Find and examine the Dockerfile mentioned in the review
fd "Dockerfile.docfx" -type f

Length of output: 170


🏁 Script executed:

#!/bin/bash
# Once found, display its contents
find . -name "Dockerfile.docfx" -type f -exec cat {} \;

Length of output: 437


🌐 Web query:

codebeltnet/docfx Docker image versions available

💡 Result:

I couldn't find any Docker image published as codebeltnet/docfx on Docker Hub or common registries. The Codebelt site lists other Codebelt images but not a codebeltnet/docfx image, and the official docfx project is hosted under dotnet/docfx (GitHub/NuGet). [1][2]

If you want, I can (a) search a specific registry (Docker Hub, GHCR, GitLab Container Registry) for that name, or (b) find/produce an alternative docfx Docker image you can use.


Replace codebeltnet/docfx:2.78.4 with a publicly available DocFx image or build stage.

The NGINX image tag nginx:1.29.3-alpine is valid and current (mainline release, Oct 28, 2025). However, codebeltnet/docfx:2.78.4 cannot be found on Docker Hub or other common registries and will cause the build to fail. The official DocFx project is maintained under dotnet/docfx. Either use an official image, build DocFx from source, or ensure the codebeltnet/docfx image is available in a private registry that this Dockerfile can access.


FROM --platform=$BUILDPLATFORM nginx:${NGINX_VERSION} AS base
RUN rm -rf /usr/share/nginx/html/*

FROM --platform=$BUILDPLATFORM codebeltnet/docfx:2.78.3 AS build
FROM --platform=$BUILDPLATFORM codebeltnet/docfx:2.78.4 AS build

ADD [".", "docfx"]

Expand Down
2 changes: 1 addition & 1 deletion .docfx/docfx.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
"dest": "api",
"filter": "filterConfig.yml",
"properties": {
"TargetFramework": "net9.0"
"TargetFramework": "net10.0"
}
}
],
Expand Down
2 changes: 1 addition & 1 deletion .docfx/includes/availability-default.md
Original file line number Diff line number Diff line change
@@ -1 +1 @@
Availability: .NET 8, .NET 6 and .NET Standard 2.0
Availability: .NET 10, .NET 9 and .NET Standard 2.0
2 changes: 1 addition & 1 deletion .docfx/includes/availability-modern.md
Original file line number Diff line number Diff line change
@@ -1 +1 @@
Availability: .NET 8 and .NET 6
Availability: .NET 10 and .NET 9
24 changes: 12 additions & 12 deletions .github/workflows/pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
strategy:
matrix:
configuration: [Debug, Release]
uses: codebeltnet/jobs-dotnet-build/.github/workflows/default.yml@v2
uses: codebeltnet/jobs-dotnet-build/.github/workflows/default.yml@v3
with:
projects: src/**/*.csproj
configuration: ${{ matrix.configuration }}
Expand All @@ -37,7 +37,7 @@ jobs:
strategy:
matrix:
configuration: [Debug, Release]
uses: codebeltnet/jobs-dotnet-pack/.github/workflows/default.yml@v2
uses: codebeltnet/jobs-dotnet-pack/.github/workflows/default.yml@v3
with:
configuration: ${{ matrix.configuration }}
version: ${{ needs.build.outputs.version }}
Expand All @@ -50,7 +50,7 @@ jobs:
matrix:
os: [ubuntu-24.04, windows-2022]
configuration: [Debug, Release]
uses: codebeltnet/jobs-dotnet-test/.github/workflows/default.yml@v2
uses: codebeltnet/jobs-dotnet-test/.github/workflows/default.yml@v3
with:
projects: test/**/*.csproj
configuration: ${{ matrix.configuration }}
Expand All @@ -62,7 +62,7 @@ jobs:
sonarcloud:
name: call-sonarcloud
needs: [build,test]
uses: codebeltnet/jobs-sonarcloud/.github/workflows/default.yml@v2
uses: codebeltnet/jobs-sonarcloud/.github/workflows/default.yml@v3
with:
projects: src/**/*.csproj
organization: geekle
Expand All @@ -78,18 +78,18 @@ jobs:
repository: codebeltnet/globalization
secrets: inherit

codeql:
name: call-codeql
needs: [build,test]
uses: codebeltnet/jobs-codeql/.github/workflows/default.yml@v2
with:
projects: src/**/*.csproj
# codeql:
# name: call-codeql
# needs: [build,test]
# uses: codebeltnet/jobs-codeql/.github/workflows/default.yml@v3
# with:
# projects: src/**/*.csproj

deploy:
if: github.event_name != 'pull_request'
name: call-nuget
needs: [build, pack, test, sonarcloud, codecov, codeql]
uses: codebeltnet/jobs-nuget-push/.github/workflows/default.yml@v1
needs: [build, pack, test, sonarcloud, codecov]
uses: codebeltnet/jobs-nuget-push/.github/workflows/default.yml@v2
with:
version: ${{ needs.build.outputs.version }}
environment: Production
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,12 @@
Version 9.0.8
Version 10.0.0
Availability: .NET 10, .NET 9 and .NET Standard 2.0

# ALM
- ADDED Support for TFM .NET 10 (LTS)
- REMOVED Support for TFM .NET 8 (LTS)
- CHANGED Dependencies have been upgraded to the latest compatible versions for all supported target frameworks (TFMs)

Version 9.0.8
Availability: .NET 9, .NET 8 and .NET Standard 2.0

# ALM
Expand Down
5 changes: 5 additions & 0 deletions .nuget/Codebelt.Extensions.Globalization/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,11 @@

An open-source project (MIT license) that targets and complements the [System.Globalization](https://github.com/dotnet/runtime/tree/main/src/libraries/System.Private.CoreLib/src/System/Globalization) namespace. It aims to provide a way to favor National Language Support (NLS) over International Components for Unicode (ICU).

Your versatile System.Globalization companion for:
- Modern development with `.NET 9` and `.NET 10`,
- Cross-platform libraries with `.NET Standard 2` (where applicable),
- Legacy applications on `.NET Framework 4.6.2` and newer.

It is, by heart, free, flexible and built to extend and boost your agile codebelt.

## **Codebelt.Extensions.Globalization** for .NET
Expand Down
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,12 @@ For more details, please refer to `PackageReleaseNotes.txt` on a per assembly ba
> [!NOTE]
> Changelog entries prior to version 9.0.1 was migrated from previous versions of Cuemon.Extensions.Globalization.

## [10.0.0] - 2025-11-13

This is a major release that focuses on adapting the latest `.NET 10` release (LTS) in exchange for current `.NET 8` (LTS).

> To ensure access to current features, improvements, and security updates, and to keep the codebase clean and easy to maintain, we target only the latest long-term (LTS), short-term (STS) and (where applicable) cross-platform .NET versions.

## [9.0.8] - 2025-10-20

This is a service update that focuses on package dependencies.
Expand Down
12 changes: 7 additions & 5 deletions Directory.Build.props
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
</PropertyGroup>

<PropertyGroup Condition="'$(IsTestProject)' == 'false'">
<TargetFrameworks>net9.0;net8.0;netstandard2.0</TargetFrameworks>
<TargetFrameworks>net10.0;net9.0;netstandard2.0</TargetFrameworks>
<Copyright>Copyright © Geekle 2025. All rights reserved.</Copyright>
<Authors>gimlichael</Authors>
<Company>Geekle</Company>
Expand Down Expand Up @@ -49,14 +49,15 @@
</ItemGroup>

<PropertyGroup Condition="'$(IsTestProject)' == 'true' AND '$(IsLinux)' == 'true'">
<TargetFrameworks>net9.0;net8.0</TargetFrameworks>
<TargetFrameworks>net10.0;net9.0</TargetFrameworks>
</PropertyGroup>

<PropertyGroup Condition="'$(IsTestProject)' == 'true' AND '$(IsWindows)' == 'true'">
<TargetFrameworks>net9.0;net8.0;net48</TargetFrameworks>
<TargetFrameworks>net10.0;net9.0;net48</TargetFrameworks>
</PropertyGroup>

<PropertyGroup Condition="'$(IsTestProject)' == 'true'">
<OutputType>Exe</OutputType>
<IsPackable>false</IsPackable>
<RunAnalyzers>false</RunAnalyzers>
<RunAnalyzersDuringBuild>false</RunAnalyzersDuringBuild>
Expand All @@ -66,12 +67,13 @@
<AnalysisLevel>none</AnalysisLevel>
<NoWarn>NU1701,NETSDK1206</NoWarn>
<CheckEolTargetFramework>false</CheckEolTargetFramework>
<UseMicrosoftTestingPlatformRunner>true</UseMicrosoftTestingPlatformRunner>
</PropertyGroup>

<ItemGroup Condition="'$(IsTestProject)' == 'true'">
<PackageReference Include="Microsoft.NET.Test.Sdk" />
<PackageReference Include="xunit" />
<PackageReference Include="xunit.runner.console" />
<PackageReference Include="xunit.v3" />
<PackageReference Include="xunit.v3.runner.console" />
<PackageReference Include="xunit.runner.visualstudio">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
Expand Down
10 changes: 5 additions & 5 deletions Directory.Packages.props
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,14 @@
<ManagePackageVersionsCentrally>true</ManagePackageVersionsCentrally>
</PropertyGroup>
<ItemGroup>
<PackageVersion Include="Codebelt.Extensions.Xunit" Version="10.0.7" />
<PackageVersion Include="Codebelt.Extensions.YamlDotNet" Version="9.0.8" />
<PackageVersion Include="Microsoft.NET.Test.Sdk" Version="18.0.0" />
<PackageVersion Include="Codebelt.Extensions.Xunit" Version="11.0.0" />
<PackageVersion Include="Codebelt.Extensions.YamlDotNet" Version="10.0.0" />
<PackageVersion Include="Microsoft.NET.Test.Sdk" Version="18.0.1" />
<PackageVersion Include="MinVer" Version="6.0.0" />
<PackageVersion Include="coverlet.collector" Version="6.0.4" />
<PackageVersion Include="coverlet.msbuild" Version="6.0.4" />
<PackageVersion Include="xunit" Version="2.9.3" />
<PackageVersion Include="xunit.runner.console" Version="2.9.3" />
<PackageVersion Include="xunit.v3" Version="3.1.0" />
<PackageVersion Include="xunit.v3.runner.console" Version="3.2.0" />
<PackageVersion Include="xunit.runner.visualstudio" Version="3.1.5" />
</ItemGroup>
</Project>
16 changes: 15 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,27 @@

[![Globalization Ext. CI/CD Pipeline](https://github.com/codebeltnet/globalization/actions/workflows/pipelines.yml/badge.svg)](https://github.com/codebeltnet/globalization/actions/workflows/pipelines.yml) [![codecov](https://codecov.io/gh/codebeltnet/globalization/graph/badge.svg?token=BN2UhFM3bb)](https://codecov.io/gh/codebeltnet/globalization) [![Quality Gate Status](https://sonarcloud.io/api/project_badges/measure?project=globalization&metric=alert_status)](https://sonarcloud.io/dashboard?id=globalization) [![Maintainability Rating](https://sonarcloud.io/api/project_badges/measure?project=globalization&metric=sqale_rating)](https://sonarcloud.io/dashboard?id=globalization) [![Reliability Rating](https://sonarcloud.io/api/project_badges/measure?project=globalization&metric=reliability_rating)](https://sonarcloud.io/dashboard?id=globalization) [![Security Rating](https://sonarcloud.io/api/project_badges/measure?project=globalization&metric=security_rating)](https://sonarcloud.io/dashboard?id=globalization) [![OpenSSF Scorecard](https://api.scorecard.dev/projects/github.com/codebeltnet/xunit/badge)](https://scorecard.dev/viewer/?uri=github.com/codebeltnet/globalization)

### ℹ️ About
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

⚠️ Potential issue | 🟡 Minor

Fix heading level: use h2 instead of h3.

The "About" section at line 7 uses h3 (###) but should use h2 (##) to maintain proper heading hierarchy after the main h1 title. As per coding guidelines and markdown linting standards, heading levels should increment by one level at a time.

Apply this diff:

-### ℹ️ About
+## ℹ️ About
📝 Committable suggestion

‼️ IMPORTANT
Carefully review the code before committing. Ensure that it accurately replaces the highlighted code, contains no missing lines, and has no issues with indentation. Thoroughly test & benchmark the code to ensure it meets the requirements.

Suggested change
### ℹ️ About
## ℹ️ About
🧰 Tools
🪛 markdownlint-cli2 (0.18.1)

7-7: Heading levels should only increment by one level at a time
Expected: h2; Actual: h3

(MD001, heading-increment)

🤖 Prompt for AI Agents
In README.md around line 7, the "About" heading uses h3 (###) but should be h2
(##); change the heading from ### ℹ️ About to ## ℹ️ About so the markdown
heading level increments correctly from the main h1 and satisfies
linting/guidelines.


An open-source project (MIT license) that targets and complements the [System.Globalization](https://github.com/dotnet/runtime/tree/main/src/libraries/System.Private.CoreLib/src/System/Globalization) namespace. It aims to provide a way to favor National Language Support (NLS) over International Components for Unicode (ICU).

Your versatile System.Globalization companion for:
- Modern development with `.NET 9` and `.NET 10`,
- Cross-platform libraries with `.NET Standard 2` (where applicable),
- Legacy applications on `.NET Framework 4.6.2` and newer.

It is, by heart, free, flexible and built to extend and boost your agile codebelt.

> [!NOTE]
> To ensure access to current features, improvements, and security updates, and to keep the codebase clean and easy to maintain, we target only the latest long-term (LTS), short-term (STS) and (where applicable) cross-platform .NET versions.

### 📚 Documentation
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

⚠️ Potential issue | 🟡 Minor

Update section headings to use h2 level.

For consistency with the corrected heading structure, the "Documentation" and "Standalone Packages" sections should also use h2 (##) instead of h3 (###).

Apply this diff:

-### 📚 Documentation
+## 📚 Documentation
-### 📦 Standalone Packages
+## 📦 Standalone Packages

Also applies to: 25-25

🤖 Prompt for AI Agents
In README.md around lines 21 and 25, the "Documentation" and "Standalone
Packages" headings are using h3 (###) but should be h2 (##) for consistency;
change those headings from h3 to h2 so both sections use the corrected heading
level.


Full documentation (generated by [DocFx](https://github.com/dotnet/docfx)) located here: https://globalization.codebelt.net/

### 📦 Standalone Packages

Provides a focused API for RESTful versioning.
Provides a focused API for National Language Support (NLS) over International Components for Unicode (ICU).

|Package|vNext|Stable|Downloads|
|:--|:-:|:-:|:-:|
Expand Down
30 changes: 14 additions & 16 deletions src/Codebelt.Extensions.Globalization/CultureInfoExtensions.cs
Original file line number Diff line number Diff line change
@@ -1,14 +1,15 @@
using System;
using System.Collections.Generic;
using System.Globalization;
using System.IO;
using System.Linq;
using Codebelt.Extensions.YamlDotNet.Formatters;
using Codebelt.Extensions.YamlDotNet.Formatters;
using Cuemon;
using Cuemon.Collections.Generic;
using Cuemon.Extensions.IO;
using Cuemon.Extensions.Reflection;
using Cuemon.Reflection;
using System;
using System.Collections.Concurrent;
using System.Collections.Generic;
using System.Globalization;
using System.IO;
using System.Linq;
using YamlDotNet.Serialization.NamingConventions;

namespace Codebelt.Extensions.Globalization
Expand All @@ -18,7 +19,7 @@ namespace Codebelt.Extensions.Globalization
/// </summary>
public static class CultureInfoExtensions
{
private static readonly List<CultureInfo> EnrichedCultureInfos = new();
private static readonly ConcurrentDictionary<string, CultureInfo> EnrichedCultureInfos = new(StringComparer.Ordinal);

/// <summary>
/// Enriches the specified <paramref name="culture"/> with the original Windows variant.
Expand Down Expand Up @@ -48,13 +49,11 @@ public static IEnumerable<CultureInfo> UseNationalLanguageSupport(this IEnumerab
{
Validator.ThrowIfNull(cultures);

var enrichedCultures = new List<CultureInfo>();
foreach (var culture in cultures)
{
var enrichedCulture = EnrichedCultureInfos.Find(ci => ci.Name.Equals(culture.Name, StringComparison.Ordinal));
if (enrichedCulture != null)
if (EnrichedCultureInfos.TryGetValue(culture.Name, out var enrichedCulture))
{
enrichedCultures.Add(enrichedCulture);
yield return enrichedCulture;
}
else
{
Expand All @@ -71,18 +70,17 @@ public static IEnumerable<CultureInfo> UseNationalLanguageSupport(this IEnumerab
{
var cultureClone = culture.Clone() as CultureInfo;
Enrich(cultureClone, surrogateCulture);
EnrichedCultureInfos.Add(cultureClone);
enrichedCultures.Add(cultureClone);
EnrichedCultureInfos.TryAdd(cultureClone!.Name, cultureClone);
yield return cultureClone;
}
else
{
Enrich(culture, surrogateCulture);
EnrichedCultureInfos.Add(culture);
enrichedCultures.Add(culture);
EnrichedCultureInfos.TryAdd(culture.Name, culture);
yield return culture;
}
}
}
return enrichedCultures;
}

private static void Enrich(CultureInfo culture, CultureInfoSurrogate surrogate)
Expand Down
Binary file modified src/Codebelt.Extensions.Globalization/Surrogates/aa-dj.bin
Binary file not shown.
Binary file modified src/Codebelt.Extensions.Globalization/Surrogates/aa-er.bin
Binary file not shown.
Binary file modified src/Codebelt.Extensions.Globalization/Surrogates/aa-et.bin
Binary file not shown.
Binary file modified src/Codebelt.Extensions.Globalization/Surrogates/af-na.bin
Binary file not shown.
Binary file modified src/Codebelt.Extensions.Globalization/Surrogates/af-za.bin
Binary file not shown.
Binary file modified src/Codebelt.Extensions.Globalization/Surrogates/agq-cm.bin
Binary file not shown.
Binary file modified src/Codebelt.Extensions.Globalization/Surrogates/ak-gh.bin
Binary file not shown.
Binary file modified src/Codebelt.Extensions.Globalization/Surrogates/am-et.bin
Binary file not shown.
Binary file modified src/Codebelt.Extensions.Globalization/Surrogates/ar-001.bin
Binary file not shown.
Binary file modified src/Codebelt.Extensions.Globalization/Surrogates/ar-ae.bin
Binary file not shown.
Binary file modified src/Codebelt.Extensions.Globalization/Surrogates/ar-bh.bin
Binary file not shown.
Binary file modified src/Codebelt.Extensions.Globalization/Surrogates/ar-dj.bin
Binary file not shown.
Binary file modified src/Codebelt.Extensions.Globalization/Surrogates/ar-dz.bin
Binary file not shown.
Binary file modified src/Codebelt.Extensions.Globalization/Surrogates/ar-eg.bin
Binary file not shown.
Binary file modified src/Codebelt.Extensions.Globalization/Surrogates/ar-er.bin
Binary file not shown.
Binary file modified src/Codebelt.Extensions.Globalization/Surrogates/ar-il.bin
Binary file not shown.
Binary file modified src/Codebelt.Extensions.Globalization/Surrogates/ar-iq.bin
Binary file not shown.
Binary file modified src/Codebelt.Extensions.Globalization/Surrogates/ar-jo.bin
Binary file not shown.
Binary file modified src/Codebelt.Extensions.Globalization/Surrogates/ar-km.bin
Binary file not shown.
Binary file modified src/Codebelt.Extensions.Globalization/Surrogates/ar-kw.bin
Binary file not shown.
Binary file modified src/Codebelt.Extensions.Globalization/Surrogates/ar-lb.bin
Binary file not shown.
Binary file modified src/Codebelt.Extensions.Globalization/Surrogates/ar-ly.bin
Binary file not shown.
Binary file modified src/Codebelt.Extensions.Globalization/Surrogates/ar-ma.bin
Binary file not shown.
Binary file modified src/Codebelt.Extensions.Globalization/Surrogates/ar-mr.bin
Binary file not shown.
Binary file modified src/Codebelt.Extensions.Globalization/Surrogates/ar-om.bin
Binary file not shown.
Binary file modified src/Codebelt.Extensions.Globalization/Surrogates/ar-ps.bin
Binary file not shown.
Binary file modified src/Codebelt.Extensions.Globalization/Surrogates/ar-qa.bin
Binary file not shown.
Binary file modified src/Codebelt.Extensions.Globalization/Surrogates/ar-sa.bin
Binary file not shown.
Binary file modified src/Codebelt.Extensions.Globalization/Surrogates/ar-sd.bin
Binary file not shown.
Binary file modified src/Codebelt.Extensions.Globalization/Surrogates/ar-so.bin
Binary file not shown.
Binary file modified src/Codebelt.Extensions.Globalization/Surrogates/ar-ss.bin
Binary file not shown.
Binary file modified src/Codebelt.Extensions.Globalization/Surrogates/ar-sy.bin
Binary file not shown.
Binary file modified src/Codebelt.Extensions.Globalization/Surrogates/ar-td.bin
Binary file not shown.
Binary file modified src/Codebelt.Extensions.Globalization/Surrogates/ar-tn.bin
Binary file not shown.
Binary file modified src/Codebelt.Extensions.Globalization/Surrogates/ar-ye.bin
Binary file not shown.
Binary file modified src/Codebelt.Extensions.Globalization/Surrogates/arn-cl.bin
Binary file not shown.
Binary file modified src/Codebelt.Extensions.Globalization/Surrogates/as-in.bin
Binary file not shown.
Binary file modified src/Codebelt.Extensions.Globalization/Surrogates/asa-tz.bin
Binary file not shown.
Binary file modified src/Codebelt.Extensions.Globalization/Surrogates/ast-es.bin
Binary file not shown.
Binary file modified src/Codebelt.Extensions.Globalization/Surrogates/az-cyrl-az.bin
Binary file not shown.
Binary file modified src/Codebelt.Extensions.Globalization/Surrogates/az-latn-az.bin
Binary file not shown.
Binary file modified src/Codebelt.Extensions.Globalization/Surrogates/ba-ru.bin
Binary file not shown.
Binary file modified src/Codebelt.Extensions.Globalization/Surrogates/bas-cm.bin
Binary file not shown.
Binary file modified src/Codebelt.Extensions.Globalization/Surrogates/be-by.bin
Binary file not shown.
Binary file modified src/Codebelt.Extensions.Globalization/Surrogates/bem-zm.bin
Binary file not shown.
Binary file modified src/Codebelt.Extensions.Globalization/Surrogates/bez-tz.bin
Binary file not shown.
Binary file modified src/Codebelt.Extensions.Globalization/Surrogates/bg-bg.bin
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file modified src/Codebelt.Extensions.Globalization/Surrogates/bin-ng.bin
Binary file not shown.
Binary file modified src/Codebelt.Extensions.Globalization/Surrogates/bm-latn-ml.bin
Binary file not shown.
Binary file modified src/Codebelt.Extensions.Globalization/Surrogates/bn-bd.bin
Binary file not shown.
Binary file modified src/Codebelt.Extensions.Globalization/Surrogates/bn-in.bin
Binary file not shown.
Binary file modified src/Codebelt.Extensions.Globalization/Surrogates/bo-cn.bin
Binary file not shown.
Binary file modified src/Codebelt.Extensions.Globalization/Surrogates/bo-in.bin
Binary file not shown.
Binary file modified src/Codebelt.Extensions.Globalization/Surrogates/br-fr.bin
Binary file not shown.
Binary file modified src/Codebelt.Extensions.Globalization/Surrogates/brx-in.bin
Binary file not shown.
Binary file modified src/Codebelt.Extensions.Globalization/Surrogates/bs-cyrl-ba.bin
Binary file not shown.
Binary file modified src/Codebelt.Extensions.Globalization/Surrogates/bs-latn-ba.bin
Binary file not shown.
Binary file modified src/Codebelt.Extensions.Globalization/Surrogates/byn-er.bin
Binary file not shown.
Binary file modified src/Codebelt.Extensions.Globalization/Surrogates/ca-ad.bin
Binary file not shown.
Binary file modified src/Codebelt.Extensions.Globalization/Surrogates/ca-es.bin
Binary file not shown.
Binary file modified src/Codebelt.Extensions.Globalization/Surrogates/ca-fr.bin
Binary file not shown.
Binary file modified src/Codebelt.Extensions.Globalization/Surrogates/ca-it.bin
Binary file not shown.
Binary file modified src/Codebelt.Extensions.Globalization/Surrogates/ccp-cakm-bd.bin
Binary file not shown.
Binary file modified src/Codebelt.Extensions.Globalization/Surrogates/ccp-cakm-in.bin
Binary file not shown.
Binary file modified src/Codebelt.Extensions.Globalization/Surrogates/ce-ru.bin
Binary file not shown.
Binary file modified src/Codebelt.Extensions.Globalization/Surrogates/ceb-latn-ph.bin
Binary file not shown.
Binary file modified src/Codebelt.Extensions.Globalization/Surrogates/cgg-ug.bin
Binary file not shown.
Binary file modified src/Codebelt.Extensions.Globalization/Surrogates/chr-cher-us.bin
Binary file not shown.
Binary file modified src/Codebelt.Extensions.Globalization/Surrogates/co-fr.bin
Binary file not shown.
Binary file modified src/Codebelt.Extensions.Globalization/Surrogates/cs-cz.bin
Binary file not shown.
Binary file modified src/Codebelt.Extensions.Globalization/Surrogates/cu-ru.bin
Binary file not shown.
Binary file not shown.
Binary file modified src/Codebelt.Extensions.Globalization/Surrogates/cy-gb.bin
Binary file not shown.
Binary file modified src/Codebelt.Extensions.Globalization/Surrogates/da-dk.bin
Binary file not shown.
Binary file modified src/Codebelt.Extensions.Globalization/Surrogates/da-gl.bin
Binary file not shown.
Binary file modified src/Codebelt.Extensions.Globalization/Surrogates/dav-ke.bin
Binary file not shown.
Binary file modified src/Codebelt.Extensions.Globalization/Surrogates/de-at.bin
Binary file not shown.
Binary file modified src/Codebelt.Extensions.Globalization/Surrogates/de-be.bin
Binary file not shown.
Binary file modified src/Codebelt.Extensions.Globalization/Surrogates/de-ch.bin
Binary file not shown.
Binary file modified src/Codebelt.Extensions.Globalization/Surrogates/de-de.bin
Binary file not shown.
Binary file modified src/Codebelt.Extensions.Globalization/Surrogates/de-it.bin
Binary file not shown.
Binary file modified src/Codebelt.Extensions.Globalization/Surrogates/de-li.bin
Binary file not shown.
Binary file modified src/Codebelt.Extensions.Globalization/Surrogates/de-lu.bin
Binary file not shown.
Binary file modified src/Codebelt.Extensions.Globalization/Surrogates/dje-ne.bin
Binary file not shown.
Binary file modified src/Codebelt.Extensions.Globalization/Surrogates/doi-deva-in.bin
Binary file not shown.
Binary file modified src/Codebelt.Extensions.Globalization/Surrogates/dsb-de.bin
Binary file not shown.
Binary file modified src/Codebelt.Extensions.Globalization/Surrogates/dua-cm.bin
Binary file not shown.
Binary file modified src/Codebelt.Extensions.Globalization/Surrogates/dv-mv.bin
Binary file not shown.
Binary file modified src/Codebelt.Extensions.Globalization/Surrogates/dyo-sn.bin
Binary file not shown.
Binary file modified src/Codebelt.Extensions.Globalization/Surrogates/dz-bt.bin
Binary file not shown.
Binary file modified src/Codebelt.Extensions.Globalization/Surrogates/ebu-ke.bin
Binary file not shown.
Binary file modified src/Codebelt.Extensions.Globalization/Surrogates/ee-gh.bin
Binary file not shown.
Binary file modified src/Codebelt.Extensions.Globalization/Surrogates/ee-tg.bin
Binary file not shown.
Binary file modified src/Codebelt.Extensions.Globalization/Surrogates/el-cy.bin
Binary file not shown.
Binary file modified src/Codebelt.Extensions.Globalization/Surrogates/el-gr.bin
Binary file not shown.
Binary file modified src/Codebelt.Extensions.Globalization/Surrogates/en-001.bin
Binary file not shown.
Binary file modified src/Codebelt.Extensions.Globalization/Surrogates/en-029.bin
Binary file not shown.
Binary file modified src/Codebelt.Extensions.Globalization/Surrogates/en-150.bin
Binary file not shown.
Binary file modified src/Codebelt.Extensions.Globalization/Surrogates/en-ae.bin
Binary file not shown.
Binary file modified src/Codebelt.Extensions.Globalization/Surrogates/en-ag.bin
Binary file not shown.
Binary file modified src/Codebelt.Extensions.Globalization/Surrogates/en-ai.bin
Binary file not shown.
Binary file modified src/Codebelt.Extensions.Globalization/Surrogates/en-as.bin
Binary file not shown.
Binary file modified src/Codebelt.Extensions.Globalization/Surrogates/en-at.bin
Binary file not shown.
Binary file modified src/Codebelt.Extensions.Globalization/Surrogates/en-au.bin
Binary file not shown.
Binary file modified src/Codebelt.Extensions.Globalization/Surrogates/en-bb.bin
Binary file not shown.
Binary file modified src/Codebelt.Extensions.Globalization/Surrogates/en-be.bin
Binary file not shown.
Binary file modified src/Codebelt.Extensions.Globalization/Surrogates/en-bi.bin
Binary file not shown.
Binary file modified src/Codebelt.Extensions.Globalization/Surrogates/en-bm.bin
Binary file not shown.
Binary file modified src/Codebelt.Extensions.Globalization/Surrogates/en-bs.bin
Binary file not shown.
Binary file modified src/Codebelt.Extensions.Globalization/Surrogates/en-bw.bin
Binary file not shown.
Binary file modified src/Codebelt.Extensions.Globalization/Surrogates/en-bz.bin
Binary file not shown.
Binary file modified src/Codebelt.Extensions.Globalization/Surrogates/en-ca.bin
Binary file not shown.
Binary file modified src/Codebelt.Extensions.Globalization/Surrogates/en-cc.bin
Binary file not shown.
Binary file modified src/Codebelt.Extensions.Globalization/Surrogates/en-ch.bin
Binary file not shown.
Binary file modified src/Codebelt.Extensions.Globalization/Surrogates/en-ck.bin
Binary file not shown.
Binary file modified src/Codebelt.Extensions.Globalization/Surrogates/en-cm.bin
Binary file not shown.
Binary file modified src/Codebelt.Extensions.Globalization/Surrogates/en-cx.bin
Binary file not shown.
Binary file modified src/Codebelt.Extensions.Globalization/Surrogates/en-cy.bin
Binary file not shown.
Binary file modified src/Codebelt.Extensions.Globalization/Surrogates/en-de.bin
Binary file not shown.
Binary file modified src/Codebelt.Extensions.Globalization/Surrogates/en-dk.bin
Binary file not shown.
Binary file modified src/Codebelt.Extensions.Globalization/Surrogates/en-dm.bin
Binary file not shown.
Binary file modified src/Codebelt.Extensions.Globalization/Surrogates/en-er.bin
Binary file not shown.
Binary file modified src/Codebelt.Extensions.Globalization/Surrogates/en-fi.bin
Binary file not shown.
Binary file modified src/Codebelt.Extensions.Globalization/Surrogates/en-fj.bin
Binary file not shown.
Binary file modified src/Codebelt.Extensions.Globalization/Surrogates/en-fk.bin
Binary file not shown.
Binary file modified src/Codebelt.Extensions.Globalization/Surrogates/en-fm.bin
Binary file not shown.
Binary file modified src/Codebelt.Extensions.Globalization/Surrogates/en-gb.bin
Binary file not shown.
Binary file modified src/Codebelt.Extensions.Globalization/Surrogates/en-gd.bin
Binary file not shown.
Binary file modified src/Codebelt.Extensions.Globalization/Surrogates/en-gg.bin
Binary file not shown.
Binary file modified src/Codebelt.Extensions.Globalization/Surrogates/en-gh.bin
Binary file not shown.
Binary file modified src/Codebelt.Extensions.Globalization/Surrogates/en-gi.bin
Binary file not shown.
Binary file modified src/Codebelt.Extensions.Globalization/Surrogates/en-gm.bin
Binary file not shown.
Binary file modified src/Codebelt.Extensions.Globalization/Surrogates/en-gu.bin
Binary file not shown.
Binary file modified src/Codebelt.Extensions.Globalization/Surrogates/en-gy.bin
Binary file not shown.
Binary file modified src/Codebelt.Extensions.Globalization/Surrogates/en-hk.bin
Binary file not shown.
Binary file modified src/Codebelt.Extensions.Globalization/Surrogates/en-id.bin
Binary file not shown.
Binary file modified src/Codebelt.Extensions.Globalization/Surrogates/en-ie.bin
Binary file not shown.
Binary file modified src/Codebelt.Extensions.Globalization/Surrogates/en-il.bin
Binary file not shown.
Binary file modified src/Codebelt.Extensions.Globalization/Surrogates/en-im.bin
Binary file not shown.
Binary file modified src/Codebelt.Extensions.Globalization/Surrogates/en-in.bin
Binary file not shown.
Binary file modified src/Codebelt.Extensions.Globalization/Surrogates/en-io.bin
Binary file not shown.
Binary file modified src/Codebelt.Extensions.Globalization/Surrogates/en-je.bin
Binary file not shown.
Binary file modified src/Codebelt.Extensions.Globalization/Surrogates/en-jm.bin
Binary file not shown.
Binary file modified src/Codebelt.Extensions.Globalization/Surrogates/en-ke.bin
Binary file not shown.
Binary file modified src/Codebelt.Extensions.Globalization/Surrogates/en-ki.bin
Binary file not shown.
Binary file modified src/Codebelt.Extensions.Globalization/Surrogates/en-kn.bin
Binary file not shown.
Binary file modified src/Codebelt.Extensions.Globalization/Surrogates/en-ky.bin
Binary file not shown.
Binary file modified src/Codebelt.Extensions.Globalization/Surrogates/en-lc.bin
Binary file not shown.
Binary file modified src/Codebelt.Extensions.Globalization/Surrogates/en-lr.bin
Binary file not shown.
Binary file modified src/Codebelt.Extensions.Globalization/Surrogates/en-ls.bin
Binary file not shown.
Binary file modified src/Codebelt.Extensions.Globalization/Surrogates/en-mg.bin
Binary file not shown.
Binary file modified src/Codebelt.Extensions.Globalization/Surrogates/en-mh.bin
Binary file not shown.
Binary file modified src/Codebelt.Extensions.Globalization/Surrogates/en-mo.bin
Binary file not shown.
Binary file modified src/Codebelt.Extensions.Globalization/Surrogates/en-mp.bin
Binary file not shown.
Binary file modified src/Codebelt.Extensions.Globalization/Surrogates/en-ms.bin
Binary file not shown.
Binary file modified src/Codebelt.Extensions.Globalization/Surrogates/en-mt.bin
Binary file not shown.
Binary file modified src/Codebelt.Extensions.Globalization/Surrogates/en-mu.bin
Binary file not shown.
Binary file not shown.
Binary file modified src/Codebelt.Extensions.Globalization/Surrogates/en-mw.bin
Binary file not shown.
Binary file modified src/Codebelt.Extensions.Globalization/Surrogates/en-my.bin
Binary file not shown.
Binary file modified src/Codebelt.Extensions.Globalization/Surrogates/en-na.bin
Binary file not shown.
Binary file modified src/Codebelt.Extensions.Globalization/Surrogates/en-nf.bin
Binary file not shown.
Binary file modified src/Codebelt.Extensions.Globalization/Surrogates/en-ng.bin
Binary file not shown.
Binary file modified src/Codebelt.Extensions.Globalization/Surrogates/en-nl.bin
Binary file not shown.
Binary file modified src/Codebelt.Extensions.Globalization/Surrogates/en-nr.bin
Binary file not shown.
Binary file modified src/Codebelt.Extensions.Globalization/Surrogates/en-nu.bin
Binary file not shown.
Binary file modified src/Codebelt.Extensions.Globalization/Surrogates/en-nz.bin
Binary file not shown.
Binary file modified src/Codebelt.Extensions.Globalization/Surrogates/en-pg.bin
Binary file not shown.
Binary file modified src/Codebelt.Extensions.Globalization/Surrogates/en-ph.bin
Binary file not shown.
Binary file modified src/Codebelt.Extensions.Globalization/Surrogates/en-pk.bin
Binary file not shown.
Binary file modified src/Codebelt.Extensions.Globalization/Surrogates/en-pn.bin
Binary file not shown.
Binary file modified src/Codebelt.Extensions.Globalization/Surrogates/en-pr.bin
Binary file not shown.
Binary file modified src/Codebelt.Extensions.Globalization/Surrogates/en-pw.bin
Binary file not shown.
Binary file modified src/Codebelt.Extensions.Globalization/Surrogates/en-rw.bin
Binary file not shown.
Binary file modified src/Codebelt.Extensions.Globalization/Surrogates/en-sb.bin
Binary file not shown.
Binary file modified src/Codebelt.Extensions.Globalization/Surrogates/en-sc.bin
Binary file not shown.
Binary file modified src/Codebelt.Extensions.Globalization/Surrogates/en-sd.bin
Binary file not shown.
Binary file modified src/Codebelt.Extensions.Globalization/Surrogates/en-se.bin
Binary file not shown.
Binary file modified src/Codebelt.Extensions.Globalization/Surrogates/en-sg.bin
Binary file not shown.
Binary file modified src/Codebelt.Extensions.Globalization/Surrogates/en-sh.bin
Binary file not shown.
Binary file modified src/Codebelt.Extensions.Globalization/Surrogates/en-si.bin
Binary file not shown.
Binary file modified src/Codebelt.Extensions.Globalization/Surrogates/en-sl.bin
Binary file not shown.
Binary file modified src/Codebelt.Extensions.Globalization/Surrogates/en-ss.bin
Binary file not shown.
Binary file modified src/Codebelt.Extensions.Globalization/Surrogates/en-sx.bin
Binary file not shown.
Binary file modified src/Codebelt.Extensions.Globalization/Surrogates/en-sz.bin
Binary file not shown.
Binary file modified src/Codebelt.Extensions.Globalization/Surrogates/en-tc.bin
Binary file not shown.
Binary file modified src/Codebelt.Extensions.Globalization/Surrogates/en-tk.bin
Binary file not shown.
Binary file modified src/Codebelt.Extensions.Globalization/Surrogates/en-to.bin
Binary file not shown.
Binary file modified src/Codebelt.Extensions.Globalization/Surrogates/en-tt.bin
Binary file not shown.
Binary file modified src/Codebelt.Extensions.Globalization/Surrogates/en-tv.bin
Binary file not shown.
Binary file modified src/Codebelt.Extensions.Globalization/Surrogates/en-tz.bin
Binary file not shown.
Binary file modified src/Codebelt.Extensions.Globalization/Surrogates/en-ug.bin
Binary file not shown.
Binary file modified src/Codebelt.Extensions.Globalization/Surrogates/en-um.bin
Binary file not shown.
Binary file modified src/Codebelt.Extensions.Globalization/Surrogates/en-us.bin
Binary file not shown.
Binary file modified src/Codebelt.Extensions.Globalization/Surrogates/en-vc.bin
Binary file not shown.
Binary file modified src/Codebelt.Extensions.Globalization/Surrogates/en-vg.bin
Binary file not shown.
Binary file modified src/Codebelt.Extensions.Globalization/Surrogates/en-vi.bin
Binary file not shown.
Binary file modified src/Codebelt.Extensions.Globalization/Surrogates/en-vu.bin
Binary file not shown.
Binary file modified src/Codebelt.Extensions.Globalization/Surrogates/en-ws.bin
Binary file not shown.
Binary file modified src/Codebelt.Extensions.Globalization/Surrogates/en-za.bin
Binary file not shown.
Binary file modified src/Codebelt.Extensions.Globalization/Surrogates/en-zm.bin
Binary file not shown.
Binary file modified src/Codebelt.Extensions.Globalization/Surrogates/en-zw.bin
Binary file not shown.
Binary file modified src/Codebelt.Extensions.Globalization/Surrogates/eo-001.bin
Binary file not shown.
Binary file modified src/Codebelt.Extensions.Globalization/Surrogates/es-419.bin
Binary file not shown.
Binary file modified src/Codebelt.Extensions.Globalization/Surrogates/es-ar.bin
Binary file not shown.
Binary file modified src/Codebelt.Extensions.Globalization/Surrogates/es-bo.bin
Binary file not shown.
Binary file modified src/Codebelt.Extensions.Globalization/Surrogates/es-br.bin
Binary file not shown.
Binary file modified src/Codebelt.Extensions.Globalization/Surrogates/es-bz.bin
Binary file not shown.
Binary file modified src/Codebelt.Extensions.Globalization/Surrogates/es-cl.bin
Binary file not shown.
Binary file modified src/Codebelt.Extensions.Globalization/Surrogates/es-co.bin
Binary file not shown.
Binary file modified src/Codebelt.Extensions.Globalization/Surrogates/es-cr.bin
Binary file not shown.
Binary file modified src/Codebelt.Extensions.Globalization/Surrogates/es-cu.bin
Binary file not shown.
Binary file modified src/Codebelt.Extensions.Globalization/Surrogates/es-do.bin
Binary file not shown.
Binary file modified src/Codebelt.Extensions.Globalization/Surrogates/es-ec.bin
Binary file not shown.
Binary file modified src/Codebelt.Extensions.Globalization/Surrogates/es-es.bin
Binary file not shown.
Binary file modified src/Codebelt.Extensions.Globalization/Surrogates/es-gq.bin
Binary file not shown.
Binary file modified src/Codebelt.Extensions.Globalization/Surrogates/es-gt.bin
Binary file not shown.
Binary file modified src/Codebelt.Extensions.Globalization/Surrogates/es-hn.bin
Binary file not shown.
Binary file modified src/Codebelt.Extensions.Globalization/Surrogates/es-mx.bin
Binary file not shown.
Binary file modified src/Codebelt.Extensions.Globalization/Surrogates/es-ni.bin
Binary file not shown.
Binary file modified src/Codebelt.Extensions.Globalization/Surrogates/es-pa.bin
Binary file not shown.
Binary file modified src/Codebelt.Extensions.Globalization/Surrogates/es-pe.bin
Binary file not shown.
Binary file modified src/Codebelt.Extensions.Globalization/Surrogates/es-ph.bin
Binary file not shown.
Binary file modified src/Codebelt.Extensions.Globalization/Surrogates/es-pr.bin
Binary file not shown.
Binary file modified src/Codebelt.Extensions.Globalization/Surrogates/es-py.bin
Binary file not shown.
Binary file modified src/Codebelt.Extensions.Globalization/Surrogates/es-sv.bin
Binary file not shown.
Binary file modified src/Codebelt.Extensions.Globalization/Surrogates/es-us.bin
Binary file not shown.
Binary file modified src/Codebelt.Extensions.Globalization/Surrogates/es-uy.bin
Binary file not shown.
Binary file modified src/Codebelt.Extensions.Globalization/Surrogates/es-ve.bin
Binary file not shown.
Binary file modified src/Codebelt.Extensions.Globalization/Surrogates/et-ee.bin
Binary file not shown.
Binary file modified src/Codebelt.Extensions.Globalization/Surrogates/eu-es.bin
Binary file not shown.
Binary file modified src/Codebelt.Extensions.Globalization/Surrogates/ewo-cm.bin
Binary file not shown.
Binary file modified src/Codebelt.Extensions.Globalization/Surrogates/fa-af.bin
Binary file not shown.
Binary file modified src/Codebelt.Extensions.Globalization/Surrogates/fa-ir.bin
Binary file not shown.
Binary file modified src/Codebelt.Extensions.Globalization/Surrogates/ff-adlm-bf.bin
Binary file not shown.
Binary file modified src/Codebelt.Extensions.Globalization/Surrogates/ff-adlm-cm.bin
Binary file not shown.
Binary file modified src/Codebelt.Extensions.Globalization/Surrogates/ff-adlm-gh.bin
Binary file not shown.
Binary file modified src/Codebelt.Extensions.Globalization/Surrogates/ff-adlm-gm.bin
Binary file not shown.
Binary file modified src/Codebelt.Extensions.Globalization/Surrogates/ff-adlm-gn.bin
Binary file not shown.
Binary file modified src/Codebelt.Extensions.Globalization/Surrogates/ff-adlm-gw.bin
Binary file not shown.
Binary file modified src/Codebelt.Extensions.Globalization/Surrogates/ff-adlm-lr.bin
Binary file not shown.
Binary file modified src/Codebelt.Extensions.Globalization/Surrogates/ff-adlm-mr.bin
Binary file not shown.
Binary file modified src/Codebelt.Extensions.Globalization/Surrogates/ff-adlm-ne.bin
Binary file not shown.
Binary file modified src/Codebelt.Extensions.Globalization/Surrogates/ff-adlm-ng.bin
Binary file not shown.
Binary file modified src/Codebelt.Extensions.Globalization/Surrogates/ff-adlm-sl.bin
Binary file not shown.
Binary file modified src/Codebelt.Extensions.Globalization/Surrogates/ff-adlm-sn.bin
Binary file not shown.
Binary file modified src/Codebelt.Extensions.Globalization/Surrogates/ff-latn-bf.bin
Binary file not shown.
Binary file modified src/Codebelt.Extensions.Globalization/Surrogates/ff-latn-cm.bin
Binary file not shown.
Binary file modified src/Codebelt.Extensions.Globalization/Surrogates/ff-latn-gh.bin
Binary file not shown.
Binary file modified src/Codebelt.Extensions.Globalization/Surrogates/ff-latn-gm.bin
Binary file not shown.
Binary file modified src/Codebelt.Extensions.Globalization/Surrogates/ff-latn-gn.bin
Binary file not shown.
Binary file modified src/Codebelt.Extensions.Globalization/Surrogates/ff-latn-gw.bin
Binary file not shown.
Binary file modified src/Codebelt.Extensions.Globalization/Surrogates/ff-latn-lr.bin
Binary file not shown.
Binary file modified src/Codebelt.Extensions.Globalization/Surrogates/ff-latn-mr.bin
Binary file not shown.
Binary file modified src/Codebelt.Extensions.Globalization/Surrogates/ff-latn-ne.bin
Binary file not shown.
Binary file modified src/Codebelt.Extensions.Globalization/Surrogates/ff-latn-ng.bin
Binary file not shown.
Binary file modified src/Codebelt.Extensions.Globalization/Surrogates/ff-latn-sl.bin
Binary file not shown.
Binary file modified src/Codebelt.Extensions.Globalization/Surrogates/ff-latn-sn.bin
Binary file not shown.
Binary file modified src/Codebelt.Extensions.Globalization/Surrogates/fi-fi.bin
Binary file not shown.
Binary file modified src/Codebelt.Extensions.Globalization/Surrogates/fil-ph.bin
Binary file not shown.
Binary file modified src/Codebelt.Extensions.Globalization/Surrogates/fo-dk.bin
Binary file not shown.
Binary file modified src/Codebelt.Extensions.Globalization/Surrogates/fo-fo.bin
Binary file not shown.
Binary file modified src/Codebelt.Extensions.Globalization/Surrogates/fr-029.bin
Binary file not shown.
Binary file modified src/Codebelt.Extensions.Globalization/Surrogates/fr-be.bin
Binary file not shown.
Binary file modified src/Codebelt.Extensions.Globalization/Surrogates/fr-bf.bin
Binary file not shown.
Binary file modified src/Codebelt.Extensions.Globalization/Surrogates/fr-bi.bin
Binary file not shown.
Binary file modified src/Codebelt.Extensions.Globalization/Surrogates/fr-bj.bin
Binary file not shown.
Binary file modified src/Codebelt.Extensions.Globalization/Surrogates/fr-bl.bin
Binary file not shown.
Binary file modified src/Codebelt.Extensions.Globalization/Surrogates/fr-ca.bin
Binary file not shown.
Binary file modified src/Codebelt.Extensions.Globalization/Surrogates/fr-cd.bin
Binary file not shown.
Binary file modified src/Codebelt.Extensions.Globalization/Surrogates/fr-cf.bin
Binary file not shown.
Binary file modified src/Codebelt.Extensions.Globalization/Surrogates/fr-cg.bin
Binary file not shown.
Binary file modified src/Codebelt.Extensions.Globalization/Surrogates/fr-ch.bin
Binary file not shown.
Binary file modified src/Codebelt.Extensions.Globalization/Surrogates/fr-ci.bin
Binary file not shown.
Binary file modified src/Codebelt.Extensions.Globalization/Surrogates/fr-cm.bin
Binary file not shown.
Binary file modified src/Codebelt.Extensions.Globalization/Surrogates/fr-dj.bin
Binary file not shown.
Binary file modified src/Codebelt.Extensions.Globalization/Surrogates/fr-dz.bin
Binary file not shown.
Binary file modified src/Codebelt.Extensions.Globalization/Surrogates/fr-fr.bin
Binary file not shown.
Binary file modified src/Codebelt.Extensions.Globalization/Surrogates/fr-ga.bin
Binary file not shown.
Binary file modified src/Codebelt.Extensions.Globalization/Surrogates/fr-gf.bin
Binary file not shown.
Binary file modified src/Codebelt.Extensions.Globalization/Surrogates/fr-gn.bin
Binary file not shown.
Binary file modified src/Codebelt.Extensions.Globalization/Surrogates/fr-gp.bin
Binary file not shown.
Binary file modified src/Codebelt.Extensions.Globalization/Surrogates/fr-gq.bin
Binary file not shown.
Binary file modified src/Codebelt.Extensions.Globalization/Surrogates/fr-ht.bin
Binary file not shown.
Binary file modified src/Codebelt.Extensions.Globalization/Surrogates/fr-km.bin
Binary file not shown.
Binary file modified src/Codebelt.Extensions.Globalization/Surrogates/fr-lu.bin
Binary file not shown.
Loading