diff --git a/.config/dotnet-tools.json b/.config/dotnet-tools.json index 133915c..e887962 100644 --- a/.config/dotnet-tools.json +++ b/.config/dotnet-tools.json @@ -3,7 +3,7 @@ "isRoot": true, "tools": { "csharpier": { - "version": "1.2.3", + "version": "1.2.5", "commands": [ "csharpier" ], diff --git a/.editorconfig b/.editorconfig index 9719e01..6be9a0e 100644 --- a/.editorconfig +++ b/.editorconfig @@ -8,7 +8,7 @@ # https://github.com/dotnet/runtime/blob/main/.editorconfig # https://learn.microsoft.com/en-us/dotnet/core/tools/dotnet-format -# dotnet format style --verify-no-changes --severity=info --verbosity=detailed --exclude-diagnostics=IDE0055 +# dotnet format style --verify-no-changes --severity=info --verbosity=detailed # Root config root = true diff --git a/.github/copilot-instructions.md b/.github/copilot-instructions.md new file mode 100644 index 0000000..0780c5e --- /dev/null +++ b/.github/copilot-instructions.md @@ -0,0 +1,432 @@ +# GitHub Copilot Instructions for LanguageTags + +## Project Overview + +**LanguageTags** is a C# .NET library for handling ISO 639-2, ISO 639-3, and RFC 5646 / BCP 47 language tags. The project serves two primary purposes: + +1. **Data Publishing**: Provides ISO 639-2, ISO 639-3, and RFC 5646 language tag records in JSON and C# formats +2. **Tag Processing**: Implements IETF BCP 47 language tag construction and parsing per RFC 5646 semantic rules + +## Solution Structure + +### Projects + +- **LanguageTags** (`LanguageTags/LanguageTags.csproj`) + - Core library project + - NuGet package: `ptr727.LanguageTags` + - Contains language tag data models, parser, builder, and lookup functionality + - Target framework: .NET 10.0 + - C# language version: 14.0 + +- **LanguageTagsCreate** (`LanguageTagsCreate/LanguageTagsCreate.csproj`) + - CLI utility for downloading and generating language data + - Downloads data from official sources (Library of Congress, SIL, IANA) + - Converts to JSON and generates C# code files + - Target framework: .NET 10.0 + +- **LanguageTagsTests** (`LanguageTagsTests/LanguageTagsTests.csproj`) + - xUnit test suite with 211+ comprehensive tests + - Uses AwesomeAssertions for test assertions + - 100% coverage of all public APIs + - Target framework: .NET 10.0 + +### Key Directories + +- **LanguageData/** + - Contains downloaded language data files + - JSON converted data files + - Updated weekly via GitHub Actions + +- **.github/workflows/** + - `update-languagedata.yml`: Weekly scheduled job to update language data + - `publish-release.yml`: Release and NuGet publishing workflow + - `merge-bot-pr.yml`: Automated PR merge workflow + +## Core Components + +### LanguageTag Class (LanguageTag.cs) + +The main public API for working with language tags: + +**Static Factory Methods:** +- `Parse(string tag)`: Parse a language tag string, returns null on failure +- `TryParse(string tag, out LanguageTag? result)`: Safe parsing with out parameter +- `ParseOrDefault(string tag, LanguageTag? defaultTag = null)`: Parse with fallback to "und" +- `ParseAndNormalize(string tag)`: Parse and normalize in one step +- `CreateBuilder()`: Create a fluent builder instance +- `FromLanguage(string language)`: Factory for simple language tags +- `FromLanguageRegion(string language, string region)`: Factory for language+region tags +- `FromLanguageScriptRegion(string language, string script, string region)`: Factory for full tags + +**Properties:** +- `Language`: Primary language subtag (internal set) +- `ExtendedLanguage`: Extended language subtag (internal set) +- `Script`: Script subtag (internal set) +- `Region`: Region subtag (internal set) +- `Variants`: ImmutableArray of variant subtags +- `Extensions`: ImmutableArray of ExtensionTag objects +- `PrivateUse`: PrivateUseTag object +- `IsValid`: Property to check if tag is valid + +**Instance Methods:** +- `Validate()`: Verify tag correctness +- `Normalize()`: Return normalized copy of tag +- `ToString()`: String representation +- `Equals()`: Equality comparison (case-insensitive) +- `GetHashCode()`: Hash code for collections +- Operators: `==`, `!=` + +**Design Characteristics:** +- Implements `IEquatable` +- Constructors are internal, use factory methods or builder +- Properties use internal setters to maintain immutability for public API +- Collections exposed as ImmutableArray for thread safety + +### LanguageTagBuilder Class (LanguageTagBuilder.cs) + +Fluent builder for constructing language tags: + +**Methods:** +- `Language(string value)`: Set primary language +- `ExtendedLanguage(string value)`: Set extended language +- `Script(string value)`: Set script +- `Region(string value)`: Set region +- `VariantAdd(string value)`: Add a variant +- `VariantAddRange(IEnumerable values)`: Add multiple variants +- `ExtensionAdd(char prefix, IEnumerable values)`: Add extension with prefix and values +- `PrivateUseAdd(string value)`: Add private use tag +- `PrivateUseAddRange(IEnumerable values)`: Add multiple private use tags +- `Build()`: Return constructed tag (no validation) +- `Normalize()`: Return normalized tag (with validation) + +### LanguageTagParser Class (LanguageTagParser.cs) + +**Internal implementation** - Not exposed in public API. Use `LanguageTag.Parse()` instead. + +- Parses language tags according to RFC 5646 Section 2.1 +- Handles grandfathered tags and converts them to current forms +- Normalizes tag casing according to RFC conventions: + - Language: lowercase + - Extended language: lowercase + - Script: Title case + - Region: UPPERCASE + - Variants: lowercase + - Extensions: lowercase + - Private use: lowercase + +### LanguageLookup Class (LanguageLookup.cs) + +Provides language code conversion and matching: + +**Properties:** +- `Undetermined`: Constant for "und" (undetermined language) +- `Overrides`: User-defined (IETF, ISO) mapping pairs + +**Methods:** +- `GetIetfFromIso(string languageTag)`: Convert ISO to IETF format +- `GetIsoFromIetf(string languageTag)`: Convert IETF to ISO format +- `IsMatch(string prefix, string languageTag)`: Prefix matching for content selection + +### Data Models + +#### Iso6392Data.cs +- ISO 639-2 language codes (3-letter bibliographic/terminologic codes) +- **Public Methods:** + - `Create()`: Load embedded data + - `LoadData(string fileName)`: Load from file + - `LoadJson(string fileName)`: Load from JSON + - `Find(string? languageTag, bool includeDescription)`: Find record by tag +- **Record Properties:** `Part2B`, `Part2T`, `Part1`, `RefName` + +#### Iso6393Data.cs +- ISO 639-3 language codes (comprehensive language codes) +- **Public Methods:** + - `Create()`: Load embedded data + - `LoadData(string fileName)`: Load from file + - `LoadJson(string fileName)`: Load from JSON + - `Find(string? languageTag, bool includeDescription)`: Find record by tag +- **Record Properties:** `Id`, `Part2B`, `Part2T`, `Part1`, `Scope`, `LanguageType`, `RefName`, `Comment` + +#### Rfc5646Data.cs +- RFC 5646 / BCP 47 language subtag registry +- **Public Methods:** + - `Create()`: Load embedded data + - `LoadData(string fileName)`: Load from file + - `LoadJson(string fileName)`: Load from JSON + - `Find(string? languageTag, bool includeDescription)`: Find record by tag +- **Properties:** `FileDate`, `RecordList` +- **Record Properties:** `Type`, `Tag`, `SubTag`, `Description` (ImmutableArray), `Added`, `SuppressScript`, `Scope`, `MacroLanguage`, `Deprecated`, `Comments` (ImmutableArray), `Prefix` (ImmutableArray), `PreferredValue`, `TagAny` +- **Enums:** + - `RecordType`: None, Language, ExtLanguage, Script, Variant, Grandfathered, Region, Redundant + - `RecordScope`: None, MacroLanguage, Collection, Special, PrivateUse + +#### Supporting Classes + +**ExtensionTag:** +- `Prefix`: Single-character extension prefix (char) +- `Tags`: ImmutableArray of extension values +- `ToString()`: Format as "prefix-tag1-tag2" + +**PrivateUseTag:** +- `Prefix`: Constant 'x' +- `Tags`: ImmutableArray of private use values +- `ToString()`: Format as "x-tag1-tag2" + +### Language Tag Structure + +Per RFC 5646, language tags follow this format: +``` +[Language]-[Extended language]-[Script]-[Region]-[Variant]-[Extension]-[Private Use] +``` + +Examples: +- `zh`: Simple language tag +- `zh-yue-hk`: Language with extended language and region +- `en-latn-gb-boont-r-extended-sequence-x-private`: Full tag with all components + +## Development Guidelines + +### Code Style + +- **C# Version**: 14.0 (latest features) +- **Target Framework**: .NET 10.0 +- Use modern C# features and syntax +- Follow .NET naming conventions +- Use collection expressions: `[]` instead of `new List<>()` +- Use `ImmutableArray` for public collections +- Use file-scoped namespaces +- **Required**: Include XML documentation (`///`) for ALL public APIs +- Use `init` accessors for immutable properties where appropriate +- Use `internal set` for properties that need internal mutability +- Use readonly fields where appropriate +- Prefer primary constructors where applicable + +### XML Documentation Requirements + +All public classes, methods, properties, enums, and operators **must** have XML documentation: + +```csharp +/// +/// Brief description of the member. +/// +/// Description of parameter. +/// Description of return value. +/// When this exception is thrown. +public ReturnType MethodName(ParamType paramName) +``` + +### Immutability and Thread Safety + +- All data classes (`Iso6392Data`, `Iso6393Data`, `Rfc5646Data`) are immutable +- Records can be safely shared across threads +- Use `ImmutableArray` for collections in public APIs +- Properties expose immutable collections; internal backing stores can be mutable + +### Testing Requirements + +- **100% coverage** of all public APIs required +- Write unit tests for: + - All public methods + - All static factory methods + - Property accessors + - Equality members + - Edge cases (null, empty, invalid inputs) + - Case-insensitive behavior + - Roundtrip scenarios (parse → normalize → toString) +- Tests are organized by component: + - `LanguageTagTests.cs`: 77+ tests for LanguageTag class + - `LanguageTagBuilderTests.cs`: Builder functionality + - `LanguageTagParserTests.cs`: Parser and normalization + - `LanguageLookupTests.cs`: Conversion and matching + - `Iso6392Tests.cs`, `Iso6393Tests.cs`, `Rfc5646Tests.cs`: Data access +- Use descriptive test method names that explain the scenario +- Leverage AwesomeAssertions for fluent assertions +- Use `[Theory]` with `[InlineData]` for parameterized tests + +### Tools and Formatting + +Available VS Code tasks: +- `.Net Build`: Build the solution +- `.Net Format`: Format code using dotnet format +- `CSharpier Format`: Format code using CSharpier +- `.Net Tool Update`: Update all .NET tools +- `Husky.Net Run`: Run Husky pre-commit hooks + +### Package Management + +- Uses Microsoft.SourceLink.GitHub for source linking +- Generates symbols package (.snupkg) for debugging +- Embeds untracked sources for complete debugging experience +- Package ID: `ptr727.LanguageTags` +- License: MIT +- Current version: 1.0.0-pre + +### Data Updates + +- Language data is updated weekly via GitHub Actions workflow +- The `LanguageTagsCreate` tool downloads data from: + - ISO 639-2: Library of Congress + - ISO 639-3: SIL International + - RFC 5646: IANA Language Subtag Registry +- Generated C# files (`*DataGen.cs`) are committed to the repository +- Data files are in `LanguageData/` directory + +## API Design Patterns + +### Factory Pattern +Use static factory methods instead of public constructors: +```csharp +// Good +LanguageTag tag = LanguageTag.Parse("en-US"); +LanguageTag tag = LanguageTag.FromLanguage("en"); + +// Avoid - constructors are internal +// var tag = new LanguageTag(); // Not accessible +``` + +### Builder Pattern +Use fluent builder for complex tag construction: +```csharp +LanguageTag tag = LanguageTag.CreateBuilder() + .Language("en") + .Region("US") + .Build(); +``` + +### Immutability Pattern +- All properties are immutable after construction +- Use `Normalize()` to get modified copies +- Collections are exposed as `ImmutableArray` + +### Safe Parsing +Always use safe parsing patterns: +```csharp +// TryParse pattern +if (LanguageTag.TryParse(input, out LanguageTag? tag)) +{ + // Use tag +} + +// ParseOrDefault pattern +LanguageTag tag = LanguageTag.ParseOrDefault(input); // Falls back to "und" +``` + +## References and Standards + +- **RFC 5646**: Tags for Identifying Languages +- **BCP 47**: Best Current Practice for Language Tags +- **ISO 639-2**: 3-letter language codes +- **ISO 639-3**: Comprehensive language codes +- **ISO 15924**: Script codes +- **ISO 3166-1**: Country codes +- **UN M.49**: Geographic region codes +- **IANA Language Subtag Registry**: Authoritative registry of subtags + +## Important Implementation Notes + +- The implemented language tag parsing and normalization logic may be incomplete or inaccurate +- Grandfathered tags are automatically converted to their preferred values during parsing +- All tag comparisons are case-insensitive per RFC 5646 +- Private use tags start with 'x-' prefix +- Extensions use single-character prefixes (except 'x' which is reserved for private use) +- `LanguageTagParser` is internal; all parsing is done through `LanguageTag` static methods + +## Recent API Changes + +### Changed (Breaking) +- `LanguageTagParser` is now internal (use `LanguageTag.Parse()` instead) +- Properties changed from `IList` to `ImmutableArray`: + - `VariantList` → `Variants` + - `ExtensionList` → `Extensions` + - `TagList` → `Tags` +- `LoadData()` and `LoadJson()` changed from internal to public in data classes +- Tag construction requires use of factory methods or builder (constructors are internal) + +### Added (Non-Breaking) +- `LanguageTag.ParseOrDefault()`: Safe parsing with fallback +- `LanguageTag.ParseAndNormalize()`: Combined parse and normalize +- `LanguageTag.IsValid`: Property for validation +- `LanguageTag.FromLanguage()`, `FromLanguageRegion()`, `FromLanguageScriptRegion()`: Factory methods +- `IEquatable` implementation with operators +- Comprehensive XML documentation for all public APIs + +## Future Improvements + +Consider these areas for enhancement: +- Use a BNF parser or parser generator (ANTLR4, Eto.Parse, etc.) instead of hand-parsing +- Implement comprehensive subtag content validation against registry data +- Add more language lookup and validation features +- Improve error messages and diagnostics +- Consider making `ExtensionTag` and `PrivateUseTag` immutable records + +## Contributing + +When contributing to this project: +1. Follow the existing code style and patterns +2. Add unit tests for ALL new public functionality (100% coverage required) +3. Add XML documentation for ALL public APIs +4. Run formatting tools before committing +5. Ensure all tests pass (211+ tests should pass) +6. Update the README if adding significant features +7. Do not expose constructors publicly - use factory methods or builder pattern +8. Prefer immutability - use `ImmutableArray` for collections +9. Follow the safe parsing patterns (TryParse, ParseOrDefault) +10. Maintain thread safety for all data structures + +## Common Patterns + +### Creating Tags +```csharp +// Simple parsing +LanguageTag? tag = LanguageTag.Parse("en-US"); + +// Safe parsing +if (LanguageTag.TryParse("en-US", out LanguageTag? tag)) +{ + Console.WriteLine(tag.ToString()); +} + +// Parse with default +LanguageTag tag = LanguageTag.ParseOrDefault(input); // "und" if invalid + +// Factory methods +LanguageTag tag = LanguageTag.FromLanguage("en"); +LanguageTag tag = LanguageTag.FromLanguageRegion("en", "US"); + +// Builder +LanguageTag tag = LanguageTag.CreateBuilder() + .Language("en") + .Region("US") + .Build(); +``` + +### Normalizing Tags +```csharp +// Parse and normalize separately +LanguageTag? tag = LanguageTag.Parse("en-latn-us"); +LanguageTag? normalized = tag?.Normalize(); // "en-US" + +// Parse and normalize in one step +LanguageTag? tag = LanguageTag.ParseAndNormalize("en-latn-us"); // "en-US" +``` + +### Accessing Tag Components +```csharp +LanguageTag tag = LanguageTag.Parse("en-latn-gb-boont-r-extended-x-private")!; + +string language = tag.Language; // "en" +string script = tag.Script; // "latn" +string region = tag.Region; // "gb" +ImmutableArray variants = tag.Variants; // ["boont"] +ImmutableArray extensions = tag.Extensions; // [{ Prefix='r', Tags=["extended"] }] +PrivateUseTag privateUse = tag.PrivateUse; // { Tags=["private"] } +``` + +### Comparing Tags +```csharp +LanguageTag? tag1 = LanguageTag.Parse("en-US"); +LanguageTag? tag2 = LanguageTag.Parse("en-us"); + +bool equal = tag1 == tag2; // true (case-insensitive) +bool equal = tag1.Equals(tag2); // true +int hash = tag1.GetHashCode(); // Same as tag2.GetHashCode() diff --git a/.github/workflows/publish-release.yml b/.github/workflows/publish-release.yml index a1db34a..80b10c6 100644 --- a/.github/workflows/publish-release.yml +++ b/.github/workflows/publish-release.yml @@ -28,7 +28,7 @@ jobs: - name: Setup .NET SDK uses: actions/setup-dotnet@v5 with: - dotnet-version: 9.x + dotnet-version: 10.x - name: Checkout code uses: actions/checkout@v6 diff --git a/.github/workflows/test-task.yml b/.github/workflows/test-task.yml index c853f1e..fa1ebf4 100644 --- a/.github/workflows/test-task.yml +++ b/.github/workflows/test-task.yml @@ -15,7 +15,7 @@ jobs: - name: Setup .NET SDK uses: actions/setup-dotnet@v5 with: - dotnet-version: 9.x + dotnet-version: 10.x - name: Checkout code uses: actions/checkout@v6 @@ -24,7 +24,7 @@ jobs: run: | dotnet tool restore dotnet csharpier check --log-level=debug . - dotnet format style --verify-no-changes --severity=info --verbosity=detailed --exclude-diagnostics=IDE0055 + dotnet format style --verify-no-changes --severity=info --verbosity=detailed - name: Run unit tests run: dotnet test diff --git a/.husky/task-runner.json b/.husky/task-runner.json index eb389c7..009e6b3 100644 --- a/.husky/task-runner.json +++ b/.husky/task-runner.json @@ -22,8 +22,7 @@ "style", "--verify-no-changes", "--severity=info", - "--verbosity=detailed", - "--exclude-diagnostics=IDE0055" + "--verbosity=detailed" ], "include": [ "**/*.cs" diff --git a/.vscode/launch.json b/.vscode/launch.json index 7f2b371..ae5d4cb 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -6,11 +6,11 @@ "type": "coreclr", "request": "launch", "preLaunchTask": ".Net Build", - "program": "${workspaceFolder}/LanguageTagsCreate/bin/Debug/net9.0/LanguageTagsCreate.dll", + "program": "${workspaceFolder}/LanguageTagsCreate/bin/Debug/net10.0/LanguageTagsCreate.dll", "args": [ "${workspaceFolder}", ], - "cwd": "${workspaceFolder}/LanguageTagsCreate/bin/Debug/net9.0", + "cwd": "${workspaceFolder}/LanguageTagsCreate/bin/Debug/net10.0", "console": "internalConsole", "stopAtEntry": false } diff --git a/.vscode/tasks.json b/.vscode/tasks.json index 1903971..1261310 100644 --- a/.vscode/tasks.json +++ b/.vscode/tasks.json @@ -31,8 +31,7 @@ "style", "--verify-no-changes", "--severity=info", - "--verbosity=detailed", - "--exclude-diagnostics=IDE0055" + "--verbosity=detailed" ], "problemMatcher": [ "$msCompile" diff --git a/LanguageData/rfc5646.json b/LanguageData/rfc5646.json index b64cee3..2c10975 100644 --- a/LanguageData/rfc5646.json +++ b/LanguageData/rfc5646.json @@ -8,6 +8,7 @@ "Afar" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -19,6 +20,7 @@ ], "Added": "2005-10-16", "SuppressScript": "Cyrl", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -29,6 +31,7 @@ "Avestan" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -40,6 +43,7 @@ ], "Added": "2005-10-16", "SuppressScript": "Latn", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -62,6 +66,7 @@ ], "Added": "2005-10-16", "SuppressScript": "Ethi", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -72,6 +77,7 @@ "Aragonese" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -95,6 +101,7 @@ ], "Added": "2005-10-16", "SuppressScript": "Beng", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -105,6 +112,7 @@ "Avaric" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -138,6 +146,7 @@ "Bashkir" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -149,6 +158,7 @@ ], "Added": "2005-10-16", "SuppressScript": "Cyrl", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -160,6 +170,7 @@ ], "Added": "2005-10-16", "SuppressScript": "Cyrl", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -181,6 +192,7 @@ "Bislama" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -191,6 +203,7 @@ "Bambara" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -203,6 +216,7 @@ ], "Added": "2005-10-16", "SuppressScript": "Beng", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -213,6 +227,7 @@ "Tibetan" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -223,6 +238,7 @@ "Breton" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -234,6 +250,7 @@ ], "Added": "2005-10-16", "SuppressScript": "Latn", + "Scope": "None", "MacroLanguage": "sh", "Comments": [], "Prefix": [] @@ -247,6 +264,7 @@ ], "Added": "2005-10-16", "SuppressScript": "Latn", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -257,6 +275,7 @@ "Chechen" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -268,6 +287,7 @@ ], "Added": "2005-10-16", "SuppressScript": "Latn", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -278,6 +298,7 @@ "Corsican" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -300,6 +321,7 @@ ], "Added": "2005-10-16", "SuppressScript": "Latn", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -314,6 +336,7 @@ "Old Slavonic" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -324,6 +347,7 @@ "Chuvash" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -335,6 +359,7 @@ ], "Added": "2005-10-16", "SuppressScript": "Latn", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -346,6 +371,7 @@ ], "Added": "2005-10-16", "SuppressScript": "Latn", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -357,6 +383,7 @@ ], "Added": "2005-10-16", "SuppressScript": "Latn", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -370,6 +397,7 @@ ], "Added": "2005-10-16", "SuppressScript": "Thaa", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -381,6 +409,7 @@ ], "Added": "2005-10-16", "SuppressScript": "Tibt", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -391,6 +420,7 @@ "Ewe" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -402,6 +432,7 @@ ], "Added": "2005-10-16", "SuppressScript": "Grek", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -413,6 +444,7 @@ ], "Added": "2005-10-16", "SuppressScript": "Latn", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -424,6 +456,7 @@ ], "Added": "2005-10-16", "SuppressScript": "Latn", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -436,6 +469,7 @@ ], "Added": "2005-10-16", "SuppressScript": "Latn", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -459,6 +493,7 @@ ], "Added": "2005-10-16", "SuppressScript": "Latn", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -493,6 +528,7 @@ ], "Added": "2005-10-16", "SuppressScript": "Latn", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -504,6 +540,7 @@ ], "Added": "2005-10-16", "SuppressScript": "Latn", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -515,6 +552,7 @@ ], "Added": "2005-10-16", "SuppressScript": "Latn", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -526,6 +564,7 @@ ], "Added": "2005-10-16", "SuppressScript": "Latn", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -537,6 +576,7 @@ ], "Added": "2005-10-16", "SuppressScript": "Latn", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -548,6 +588,7 @@ ], "Added": "2005-10-16", "SuppressScript": "Latn", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -559,6 +600,7 @@ "Gaelic" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -570,6 +612,7 @@ ], "Added": "2005-10-16", "SuppressScript": "Latn", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -593,6 +636,7 @@ ], "Added": "2005-10-16", "SuppressScript": "Gujr", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -604,6 +648,7 @@ ], "Added": "2005-10-16", "SuppressScript": "Latn", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -614,6 +659,7 @@ "Hausa" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -625,6 +671,7 @@ ], "Added": "2005-10-16", "SuppressScript": "Hebr", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -636,6 +683,7 @@ ], "Added": "2005-10-16", "SuppressScript": "Deva", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -646,6 +694,7 @@ "Hiri Motu" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -657,6 +706,7 @@ ], "Added": "2005-10-16", "SuppressScript": "Latn", + "Scope": "None", "MacroLanguage": "sh", "Comments": [], "Prefix": [] @@ -670,6 +720,7 @@ ], "Added": "2005-10-16", "SuppressScript": "Latn", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -681,6 +732,7 @@ ], "Added": "2005-10-16", "SuppressScript": "Latn", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -692,6 +744,7 @@ ], "Added": "2005-10-16", "SuppressScript": "Armn", + "Scope": "None", "Comments": [ "see also hyw" ], @@ -704,6 +757,7 @@ "Herero" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -714,6 +768,7 @@ "Interlingua (International Auxiliary Language Association)" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -725,6 +780,7 @@ ], "Added": "2005-10-16", "SuppressScript": "Latn", + "Scope": "None", "MacroLanguage": "ms", "Comments": [], "Prefix": [] @@ -737,6 +793,7 @@ "Occidental" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -747,6 +804,7 @@ "Igbo" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -758,6 +816,7 @@ "Nuosu" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -780,6 +839,7 @@ ], "Added": "2005-10-16", "SuppressScript": "Latn", + "Scope": "None", "MacroLanguage": "ms", "Deprecated": "1989-01-01", "Comments": [], @@ -793,6 +853,7 @@ "Ido" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -804,6 +865,7 @@ ], "Added": "2005-10-16", "SuppressScript": "Latn", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -815,6 +877,7 @@ ], "Added": "2005-10-16", "SuppressScript": "Latn", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -837,6 +900,7 @@ ], "Added": "2005-10-16", "SuppressScript": "Hebr", + "Scope": "None", "Deprecated": "1989-01-01", "Comments": [], "Prefix": [], @@ -850,6 +914,7 @@ ], "Added": "2005-10-16", "SuppressScript": "Jpan", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -860,6 +925,7 @@ "Yiddish" ], "Added": "2005-10-16", + "Scope": "None", "Deprecated": "1989-01-01", "Comments": [], "Prefix": [], @@ -872,6 +938,7 @@ "Javanese" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -882,6 +949,7 @@ "Javanese" ], "Added": "2005-10-16", + "Scope": "None", "Deprecated": "2001-08-13", "Comments": [ "published by error in Table 1 of ISO 639:1988" @@ -897,6 +965,7 @@ ], "Added": "2005-10-16", "SuppressScript": "Geor", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -919,6 +988,7 @@ "Gikuyu" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -930,6 +1000,7 @@ "Kwanyama" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -941,6 +1012,7 @@ ], "Added": "2005-10-16", "SuppressScript": "Cyrl", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -953,6 +1025,7 @@ ], "Added": "2005-10-16", "SuppressScript": "Latn", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -965,6 +1038,7 @@ ], "Added": "2005-10-16", "SuppressScript": "Khmr", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -976,6 +1050,7 @@ ], "Added": "2005-10-16", "SuppressScript": "Knda", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -987,6 +1062,7 @@ ], "Added": "2005-10-16", "SuppressScript": "Kore", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -1008,6 +1084,7 @@ "Kashmiri" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -1040,6 +1117,7 @@ "Cornish" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -1051,6 +1129,7 @@ "Kyrgyz" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -1062,6 +1141,7 @@ ], "Added": "2005-10-16", "SuppressScript": "Latn", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -1074,6 +1154,7 @@ ], "Added": "2005-10-16", "SuppressScript": "Latn", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -1085,6 +1166,7 @@ "Luganda" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -1097,6 +1179,7 @@ "Limburgish" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -1108,6 +1191,7 @@ ], "Added": "2005-10-16", "SuppressScript": "Latn", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -1119,6 +1203,7 @@ ], "Added": "2005-10-16", "SuppressScript": "Laoo", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -1130,6 +1215,7 @@ ], "Added": "2005-10-16", "SuppressScript": "Latn", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -1140,6 +1226,7 @@ "Luba-Katanga" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -1175,6 +1262,7 @@ ], "Added": "2005-10-16", "SuppressScript": "Latn", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -1185,6 +1273,7 @@ "Maori" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -1196,6 +1285,7 @@ ], "Added": "2005-10-16", "SuppressScript": "Cyrl", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -1207,6 +1297,7 @@ ], "Added": "2005-10-16", "SuppressScript": "Mlym", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -1230,6 +1321,7 @@ ], "Added": "2005-10-16", "SuppressScript": "Latn", + "Scope": "None", "Deprecated": "2008-11-22", "Comments": [], "Prefix": [], @@ -1243,6 +1335,7 @@ ], "Added": "2005-10-16", "SuppressScript": "Deva", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -1266,6 +1359,7 @@ ], "Added": "2005-10-16", "SuppressScript": "Latn", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -1277,6 +1371,7 @@ ], "Added": "2005-10-16", "SuppressScript": "Mymr", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -1288,6 +1383,7 @@ ], "Added": "2005-10-16", "SuppressScript": "Latn", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -1299,6 +1395,7 @@ ], "Added": "2005-10-16", "SuppressScript": "Latn", + "Scope": "None", "MacroLanguage": "no", "Comments": [], "Prefix": [] @@ -1311,6 +1408,7 @@ ], "Added": "2005-10-16", "SuppressScript": "Latn", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -1333,6 +1431,7 @@ "Ndonga" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -1345,6 +1444,7 @@ ], "Added": "2005-10-16", "SuppressScript": "Latn", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -1356,6 +1456,7 @@ ], "Added": "2005-10-16", "SuppressScript": "Latn", + "Scope": "None", "MacroLanguage": "no", "Comments": [], "Prefix": [] @@ -1380,6 +1481,7 @@ ], "Added": "2005-10-16", "SuppressScript": "Latn", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -1391,6 +1493,7 @@ "Navaho" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -1404,6 +1507,7 @@ ], "Added": "2005-10-16", "SuppressScript": "Latn", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -1414,6 +1518,7 @@ "Occitan (post 1500)" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -1461,6 +1566,7 @@ "Ossetic" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -1473,6 +1579,7 @@ ], "Added": "2005-10-16", "SuppressScript": "Guru", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -1483,6 +1590,7 @@ "Pali" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -1494,6 +1602,7 @@ ], "Added": "2005-10-16", "SuppressScript": "Latn", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -1518,6 +1627,7 @@ ], "Added": "2005-10-16", "SuppressScript": "Latn", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -1541,6 +1651,7 @@ ], "Added": "2005-10-16", "SuppressScript": "Latn", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -1552,6 +1663,7 @@ ], "Added": "2005-10-16", "SuppressScript": "Latn", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -1565,6 +1677,7 @@ ], "Added": "2005-10-16", "SuppressScript": "Latn", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -1576,6 +1689,7 @@ ], "Added": "2005-10-16", "SuppressScript": "Cyrl", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -1587,6 +1701,7 @@ ], "Added": "2005-10-16", "SuppressScript": "Latn", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -1619,6 +1734,7 @@ "Sindhi" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -1629,6 +1745,7 @@ "Northern Sami" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -1640,6 +1757,7 @@ ], "Added": "2005-10-16", "SuppressScript": "Latn", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -1665,6 +1783,7 @@ ], "Added": "2005-10-16", "SuppressScript": "Sinh", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -1676,6 +1795,7 @@ ], "Added": "2005-10-16", "SuppressScript": "Latn", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -1687,6 +1807,7 @@ ], "Added": "2005-10-16", "SuppressScript": "Latn", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -1698,6 +1819,7 @@ ], "Added": "2005-10-16", "SuppressScript": "Latn", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -1708,6 +1830,7 @@ "Shona" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -1719,6 +1842,7 @@ ], "Added": "2005-10-16", "SuppressScript": "Latn", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -1741,6 +1865,7 @@ "Serbian" ], "Added": "2005-10-16", + "Scope": "None", "MacroLanguage": "sh", "Comments": [ "see cnr for Montenegrin" @@ -1755,6 +1880,7 @@ ], "Added": "2005-10-16", "SuppressScript": "Latn", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -1766,6 +1892,7 @@ ], "Added": "2005-10-16", "SuppressScript": "Latn", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -1776,6 +1903,7 @@ "Sundanese" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -1787,6 +1915,7 @@ ], "Added": "2005-10-16", "SuppressScript": "Latn", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -1810,6 +1939,7 @@ ], "Added": "2005-10-16", "SuppressScript": "Taml", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -1821,6 +1951,7 @@ ], "Added": "2005-10-16", "SuppressScript": "Telu", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -1831,6 +1962,7 @@ "Tajik" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -1842,6 +1974,7 @@ ], "Added": "2005-10-16", "SuppressScript": "Thai", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -1853,6 +1986,7 @@ ], "Added": "2005-10-16", "SuppressScript": "Ethi", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -1863,6 +1997,7 @@ "Turkmen" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -1874,6 +2009,7 @@ ], "Added": "2005-10-16", "SuppressScript": "Latn", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -1885,6 +2021,7 @@ ], "Added": "2005-10-16", "SuppressScript": "Latn", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -1896,6 +2033,7 @@ ], "Added": "2005-10-16", "SuppressScript": "Latn", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -1907,6 +2045,7 @@ ], "Added": "2005-10-16", "SuppressScript": "Latn", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -1918,6 +2057,7 @@ ], "Added": "2005-10-16", "SuppressScript": "Latn", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -1928,6 +2068,7 @@ "Tatar" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -1938,6 +2079,7 @@ "Twi" ], "Added": "2005-10-16", + "Scope": "None", "MacroLanguage": "ak", "Comments": [], "Prefix": [] @@ -1949,6 +2091,7 @@ "Tahitian" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -1960,6 +2103,7 @@ "Uyghur" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -1971,6 +2115,7 @@ ], "Added": "2005-10-16", "SuppressScript": "Cyrl", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -1982,6 +2127,7 @@ ], "Added": "2005-10-16", "SuppressScript": "Arab", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -2004,6 +2150,7 @@ ], "Added": "2005-10-16", "SuppressScript": "Latn", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -2015,6 +2162,7 @@ ], "Added": "2005-10-16", "SuppressScript": "Latn", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -2025,6 +2173,7 @@ "Volap\u00FCk" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -2035,6 +2184,7 @@ "Walloon" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -2045,6 +2195,7 @@ "Wolof" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -2056,6 +2207,7 @@ ], "Added": "2005-10-16", "SuppressScript": "Latn", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -2078,6 +2230,7 @@ "Yoruba" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -2112,6 +2265,7 @@ ], "Added": "2005-10-16", "SuppressScript": "Latn", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -2122,6 +2276,7 @@ "Ghotuo" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -2132,6 +2287,7 @@ "Alumu-Tesu" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -2142,6 +2298,7 @@ "Ari" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -2152,6 +2309,7 @@ "Amal" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -2162,6 +2320,7 @@ "Arb\u00EBresh\u00EB Albanian" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "sq", "Comments": [], "Prefix": [] @@ -2173,6 +2332,7 @@ "Aranadan" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -2183,6 +2343,7 @@ "Ambrak" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -2193,6 +2354,7 @@ "Abu\u0027 Arapesh" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -2203,6 +2365,7 @@ "Arifama-Miniafia" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -2213,6 +2376,7 @@ "Ankave" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -2223,6 +2387,7 @@ "Afade" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -2233,6 +2398,7 @@ "Aramanik" ], "Added": "2009-07-29", + "Scope": "None", "Deprecated": "2015-02-12", "Comments": [], "Prefix": [], @@ -2245,6 +2411,7 @@ "Anamb\u00E9" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -2255,6 +2422,7 @@ "Algerian Saharan Arabic" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "ar", "Comments": [], "Prefix": [] @@ -2266,6 +2434,7 @@ "Par\u00E1 Ar\u00E1ra" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -2276,6 +2445,7 @@ "Eastern Abnaki" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -2286,6 +2456,7 @@ "Aas\u00E1x" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -2296,6 +2467,7 @@ "Arvanitika Albanian" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "sq", "Comments": [], "Prefix": [] @@ -2307,6 +2479,7 @@ "Abau" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -2328,6 +2501,7 @@ "Solong" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -2338,6 +2512,7 @@ "Mandobo Atas" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -2348,6 +2523,7 @@ "Amarasi" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -2358,6 +2534,7 @@ "Ab\u00E9" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -2368,6 +2545,7 @@ "Bankon" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -2378,6 +2556,7 @@ "Ambala Ayta" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -2388,6 +2567,7 @@ "Manide" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -2398,6 +2578,7 @@ "Western Abnaki" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -2408,6 +2589,7 @@ "Abai Sungai" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -2418,6 +2600,7 @@ "Abaga" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -2428,6 +2611,7 @@ "Tajiki Arabic" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "ar", "Comments": [], "Prefix": [] @@ -2439,6 +2623,7 @@ "Abidji" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -2449,6 +2634,7 @@ "Aka-Bea" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -2459,6 +2645,7 @@ "Lampung Nyo" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -2469,6 +2656,7 @@ "Abanyom" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -2479,6 +2667,7 @@ "Abua" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -2489,6 +2678,7 @@ "Abon" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -2499,6 +2689,7 @@ "Abellen Ayta" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -2509,6 +2700,7 @@ "Abaza" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -2519,6 +2711,7 @@ "Abron" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -2529,6 +2722,7 @@ "Ambonese Malay" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -2539,6 +2733,7 @@ "Ambulas" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -2549,6 +2744,7 @@ "Abure" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -2559,6 +2755,7 @@ "Baharna Arabic" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "ar", "Comments": [], "Prefix": [] @@ -2570,6 +2767,7 @@ "Pal" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -2580,6 +2778,7 @@ "Inabaknon" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -2590,6 +2789,7 @@ "Aneme Wake" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -2600,6 +2800,7 @@ "Abui" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -2610,6 +2811,7 @@ "Achagua" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -2620,6 +2822,7 @@ "\u00C1nc\u00E1" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -2630,6 +2833,7 @@ "Gikyode" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -2640,6 +2844,7 @@ "Achinese" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -2650,6 +2855,7 @@ "Saint Lucian Creole French" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -2660,6 +2866,7 @@ "Acoli" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -2670,6 +2877,7 @@ "Aka-Cari" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -2680,6 +2888,7 @@ "Aka-Kora" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -2690,6 +2899,7 @@ "Akar-Bale" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -2700,6 +2910,7 @@ "Mesopotamian Arabic" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "ar", "Comments": [], "Prefix": [] @@ -2711,6 +2922,7 @@ "Achang" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -2721,6 +2933,7 @@ "Eastern Acipa" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -2731,6 +2944,7 @@ "Ta\u0027izzi-Adeni Arabic" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "ar", "Comments": [], "Prefix": [] @@ -2742,6 +2956,7 @@ "Achi" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -2752,6 +2967,7 @@ "Acro\u00E1" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -2762,6 +2978,7 @@ "Achterhoeks" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -2772,6 +2989,7 @@ "Achuar-Shiwiar" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -2782,6 +3000,7 @@ "Achumawi" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -2792,6 +3011,7 @@ "Hijazi Arabic" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "ar", "Comments": [], "Prefix": [] @@ -2803,6 +3023,7 @@ "Omani Arabic" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "ar", "Comments": [], "Prefix": [] @@ -2814,6 +3035,7 @@ "Cypriot Arabic" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "ar", "Comments": [], "Prefix": [] @@ -2825,6 +3047,7 @@ "Acheron" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -2835,6 +3058,7 @@ "Adangme" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -2845,6 +3069,7 @@ "Atauran" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -2856,6 +3081,7 @@ "Dzodinka" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -2866,6 +3092,7 @@ "Adele" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -2876,6 +3103,7 @@ "Dhofari Arabic" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "ar", "Comments": [], "Prefix": [] @@ -2887,6 +3115,7 @@ "Andegerebinha" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -2897,6 +3126,7 @@ "Adhola" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -2907,6 +3137,7 @@ "Adi" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -2917,6 +3148,7 @@ "Adioukrou" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -2927,6 +3159,7 @@ "Galo" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -2937,6 +3170,7 @@ "Adang" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -2947,6 +3181,7 @@ "Abu" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -2957,6 +3192,7 @@ "Adap" ], "Added": "2009-07-29", + "Scope": "None", "Deprecated": "2015-02-12", "Comments": [], "Prefix": [], @@ -2969,6 +3205,7 @@ "Adangbe" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -2979,6 +3216,7 @@ "Adonara" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -2989,6 +3227,7 @@ "Adamorobe Sign Language" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -2999,6 +3238,7 @@ "Adnyamathanha" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -3009,6 +3249,7 @@ "Aduge" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -3019,6 +3260,7 @@ "Amundava" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -3029,6 +3271,7 @@ "Amdo Tibetan" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -3040,6 +3283,7 @@ "Adygei" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -3050,6 +3294,7 @@ "Adzera" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -3060,6 +3305,7 @@ "Areba" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -3070,6 +3316,7 @@ "Tunisian Arabic" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "ar", "Comments": [], "Prefix": [] @@ -3081,6 +3328,7 @@ "Saidi Arabic" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "ar", "Comments": [], "Prefix": [] @@ -3092,6 +3340,7 @@ "Argentine Sign Language" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -3103,6 +3352,7 @@ "Northeast Pashayi" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -3113,6 +3363,7 @@ "Haeke" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -3123,6 +3374,7 @@ "Ambele" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -3133,6 +3385,7 @@ "Arem" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -3143,6 +3396,7 @@ "Armenian Sign Language" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -3153,6 +3407,7 @@ "Aer" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -3163,6 +3418,7 @@ "Eastern Arrernte" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -3173,6 +3429,7 @@ "Alsea" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -3183,6 +3440,7 @@ "Akeu" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -3193,6 +3451,7 @@ "Ambakich" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -3203,6 +3462,7 @@ "Amele" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -3213,6 +3473,7 @@ "Aeka" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -3234,6 +3495,7 @@ "Gulf Arabic" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "ar", "Comments": [], "Prefix": [] @@ -3245,6 +3507,7 @@ "Andai" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -3255,6 +3518,7 @@ "Putukwam" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -3265,6 +3529,7 @@ "Afghan Sign Language" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -3275,6 +3540,7 @@ "Afrihili" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -3286,6 +3552,7 @@ "Chini" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -3296,6 +3563,7 @@ "Nanubae" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -3306,6 +3574,7 @@ "Defaka" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -3316,6 +3585,7 @@ "Eloyi" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -3326,6 +3596,7 @@ "Tapei" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -3336,6 +3607,7 @@ "Afro-Seminole Creole" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -3346,6 +3618,7 @@ "Afitti" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -3356,6 +3629,7 @@ "Awutu" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -3366,6 +3640,7 @@ "Obokuitai" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -3376,6 +3651,7 @@ "Aguano" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -3386,6 +3662,7 @@ "Legbo" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -3396,6 +3673,7 @@ "Agatu" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -3406,6 +3684,7 @@ "Agarabi" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -3416,6 +3695,7 @@ "Angal" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -3426,6 +3706,7 @@ "Arguni" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -3436,6 +3717,7 @@ "Angor" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -3446,6 +3728,7 @@ "Ngelima" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -3456,6 +3739,7 @@ "Agariya" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -3466,6 +3750,7 @@ "Argobba" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -3476,6 +3761,7 @@ "Isarog Agta" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -3486,6 +3772,7 @@ "Fembe" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -3496,6 +3783,7 @@ "Angaataha" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -3506,6 +3794,7 @@ "Agutaynen" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -3516,6 +3805,7 @@ "Tainae" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -3526,6 +3816,7 @@ "Paranan" ], "Added": "2009-07-29", + "Scope": "None", "Deprecated": "2010-03-11", "Comments": [ "see apf, prf" @@ -3539,6 +3830,7 @@ "Aghem" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -3549,6 +3841,7 @@ "Aguaruna" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -3559,6 +3852,7 @@ "Esimbi" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -3569,6 +3863,7 @@ "Central Cagayan Agta" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -3579,6 +3874,7 @@ "Aguacateco" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -3589,6 +3885,7 @@ "Remontado Dumagat" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -3599,6 +3896,7 @@ "Kahua" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -3609,6 +3907,7 @@ "Aghul" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -3619,6 +3918,7 @@ "Southern Alta" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -3629,6 +3929,7 @@ "Mt. Iriga Agta" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -3639,6 +3940,7 @@ "Ahanta" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -3649,6 +3951,7 @@ "Axamb" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -3659,6 +3962,7 @@ "Qimant" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -3669,6 +3973,7 @@ "Aghu" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -3679,6 +3984,7 @@ "Tiagbamrin Aizi" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -3689,6 +3995,7 @@ "Akha" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -3699,6 +4006,7 @@ "Igo" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -3709,6 +4017,7 @@ "Mobumrin Aizi" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -3719,6 +4028,7 @@ "\u00C0h\u00E0n" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -3729,6 +4039,7 @@ "Ahom" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -3739,6 +4050,7 @@ "Aproumu Aizi" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -3749,6 +4061,7 @@ "Ahirani" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -3759,6 +4072,7 @@ "Ashe" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -3769,6 +4083,7 @@ "Ahtena" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -3779,6 +4094,7 @@ "Arosi" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -3789,6 +4105,7 @@ "Ainu (China)" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -3799,6 +4116,7 @@ "Ainbai" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -3809,6 +4127,7 @@ "Alngith" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -3819,6 +4138,7 @@ "Amara" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -3829,6 +4149,7 @@ "Agi" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -3839,6 +4160,7 @@ "Antigua and Barbuda Creole English" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -3849,6 +4171,7 @@ "Ai-Cham" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -3859,6 +4182,7 @@ "Assyrian Neo-Aramaic" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "syr", "Comments": [], "Prefix": [] @@ -3870,6 +4194,7 @@ "Lishanid Noshan" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -3880,6 +4205,7 @@ "Ake" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -3890,6 +4216,7 @@ "Aimele" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -3900,6 +4227,7 @@ "Aimol" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -3910,6 +4238,7 @@ "Ainu (Japan)" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -3920,6 +4249,7 @@ "Aiton" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -3930,6 +4260,7 @@ "Burumakok" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -3940,6 +4271,7 @@ "Aimaq" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -3950,6 +4282,7 @@ "Airoran" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -3960,6 +4293,7 @@ "Nataoran Amis" ], "Added": "2009-07-29", + "Scope": "None", "Deprecated": "2019-04-16", "Comments": [ "see ami, szy" @@ -3973,6 +4307,7 @@ "Arikem" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -3983,6 +4318,7 @@ "Aari" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -3993,6 +4329,7 @@ "Aighon" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -4003,6 +4340,7 @@ "Ali" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -4013,6 +4351,7 @@ "Aja (South Sudan)" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -4023,6 +4362,7 @@ "Aja (Benin)" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -4033,6 +4373,7 @@ "Aji\u00EB" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -4043,6 +4384,7 @@ "Andajin" ], "Added": "2012-08-12", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -4053,6 +4395,7 @@ "South Levantine Arabic" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "ar", "Deprecated": "2023-03-17", "Comments": [], @@ -4066,6 +4409,7 @@ "Algerian Jewish Sign Language" ], "Added": "2022-02-25", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -4076,6 +4420,7 @@ "Judeo-Tunisian Arabic" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "jrb", "Deprecated": "2022-02-25", "Comments": [], @@ -4089,6 +4434,7 @@ "Judeo-Moroccan Arabic" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "jrb", "Comments": [], "Prefix": [] @@ -4100,6 +4446,7 @@ "Ajawa" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -4110,6 +4457,7 @@ "Amri Karbi" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -4120,6 +4468,7 @@ "Batak Angkola" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -4130,6 +4479,7 @@ "Mpur" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -4140,6 +4490,7 @@ "Ukpet-Ehom" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -4150,6 +4501,7 @@ "Akawaio" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -4160,6 +4512,7 @@ "Akpa" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -4170,6 +4523,7 @@ "Anakalangu" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -4180,6 +4534,7 @@ "Angal Heneng" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -4190,6 +4545,7 @@ "Aiome" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -4200,6 +4556,7 @@ "Aka-Jeru" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -4210,6 +4567,7 @@ "Akkadian" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -4220,6 +4578,7 @@ "Aklanon" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -4230,6 +4589,7 @@ "Aka-Bo" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -4240,6 +4600,7 @@ "Akurio" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -4250,6 +4611,7 @@ "Siwu" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -4260,6 +4622,7 @@ "Ak" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -4270,6 +4633,7 @@ "Araki" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -4280,6 +4644,7 @@ "Akaselem" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -4290,6 +4655,7 @@ "Akolet" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -4300,6 +4666,7 @@ "Akum" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -4310,6 +4677,7 @@ "Akhvakh" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -4320,6 +4688,7 @@ "Akwa" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -4330,6 +4699,7 @@ "Aka-Kede" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -4340,6 +4710,7 @@ "Aka-Kol" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -4350,6 +4721,7 @@ "Alabama" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -4360,6 +4732,7 @@ "Alago" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -4370,6 +4743,7 @@ "Qawasqar" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -4380,6 +4754,7 @@ "Alladian" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -4390,6 +4765,7 @@ "Aleut" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -4400,6 +4776,7 @@ "Alege" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -4421,6 +4798,7 @@ "Alawa" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -4431,6 +4809,7 @@ "Amaimon" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -4441,6 +4820,7 @@ "Alangan" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -4451,6 +4831,7 @@ "Alak" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -4461,6 +4842,7 @@ "Allar" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -4471,6 +4853,7 @@ "Amblong" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -4481,6 +4864,7 @@ "Gheg Albanian" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "sq", "Comments": [], "Prefix": [] @@ -4492,6 +4876,7 @@ "Larike-Wakasihu" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -4502,6 +4887,7 @@ "Alune" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -4512,6 +4898,7 @@ "Algonquin" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -4522,6 +4909,7 @@ "Alutor" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -4532,6 +4920,7 @@ "Tosk Albanian" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "sq", "Comments": [], "Prefix": [] @@ -4543,6 +4932,7 @@ "Southern Altai" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -4553,6 +4943,7 @@ "\u0027Are\u0027are" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -4575,6 +4966,7 @@ "Wanbasana" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -4585,6 +4977,7 @@ "Amol" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -4595,6 +4988,7 @@ "Alyawarr" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -4605,6 +4999,7 @@ "Alur" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -4615,6 +5010,7 @@ "Amanay\u00E9" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -4625,6 +5021,7 @@ "Ambo" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -4635,6 +5032,7 @@ "Amahuaca" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -4645,6 +5043,7 @@ "Yanesha\u0027" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -4655,6 +5054,7 @@ "Hamer-Banna" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -4665,6 +5065,7 @@ "Amurdak" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -4675,6 +5076,7 @@ "Amis" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -4685,6 +5087,7 @@ "Amdang" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -4695,6 +5098,7 @@ "Ambai" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -4705,6 +5109,7 @@ "War-Jaintia" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -4715,6 +5120,7 @@ "Ama (Papua New Guinea)" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -4725,6 +5131,7 @@ "Amanab" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -4735,6 +5142,7 @@ "Amo" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -4745,6 +5153,7 @@ "Alamblak" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -4755,6 +5164,7 @@ "Amahai" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -4765,6 +5175,7 @@ "Amarakaeri" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -4775,6 +5186,7 @@ "Southern Amami-Oshima" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -4785,6 +5197,7 @@ "Amto" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -4795,6 +5208,7 @@ "Guerrero Amuzgo" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -4805,6 +5219,7 @@ "Ambelau" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -4815,6 +5230,7 @@ "Western Neo-Aramaic" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -4825,6 +5241,7 @@ "Anmatyerre" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -4835,6 +5252,7 @@ "Ami" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -4845,6 +5263,7 @@ "Atampaya" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -4855,6 +5274,7 @@ "Andaqui" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -4865,6 +5285,7 @@ "Andoa" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -4875,6 +5296,7 @@ "Ngas" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -4885,6 +5307,7 @@ "Ansus" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -4895,6 +5318,7 @@ "X\u00E2r\u00E2c\u00F9\u00F9" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -4905,6 +5329,7 @@ "Animere" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -4915,6 +5340,7 @@ "Old English (ca. 450-1100)" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -4925,6 +5351,7 @@ "Nend" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -4935,6 +5362,7 @@ "Andi" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -4945,6 +5373,7 @@ "Anor" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -4955,6 +5384,7 @@ "Goemai" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -4965,6 +5395,7 @@ "Anu-Hkongso Chin" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -4975,6 +5406,7 @@ "Anal" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -4985,6 +5417,7 @@ "Obolo" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -4995,6 +5428,7 @@ "Andoque" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -5005,6 +5439,7 @@ "Angika" ], "Added": "2006-03-08", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -5015,6 +5450,7 @@ "Jarawa (India)" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -5025,6 +5461,7 @@ "Andh" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -5035,6 +5472,7 @@ "Anserma" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -5046,6 +5484,7 @@ "Antikarinya" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -5056,6 +5495,7 @@ "Anuak" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -5066,6 +5506,7 @@ "Denya" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -5076,6 +5517,7 @@ "Anaang" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -5086,6 +5528,7 @@ "Andra-Hus" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -5096,6 +5539,7 @@ "Anyin" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -5106,6 +5550,7 @@ "Anem" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -5116,6 +5561,7 @@ "Angolar" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -5126,6 +5572,7 @@ "Abom" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -5136,6 +5583,7 @@ "Pemon" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -5146,6 +5594,7 @@ "Andarum" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -5156,6 +5605,7 @@ "Angal Enen" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -5166,6 +5616,7 @@ "Bragat" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -5176,6 +5627,7 @@ "Angoram" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -5186,6 +5638,7 @@ "Arma" ], "Added": "2009-07-29", + "Scope": "None", "Deprecated": "2020-03-28", "Comments": [], "Prefix": [] @@ -5197,6 +5650,7 @@ "Anindilyakwa" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -5207,6 +5661,7 @@ "Mufian" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -5217,6 +5672,7 @@ "Arh\u00F6" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -5227,6 +5683,7 @@ "Alor" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -5237,6 +5694,7 @@ "\u00D6mie" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -5247,6 +5705,7 @@ "Bumbita Arapesh" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -5257,6 +5716,7 @@ "Aore" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -5267,6 +5727,7 @@ "Taikat" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -5278,6 +5739,7 @@ "A\u0027tong" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -5288,6 +5750,7 @@ "A\u0027ou" ], "Added": "2012-08-12", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -5298,6 +5761,7 @@ "Atorada" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -5308,6 +5772,7 @@ "Uab Meto" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -5329,6 +5794,7 @@ "Sa\u0027a" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -5339,6 +5805,7 @@ "Levantine Arabic" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "ar", "Comments": [], "Prefix": [] @@ -5350,6 +5817,7 @@ "Sudanese Arabic" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "ar", "Comments": [], "Prefix": [] @@ -5361,6 +5829,7 @@ "Bukiyip" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -5371,6 +5840,7 @@ "Pahanan Agta" ], "Added": "2010-03-11", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -5381,6 +5851,7 @@ "Ampanang" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -5391,6 +5862,7 @@ "Athpariya" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -5401,6 +5873,7 @@ "Apiak\u00E1" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -5411,6 +5884,7 @@ "Jicarilla Apache" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -5421,6 +5895,7 @@ "Kiowa Apache" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -5431,6 +5906,7 @@ "Lipan Apache" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -5441,6 +5917,7 @@ "Mescalero-Chiricahua Apache" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -5451,6 +5928,7 @@ "Apinay\u00E9" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -5461,6 +5939,7 @@ "Ambul" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -5471,6 +5950,7 @@ "Apma" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -5481,6 +5961,7 @@ "A-Pucikwar" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -5491,6 +5972,7 @@ "Arop-Lokep" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -5501,6 +5983,7 @@ "Arop-Sissano" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -5511,6 +5994,7 @@ "Apatani" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -5521,6 +6005,7 @@ "Apurin\u00E3" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -5531,6 +6016,7 @@ "Alapmunte" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -5541,6 +6027,7 @@ "Western Apache" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -5551,6 +6038,7 @@ "Aputai" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -5561,6 +6049,7 @@ "Apala\u00ED" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -5571,6 +6060,7 @@ "Safeyoka" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -5592,6 +6082,7 @@ "Archi" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -5602,6 +6093,7 @@ "Ampari Dogon" ], "Added": "2011-08-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -5612,6 +6104,7 @@ "Arigidi" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -5622,6 +6115,7 @@ "Aninka" ], "Added": "2021-02-20", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -5643,6 +6137,7 @@ "Atohwaim" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -5653,6 +6148,7 @@ "Northern Alta" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -5663,6 +6159,7 @@ "Atakapa" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -5673,6 +6170,7 @@ "Arh\u00E2" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -5683,6 +6181,7 @@ "Angait\u00E9" ], "Added": "2014-02-28", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -5693,6 +6192,7 @@ "Akuntsu" ], "Added": "2010-03-11", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -5703,6 +6203,7 @@ "Standard Arabic" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "ar", "Comments": [], "Prefix": [] @@ -5715,6 +6216,7 @@ "Imperial Aramaic (700-300 BCE)" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -5725,6 +6227,7 @@ "Arabana" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -5735,6 +6238,7 @@ "Western Arrarnta" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -5745,6 +6249,7 @@ "Arhuaco" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -5755,6 +6260,7 @@ "Arikara" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -5765,6 +6271,7 @@ "Arapaso" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -5775,6 +6282,7 @@ "Arikap\u00FA" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -5785,6 +6293,7 @@ "Arabela" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -5796,6 +6305,7 @@ "Mapuche" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -5806,6 +6316,7 @@ "Araona" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -5816,6 +6327,7 @@ "Arapaho" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -5826,6 +6338,7 @@ "Algerian Arabic" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "ar", "Comments": [], "Prefix": [] @@ -5837,6 +6350,7 @@ "Karo (Brazil)" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -5847,6 +6361,7 @@ "Najdi Arabic" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "ar", "Comments": [], "Prefix": [] @@ -5870,6 +6385,7 @@ "Araw\u00E1" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -5880,6 +6396,7 @@ "Arbore" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -5890,6 +6407,7 @@ "Arawak" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -5900,6 +6418,7 @@ "Aru\u00E1 (Rodonia State)" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -5910,6 +6429,7 @@ "Moroccan Arabic" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "ar", "Comments": [], "Prefix": [] @@ -5921,6 +6441,7 @@ "Egyptian Arabic" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "ar", "Comments": [], "Prefix": [] @@ -5932,6 +6453,7 @@ "Asu (Tanzania)" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -5943,6 +6465,7 @@ "Nakoda Assiniboine" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -5953,6 +6476,7 @@ "Casuarina Coast Asmat" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -5963,6 +6487,7 @@ "Asas" ], "Added": "2009-07-29", + "Scope": "None", "Deprecated": "2019-04-16", "Comments": [], "Prefix": [], @@ -5975,6 +6500,7 @@ "American Sign Language" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -5986,6 +6512,7 @@ "Australian Sign Language" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -5996,6 +6523,7 @@ "Cishingini" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -6006,6 +6534,7 @@ "Abishira" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -6016,6 +6545,7 @@ "Buruwai" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -6026,6 +6556,7 @@ "Sari" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -6036,6 +6567,7 @@ "Ashkun" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -6046,6 +6578,7 @@ "Asilulu" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -6056,6 +6589,7 @@ "Xing\u00FA Asurin\u00ED" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -6066,6 +6600,7 @@ "Dano" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -6076,6 +6611,7 @@ "Algerian Sign Language" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -6086,6 +6622,7 @@ "Austrian Sign Language" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -6096,6 +6633,7 @@ "Asuri" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -6106,6 +6644,7 @@ "Ipulo" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -6119,6 +6658,7 @@ "Leonese" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -6129,6 +6669,7 @@ "Tocantins Asurini" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -6139,6 +6680,7 @@ "Asoa" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -6149,6 +6691,7 @@ "Australian Aborigines Sign Language" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -6159,6 +6702,7 @@ "Muratayak" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -6169,6 +6713,7 @@ "Yaosakor Asmat" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -6179,6 +6724,7 @@ "As" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -6189,6 +6735,7 @@ "Pele-Ata" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -6199,6 +6746,7 @@ "Zaiwa" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -6209,6 +6757,7 @@ "Atsahuaca" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -6219,6 +6768,7 @@ "Ata Manobo" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -6229,6 +6779,7 @@ "Atemble" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -6239,6 +6790,7 @@ "Ivbie North-Okpela-Arhe" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -6260,6 +6812,7 @@ "Atti\u00E9" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -6271,6 +6824,7 @@ "Nehirowimowin" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -6281,6 +6835,7 @@ "Ati" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -6291,6 +6846,7 @@ "Mt. Iraya Agta" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -6301,6 +6857,7 @@ "Ata" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -6311,6 +6868,7 @@ "Ashtiani" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -6321,6 +6879,7 @@ "Atong (Cameroon)" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -6331,6 +6890,7 @@ "Pudtol Atta" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -6341,6 +6901,7 @@ "Aralle-Tabulahan" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -6351,6 +6912,7 @@ "Waimiri-Atroari" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -6361,6 +6923,7 @@ "Gros Ventre" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -6371,6 +6934,7 @@ "Pamplona Atta" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -6381,6 +6945,7 @@ "Reel" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -6391,6 +6956,7 @@ "Northern Altai" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -6401,6 +6967,7 @@ "Atsugewi" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -6411,6 +6978,7 @@ "Arutani" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -6421,6 +6989,7 @@ "Aneityum" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -6431,6 +7000,7 @@ "Arta" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -6441,6 +7011,7 @@ "Asumboa" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -6451,6 +7022,7 @@ "Alugu" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -6461,6 +7033,7 @@ "Waorani" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -6471,6 +7044,7 @@ "Anuta" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -6481,6 +7055,7 @@ "\u01C2Kx\u02BCau\u01C1\u02BCein" ], "Added": "2009-07-29", + "Scope": "None", "Deprecated": "2015-02-12", "Comments": [], "Prefix": [], @@ -6504,6 +7079,7 @@ "Aguna" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -6514,6 +7090,7 @@ "Aushi" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -6524,6 +7101,7 @@ "Anuki" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -6534,6 +7112,7 @@ "Awjilah" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -6544,6 +7123,7 @@ "Heyo" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -6554,6 +7134,7 @@ "Aulua" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -6564,6 +7145,7 @@ "Asu (Nigeria)" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -6574,6 +7156,7 @@ "Molmo One" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -6584,6 +7167,7 @@ "Auyokawa" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -6594,6 +7178,7 @@ "Makayam" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -6605,6 +7190,7 @@ "Korur" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -6615,6 +7201,7 @@ "Aruek" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -6636,6 +7223,7 @@ "Austral" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -6646,6 +7234,7 @@ "Auye" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -6656,6 +7245,7 @@ "Awyi" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -6666,6 +7256,7 @@ "Aur\u00E1" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -6676,6 +7267,7 @@ "Awiyaana" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -6686,6 +7278,7 @@ "Uzbeki Arabic" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "ar", "Comments": [], "Prefix": [] @@ -6697,6 +7290,7 @@ "Avau" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -6707,6 +7301,7 @@ "Alviri-Vidari" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -6717,6 +7312,7 @@ "Avikam" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -6727,6 +7323,7 @@ "Kotava" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -6737,6 +7334,7 @@ "Eastern Egyptian Bedawi Arabic" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "ar", "Comments": [], "Prefix": [] @@ -6748,6 +7346,7 @@ "Angkamuthi" ], "Added": "2012-08-12", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -6758,6 +7357,7 @@ "Avatime" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -6768,6 +7368,7 @@ "Agavotaguerra" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -6778,6 +7379,7 @@ "Aushiri" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -6788,6 +7390,7 @@ "Au" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -6798,6 +7401,7 @@ "Avokaya" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -6808,6 +7412,7 @@ "Av\u00E1-Canoeiro" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -6818,6 +7423,7 @@ "Awadhi" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -6828,6 +7434,7 @@ "Awa (Papua New Guinea)" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -6838,6 +7445,7 @@ "Cicipu" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -6859,6 +7467,7 @@ "Awet\u00ED" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -6869,6 +7478,7 @@ "Anguthimri" ], "Added": "2012-08-12", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -6879,6 +7489,7 @@ "Awbono" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -6889,6 +7500,7 @@ "Aekyom" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -6899,6 +7511,7 @@ "Awabakal" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -6909,6 +7522,7 @@ "Arawum" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -6919,6 +7533,7 @@ "Awngi" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -6929,6 +7544,7 @@ "Awak" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -6939,6 +7555,7 @@ "Awera" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -6949,6 +7566,7 @@ "South Awyu" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -6959,6 +7577,7 @@ "Arawet\u00E9" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -6969,6 +7588,7 @@ "Central Awyu" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -6979,6 +7599,7 @@ "Jair Awyu" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -6989,6 +7610,7 @@ "Awun" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -6999,6 +7621,7 @@ "Awara" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -7009,6 +7632,7 @@ "Edera Awyu" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -7019,6 +7643,7 @@ "Abipon" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -7029,6 +7654,7 @@ "Ayerrerenge" ], "Added": "2012-08-12", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -7039,6 +7665,7 @@ "Mato Grosso Ar\u00E1ra" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -7049,6 +7676,7 @@ "Yaka (Central African Republic)" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -7059,6 +7687,7 @@ "Lower Southern Aranda" ], "Added": "2013-09-10", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -7069,6 +7698,7 @@ "Middle Armenian" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -7079,6 +7709,7 @@ "X\u00E2r\u00E2gur\u00E8" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -7089,6 +7720,7 @@ "Awar" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -7099,6 +7731,7 @@ "Ayizo Gbe" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -7109,6 +7742,7 @@ "Southern Aymara" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "ay", "Comments": [], "Prefix": [] @@ -7120,6 +7754,7 @@ "Ayabadhu" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -7130,6 +7765,7 @@ "Ayere" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -7140,6 +7776,7 @@ "Ginyanga" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -7150,6 +7787,7 @@ "Hadrami Arabic" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "ar", "Comments": [], "Prefix": [] @@ -7161,6 +7799,7 @@ "Leyigha" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -7171,6 +7810,7 @@ "Akuku" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -7181,6 +7821,7 @@ "Libyan Arabic" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "ar", "Comments": [], "Prefix": [] @@ -7192,6 +7833,7 @@ "Sanaani Arabic" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "ar", "Comments": [], "Prefix": [] @@ -7203,6 +7845,7 @@ "Ayoreo" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -7213,6 +7856,7 @@ "North Mesopotamian Arabic" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "ar", "Comments": [], "Prefix": [] @@ -7224,6 +7868,7 @@ "Ayi (Papua New Guinea)" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -7234,6 +7879,7 @@ "Central Aymara" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "ay", "Comments": [], "Prefix": [] @@ -7245,6 +7891,7 @@ "Sorsogon Ayta" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -7255,6 +7902,7 @@ "Magbukun Ayta" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -7265,6 +7913,7 @@ "Ayu" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -7275,6 +7924,7 @@ "Ayi (China)" ], "Added": "2009-07-29", + "Scope": "None", "Deprecated": "2011-08-16", "Comments": [], "Prefix": [], @@ -7287,6 +7937,7 @@ "Tayabas Ayta" ], "Added": "2009-07-29", + "Scope": "None", "Deprecated": "2020-03-28", "Comments": [], "Prefix": [] @@ -7298,6 +7949,7 @@ "Mai Brat" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -7308,6 +7960,7 @@ "Azha" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -7318,6 +7971,7 @@ "South Azerbaijani" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "az", "Comments": [], "Prefix": [] @@ -7340,6 +7994,7 @@ "Eastern Durango Nahuatl" ], "Added": "2012-08-12", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -7350,6 +8005,7 @@ "San Pedro Amuzgos Amuzgo" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -7360,6 +8016,7 @@ "North Azerbaijani" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "az", "Comments": [], "Prefix": [] @@ -7371,6 +8028,7 @@ "Ipalapa Amuzgo" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -7381,6 +8039,7 @@ "Western Durango Nahuatl" ], "Added": "2012-08-12", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -7391,6 +8050,7 @@ "Awing" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -7401,6 +8061,7 @@ "Faire Atta" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -7411,6 +8072,7 @@ "Highland Puebla Nahuatl" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -7421,6 +8083,7 @@ "Babatana" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -7431,6 +8094,7 @@ "Bainouk-Gunyu\u00F1o" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -7441,6 +8105,7 @@ "Badui" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -7462,6 +8127,7 @@ "Bar\u00E9" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -7472,6 +8138,7 @@ "Nubaca" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -7482,6 +8149,7 @@ "Tuki" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -7492,6 +8160,7 @@ "Bahamas Creole English" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -7513,6 +8182,7 @@ "Barakai" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -7534,6 +8204,7 @@ "Balinese" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -7544,6 +8215,7 @@ "Waimaha" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -7554,6 +8226,7 @@ "Bantawa" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -7564,6 +8237,7 @@ "Bavarian" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -7574,6 +8248,7 @@ "Basa (Cameroon)" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -7595,6 +8270,7 @@ "Bada (Nigeria)" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -7605,6 +8281,7 @@ "Vengo" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -7615,6 +8292,7 @@ "Bambili-Bambui" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -7625,6 +8303,7 @@ "Bamun" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -7635,6 +8314,7 @@ "Batuley" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -7645,6 +8325,7 @@ "Tunen" ], "Added": "2009-07-29", + "Scope": "None", "Deprecated": "2012-08-12", "Comments": [ "see nvo, tvu" @@ -7658,6 +8339,7 @@ "Baatonum" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -7668,6 +8350,7 @@ "Barai" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -7678,6 +8361,7 @@ "Batak Toba" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -7688,6 +8372,7 @@ "Bau" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -7698,6 +8383,7 @@ "Bangba" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -7708,6 +8394,7 @@ "Baibai" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -7718,6 +8405,7 @@ "Barama" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -7728,6 +8416,7 @@ "Bugan" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -7738,6 +8427,7 @@ "Barombi" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -7748,6 +8438,7 @@ "Ghom\u00E1l\u00E1\u0027" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -7758,6 +8449,7 @@ "Babanki" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -7768,6 +8460,7 @@ "Bats" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -7778,6 +8471,7 @@ "Babango" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -7788,6 +8482,7 @@ "Uneapa" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -7799,6 +8494,7 @@ "Konab\u00E9r\u00E9" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -7809,6 +8505,7 @@ "West Central Banda" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -7819,6 +8516,7 @@ "Bamali" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -7829,6 +8527,7 @@ "Girawa" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -7839,6 +8538,7 @@ "Bakpinka" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -7849,6 +8549,7 @@ "Mburku" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -7859,6 +8560,7 @@ "Kulung (Nigeria)" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -7869,6 +8571,7 @@ "Karnai" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -7879,6 +8582,7 @@ "Baba" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -7889,6 +8593,7 @@ "Bubia" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -7899,6 +8604,7 @@ "Befang" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -7909,6 +8615,7 @@ "Babalia Creole Arabic" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "ar", "Deprecated": "2020-03-28", "Comments": [], @@ -7921,6 +8628,7 @@ "Central Bai" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -7931,6 +8639,7 @@ "Bainouk-Samik" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -7941,6 +8650,7 @@ "Southern Balochi" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "bal", "Comments": [], "Prefix": [] @@ -7952,6 +8662,7 @@ "North Babar" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -7962,6 +8673,7 @@ "Bamenyam" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -7972,6 +8684,7 @@ "Bamu" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -7982,6 +8695,7 @@ "Baga Pokur" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -7992,6 +8706,7 @@ "Bariai" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -8002,6 +8717,7 @@ "Baoul\u00E9" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -8012,6 +8728,7 @@ "Bardi" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -8022,6 +8739,7 @@ "Bunuba" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -8032,6 +8750,7 @@ "Central Bikol" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "bik", "Comments": [], "Prefix": [] @@ -8043,6 +8762,7 @@ "Bannoni" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -8053,6 +8773,7 @@ "Bali (Nigeria)" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -8063,6 +8784,7 @@ "Kaluli" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -8073,6 +8795,7 @@ "Bali (Democratic Republic of Congo)" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -8083,6 +8806,7 @@ "Bench" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -8093,6 +8817,7 @@ "Babine" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -8103,6 +8828,7 @@ "Kohumono" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -8113,6 +8839,7 @@ "Bendi" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -8123,6 +8850,7 @@ "Awad Bing" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -8133,6 +8861,7 @@ "Shoo-Minda-Nye" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -8143,6 +8872,7 @@ "Bana" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -8153,6 +8883,7 @@ "Bacama" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -8163,6 +8894,7 @@ "Bainouk-Gunyaamolo" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -8173,6 +8905,7 @@ "Bayot" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -8183,6 +8916,7 @@ "Basap" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -8193,6 +8927,7 @@ "Ember\u00E1-Baud\u00F3" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -8203,6 +8938,7 @@ "Bunama" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -8213,6 +8949,7 @@ "Bade" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -8223,6 +8960,7 @@ "Biage" ], "Added": "2010-03-11", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -8233,6 +8971,7 @@ "Bonggi" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -8243,6 +8982,7 @@ "Baka (South Sudan)" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -8253,6 +8993,7 @@ "Burun" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -8264,6 +9005,7 @@ "Bai" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -8274,6 +9016,7 @@ "Budukh" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -8284,6 +9027,7 @@ "Indonesian Bajau" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -8294,6 +9038,7 @@ "Buduma" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -8304,6 +9049,7 @@ "Baldemu" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -8314,6 +9060,7 @@ "Morom" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -8324,6 +9071,7 @@ "Bende" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -8334,6 +9082,7 @@ "Bahnar" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -8344,6 +9093,7 @@ "West Coast Bajau" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -8354,6 +9104,7 @@ "Burunge" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -8364,6 +9115,7 @@ "Bokoto" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "gba", "Comments": [], "Prefix": [] @@ -8375,6 +9127,7 @@ "Oroko" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -8385,6 +9138,7 @@ "Bodo Parja" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -8395,6 +9149,7 @@ "Baham" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -8405,6 +9160,7 @@ "Budong-Budong" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -8415,6 +9171,7 @@ "Bandjalang" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -8425,6 +9182,7 @@ "Badeshi" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -8435,6 +9193,7 @@ "Beaver" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -8445,6 +9204,7 @@ "Bebele" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -8455,6 +9215,7 @@ "Iceve-Maci" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -8465,6 +9226,7 @@ "Bedoanas" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -8475,6 +9237,7 @@ "Byangsi" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -8485,6 +9248,7 @@ "Benabena" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -8495,6 +9259,7 @@ "Belait" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -8505,6 +9270,7 @@ "Biali" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -8515,6 +9281,7 @@ "Bekati\u0027" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -8526,6 +9293,7 @@ "Bedawiyet" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -8536,6 +9304,7 @@ "Bebeli" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -8546,6 +9315,7 @@ "Bemba (Zambia)" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -8556,6 +9326,7 @@ "Beami" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -8566,6 +9337,7 @@ "Besoa" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -8576,6 +9348,7 @@ "Beembe" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -8597,6 +9370,7 @@ "Besme" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -8607,6 +9381,7 @@ "Guiberoua B\u00E9te" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -8617,6 +9392,7 @@ "Blagar" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -8627,6 +9403,7 @@ "Daloa B\u00E9t\u00E9" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -8637,6 +9414,7 @@ "Betawi" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -8647,6 +9425,7 @@ "Jur Modo" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -8657,6 +9436,7 @@ "Beli (Papua New Guinea)" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -8667,6 +9447,7 @@ "Bena (Tanzania)" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -8677,6 +9458,7 @@ "Bari" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -8687,6 +9469,7 @@ "Pauri Bareli" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -8698,6 +9481,7 @@ "Northern Bai" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -8708,6 +9492,7 @@ "Bafut" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -8719,6 +9504,7 @@ "Tena" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -8729,6 +9515,7 @@ "Bofi" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -8739,6 +9526,7 @@ "Busang Kayan" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -8749,6 +9537,7 @@ "Blafe" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -8759,6 +9548,7 @@ "British Sign Language" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -8769,6 +9559,7 @@ "Bafanji" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -8779,6 +9570,7 @@ "Ban Khor Sign Language" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -8789,6 +9581,7 @@ "Banda-Nd\u00E9l\u00E9" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -8799,6 +9592,7 @@ "Mmen" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -8809,6 +9603,7 @@ "Bunak" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -8819,6 +9614,7 @@ "Malba Birifor" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -8829,6 +9625,7 @@ "Beba" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -8839,6 +9636,7 @@ "Badaga" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -8849,6 +9647,7 @@ "Bazigar" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -8859,6 +9658,7 @@ "Southern Bai" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -8869,6 +9669,7 @@ "Balti" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -8879,6 +9680,7 @@ "Gahri" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -8889,6 +9691,7 @@ "Bondo" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -8899,6 +9702,7 @@ "Bantayanon" ], "Added": "2010-03-11", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -8909,6 +9713,7 @@ "Bagheli" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -8919,6 +9724,7 @@ "Mahasu Pahari" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -8929,6 +9735,7 @@ "Gwamhi-Wuri" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -8939,6 +9746,7 @@ "Bobongko" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -8949,6 +9757,7 @@ "Haryanvi" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -8959,6 +9768,7 @@ "Rathwi Bareli" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -8969,6 +9779,7 @@ "Bauria" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -8979,6 +9790,7 @@ "Bangandu" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -8989,6 +9801,7 @@ "Bugun" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -8999,6 +9812,7 @@ "Giangan" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -9009,6 +9823,7 @@ "Bangolan" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -9020,6 +9835,7 @@ "Buxinhua" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -9030,6 +9846,7 @@ "Bo (Laos)" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -9040,6 +9857,7 @@ "Baga Mboteni" ], "Added": "2009-07-29", + "Scope": "None", "Deprecated": "2016-05-30", "Comments": [], "Prefix": [], @@ -9052,6 +9870,7 @@ "Western Balochi" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "bal", "Comments": [], "Prefix": [] @@ -9063,6 +9882,7 @@ "Baga Koga" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -9073,6 +9893,7 @@ "Eastern Balochi" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "bal", "Comments": [], "Prefix": [] @@ -9084,6 +9905,7 @@ "Bagri" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "raj", "Comments": [], "Prefix": [] @@ -9095,6 +9917,7 @@ "Bawm Chin" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -9105,6 +9928,7 @@ "Tagabawa" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -9115,6 +9939,7 @@ "Bughotu" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -9125,6 +9950,7 @@ "Mbongno" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -9135,6 +9961,7 @@ "Warkay-Bipim" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -9145,6 +9972,7 @@ "Bhatri" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -9155,6 +9983,7 @@ "Balkan Gagauz Turkish" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -9165,6 +9994,7 @@ "Benggoi" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -9175,6 +10005,7 @@ "Banggai" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -9185,6 +10016,7 @@ "Bharia" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -9195,6 +10027,7 @@ "Bhili" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -9205,6 +10038,7 @@ "Biga" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -9215,6 +10049,7 @@ "Bhadrawahi" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -9225,6 +10060,7 @@ "Bhaya" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -9235,6 +10071,7 @@ "Odiai" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -9245,6 +10082,7 @@ "Binandere" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -9255,6 +10093,7 @@ "Bukharic" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -9265,6 +10104,7 @@ "Bhilali" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -9275,6 +10115,7 @@ "Bahing" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -9285,6 +10126,7 @@ "Albay Bicolano" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "bik", "Deprecated": "2010-03-11", "Comments": [ @@ -9299,6 +10141,7 @@ "Bimin" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -9309,6 +10152,7 @@ "Bathari" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -9319,6 +10163,7 @@ "Bohtan Neo-Aramaic" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -9329,6 +10174,7 @@ "Bhojpuri" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -9339,6 +10185,7 @@ "Bima" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -9349,6 +10196,7 @@ "Tukang Besi South" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -9359,6 +10207,7 @@ "Bara Malagasy" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "mg", "Comments": [], "Prefix": [] @@ -9370,6 +10219,7 @@ "Buwal" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -9380,6 +10230,7 @@ "Bhattiyali" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -9390,6 +10241,7 @@ "Bhunjia" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -9400,6 +10252,7 @@ "Bahau" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -9410,6 +10263,7 @@ "Biak" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -9420,6 +10274,7 @@ "Bhalay" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -9430,6 +10285,7 @@ "Bhele" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -9440,6 +10296,7 @@ "Bada (Indonesia)" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -9450,6 +10307,7 @@ "Badimaya" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -9461,6 +10319,7 @@ "Bisa" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -9471,6 +10330,7 @@ "Bikaru" ], "Added": "2009-07-29", + "Scope": "None", "Deprecated": "2021-02-20", "Comments": [], "Prefix": [], @@ -9483,6 +10343,7 @@ "Bidiyo" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -9493,6 +10354,7 @@ "Bepour" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -9503,6 +10365,7 @@ "Biafada" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -9513,6 +10376,7 @@ "Biangai" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -9523,6 +10387,7 @@ "Vaghat-Ya-Bijim-Legeri" ], "Added": "2009-07-29", + "Scope": "None", "Deprecated": "2021-02-20", "Comments": [ "see dkg, jbm, tyy" @@ -9547,6 +10412,7 @@ "Bile" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -9557,6 +10423,7 @@ "Bimoba" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -9568,6 +10435,7 @@ "Edo" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -9578,6 +10446,7 @@ "Nai" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -9588,6 +10457,7 @@ "Bila" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -9598,6 +10468,7 @@ "Bipi" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -9608,6 +10479,7 @@ "Bisorio" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -9618,6 +10490,7 @@ "Berinomo" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -9628,6 +10501,7 @@ "Biete" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -9638,6 +10512,7 @@ "Southern Birifor" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -9648,6 +10523,7 @@ "Kol (Cameroon)" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -9658,6 +10534,7 @@ "Bijori" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -9668,6 +10545,7 @@ "Birhor" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -9678,6 +10556,7 @@ "Baloi" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -9688,6 +10567,7 @@ "Budza" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -9698,6 +10578,7 @@ "Banggarla" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -9708,6 +10589,7 @@ "Bariji" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -9718,6 +10600,7 @@ "Bandjigali" ], "Added": "2009-07-29", + "Scope": "None", "Deprecated": "2012-08-12", "Comments": [], "Prefix": [], @@ -9730,6 +10613,7 @@ "Biao-Jiao Mien" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -9740,6 +10624,7 @@ "Barzani Jewish Neo-Aramaic" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -9750,6 +10635,7 @@ "Bidyogo" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -9760,6 +10646,7 @@ "Bahinemo" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -9770,6 +10657,7 @@ "Burji" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -9780,6 +10668,7 @@ "Kanauji" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -9790,6 +10679,7 @@ "Barok" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -9800,6 +10690,7 @@ "Bulu (Papua New Guinea)" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -9810,6 +10701,7 @@ "Bajelani" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -9820,6 +10712,7 @@ "Banjar" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "ms", "Comments": [], "Prefix": [] @@ -9831,6 +10724,7 @@ "Mid-Southern Banda" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -9841,6 +10735,7 @@ "Fanamaket" ], "Added": "2013-09-10", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -9851,6 +10746,7 @@ "Southern Betsimisaraka Malagasy" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "mg", "Deprecated": "2011-08-16", "Comments": [ @@ -9865,6 +10761,7 @@ "Binumarien" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -9875,6 +10772,7 @@ "Bajan" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -9885,6 +10783,7 @@ "Balanta-Ganja" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -9895,6 +10794,7 @@ "Busuu" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -9905,6 +10805,7 @@ "Bedjond" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -9915,6 +10816,7 @@ "Bakw\u00E9" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -9925,6 +10827,7 @@ "Banao Itneg" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -9935,6 +10838,7 @@ "Bayali" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -9945,6 +10849,7 @@ "Baruga" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -9955,6 +10860,7 @@ "Kyak" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -9965,6 +10871,7 @@ "Finallig" ], "Added": "2009-07-29", + "Scope": "None", "Deprecated": "2010-03-11", "Comments": [ "see ebk, obk" @@ -9978,6 +10885,7 @@ "Baka (Cameroon)" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -9989,6 +10897,7 @@ "Talaandig" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -9999,6 +10908,7 @@ "Beeke" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -10009,6 +10919,7 @@ "Buraka" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -10019,6 +10930,7 @@ "Bakoko" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -10029,6 +10941,7 @@ "Baki" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -10039,6 +10952,7 @@ "Pande" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -10049,6 +10963,7 @@ "Brokskat" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -10059,6 +10974,7 @@ "Berik" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -10069,6 +10985,7 @@ "Kom (Cameroon)" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -10079,6 +10996,7 @@ "Bukitan" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -10089,6 +11007,7 @@ "Kwa\u0027" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -10099,6 +11018,7 @@ "Boko (Democratic Republic of Congo)" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -10109,6 +11029,7 @@ "Bakair\u00ED" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -10119,6 +11040,7 @@ "Bakumpai" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -10129,6 +11051,7 @@ "Northern Sorsoganon" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -10139,6 +11062,7 @@ "Boloki" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -10149,6 +11073,7 @@ "Buhid" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -10159,6 +11084,7 @@ "Bekwarra" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -10169,6 +11095,7 @@ "Bekwel" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -10179,6 +11106,7 @@ "Baikeno" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -10189,6 +11117,7 @@ "Bokyi" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -10199,6 +11128,7 @@ "Bungku" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -10209,6 +11139,7 @@ "Siksika" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -10219,6 +11150,7 @@ "Bilua" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -10229,6 +11161,7 @@ "Bella Coola" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -10239,6 +11172,7 @@ "Bolango" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -10249,6 +11183,7 @@ "Balanta-Kentohe" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -10259,6 +11194,7 @@ "Buol" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -10269,6 +11205,7 @@ "Balau" ], "Added": "2009-07-29", + "Scope": "None", "Deprecated": "2021-02-20", "Comments": [], "Prefix": [], @@ -10281,6 +11218,7 @@ "Kuwaa" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -10291,6 +11229,7 @@ "Bolia" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -10301,6 +11240,7 @@ "Bolongan" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -10312,6 +11252,7 @@ "Pa\u0027O" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -10322,6 +11263,7 @@ "Biloxi" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -10332,6 +11274,7 @@ "Beli (South Sudan)" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -10342,6 +11285,7 @@ "Southern Catanduanes Bikol" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "bik", "Comments": [], "Prefix": [] @@ -10353,6 +11297,7 @@ "Anii" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -10363,6 +11308,7 @@ "Blablanga" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -10373,6 +11319,7 @@ "Baluan-Pam" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -10383,6 +11330,7 @@ "Blang" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -10393,6 +11341,7 @@ "Balaesang" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -10403,6 +11352,7 @@ "Tai Dam" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -10414,6 +11364,7 @@ "Bolo" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -10424,6 +11375,7 @@ "Balangao" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -10434,6 +11386,7 @@ "Mag-Indi Ayta" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -10444,6 +11397,7 @@ "Notre" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -10454,6 +11408,7 @@ "Balantak" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -10464,6 +11419,7 @@ "Lame" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -10474,6 +11430,7 @@ "Bembe" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -10484,6 +11441,7 @@ "Biem" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -10494,6 +11452,7 @@ "Baga Manduri" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -10504,6 +11463,7 @@ "Limassa" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -10514,6 +11474,7 @@ "Bom-Kim" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -10524,6 +11485,7 @@ "Bamwe" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -10534,6 +11496,7 @@ "Kein" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -10544,6 +11507,7 @@ "Bagirmi" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -10554,6 +11518,7 @@ "Bote-Majhi" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -10564,6 +11529,7 @@ "Ghayavi" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -10574,6 +11540,7 @@ "Bomboli" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -10584,6 +11551,7 @@ "Northern Betsimisaraka Malagasy" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "mg", "Comments": [], "Prefix": [] @@ -10595,6 +11563,7 @@ "Bina (Papua New Guinea)" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -10605,6 +11574,7 @@ "Bambalang" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -10615,6 +11585,7 @@ "Bulgebi" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -10625,6 +11596,7 @@ "Bomu" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -10635,6 +11607,7 @@ "Muinane" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -10645,6 +11618,7 @@ "Bilma Kanuri" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -10655,6 +11629,7 @@ "Biao Mon" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -10665,6 +11640,7 @@ "Somba-Siawari" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -10675,6 +11651,7 @@ "Bum" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -10685,6 +11662,7 @@ "Bomwali" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -10695,6 +11673,7 @@ "Baimak" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -10705,6 +11684,7 @@ "Bemba (Democratic Republic of Congo)" ], "Added": "2009-07-29", + "Scope": "None", "Deprecated": "2015-02-12", "Comments": [], "Prefix": [] @@ -10716,6 +11696,7 @@ "Baramu" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -10726,6 +11707,7 @@ "Bonerate" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -10736,6 +11718,7 @@ "Bookan" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -10757,6 +11740,7 @@ "Banda (Indonesia)" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -10767,6 +11751,7 @@ "Bintauna" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -10777,6 +11762,7 @@ "Masiwang" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -10787,6 +11773,7 @@ "Benga" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -10797,6 +11784,7 @@ "Bangi" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -10807,6 +11795,7 @@ "Eastern Tawbuid" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -10817,6 +11806,7 @@ "Bierebo" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -10827,6 +11817,7 @@ "Boon" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -10837,6 +11828,7 @@ "Batanga" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -10847,6 +11839,7 @@ "Bunun" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -10857,6 +11850,7 @@ "Bantoanon" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -10867,6 +11861,7 @@ "Bola" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -10877,6 +11872,7 @@ "Bantik" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -10887,6 +11883,7 @@ "Butmas-Tur" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -10897,6 +11894,7 @@ "Bundeli" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -10918,6 +11916,7 @@ "Bentong" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -10930,6 +11929,7 @@ "Edwas" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -10940,6 +11940,7 @@ "Bisis" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -10950,6 +11951,7 @@ "Bangubangu" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -10960,6 +11962,7 @@ "Bintulu" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -10970,6 +11973,7 @@ "Beezen" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -10980,6 +11984,7 @@ "Bora" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -10990,6 +11995,7 @@ "Aweer" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -11000,6 +12006,7 @@ "Mundabli" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -11010,6 +12017,7 @@ "Bolon" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -11020,6 +12028,7 @@ "Bamako Sign Language" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -11030,6 +12039,7 @@ "Boma" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -11040,6 +12050,7 @@ "Barbare\u00F1o" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -11050,6 +12061,7 @@ "Anjam" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -11060,6 +12072,7 @@ "Bonjo" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -11070,6 +12083,7 @@ "Bole" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -11080,6 +12094,7 @@ "Berom" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -11090,6 +12105,7 @@ "Bine" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -11100,6 +12116,7 @@ "Tiemac\u00E8w\u00E8 Bozo" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -11110,6 +12127,7 @@ "Bonkiman" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -11120,6 +12138,7 @@ "Bogaya" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -11130,6 +12149,7 @@ "Bor\u00F4ro" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -11140,6 +12160,7 @@ "Bongo" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -11150,6 +12171,7 @@ "Bondei" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -11160,6 +12182,7 @@ "Tuwuli" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -11170,6 +12193,7 @@ "Rema" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -11180,6 +12204,7 @@ "Buamu" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -11190,6 +12215,7 @@ "Bodo (Central African Republic)" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -11200,6 +12226,7 @@ "Ti\u00E9yaxo Bozo" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -11210,6 +12237,7 @@ "Daakaka" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -11220,6 +12248,7 @@ "Barbacoas" ], "Added": "2009-07-29", + "Scope": "None", "Deprecated": "2020-03-28", "Comments": [], "Prefix": [] @@ -11231,6 +12260,7 @@ "Mbuk" ], "Added": "2022-02-25", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -11241,6 +12271,7 @@ "Banda-Banda" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -11251,6 +12282,7 @@ "Bauni" ], "Added": "2021-02-20", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -11261,6 +12293,7 @@ "Bonggo" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -11271,6 +12304,7 @@ "Botlikh" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -11281,6 +12315,7 @@ "Bagupi" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -11291,6 +12326,7 @@ "Binji" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -11302,6 +12338,7 @@ "\u0027\u00D4r\u00F4\u00EA" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -11312,6 +12349,7 @@ "Broome Pearling Lugger Pidgin" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -11322,6 +12360,7 @@ "Biyom" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -11332,6 +12371,7 @@ "Dzao Min" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -11342,6 +12382,7 @@ "Anasi" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -11352,6 +12393,7 @@ "Kaure" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -11362,6 +12404,7 @@ "Banda Malay" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -11372,6 +12415,7 @@ "Koronadal Blaan" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -11382,6 +12426,7 @@ "Sarangani Blaan" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -11392,6 +12437,7 @@ "Barrow Point" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -11402,6 +12448,7 @@ "Bongu" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -11412,6 +12459,7 @@ "Bian Marind" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -11422,6 +12470,7 @@ "Bo (Papua New Guinea)" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -11432,6 +12481,7 @@ "Palya Bareli" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -11442,6 +12492,7 @@ "Bishnupriya" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -11452,6 +12503,7 @@ "Bilba" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -11462,6 +12514,7 @@ "Tchumbuli" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -11472,6 +12525,7 @@ "Bagusa" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -11483,6 +12537,7 @@ "Boo" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -11493,6 +12548,7 @@ "Bung" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -11503,6 +12559,7 @@ "Baga Kaloum" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -11513,6 +12570,7 @@ "Bago-Kusuntu" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -11523,6 +12581,7 @@ "Baima" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -11533,6 +12592,7 @@ "Bakhtiari" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -11543,6 +12603,7 @@ "Bandial" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -11553,6 +12614,7 @@ "Banda-Mbr\u00E8s" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -11564,6 +12626,7 @@ "Bilakura" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -11574,6 +12637,7 @@ "Wumboko" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -11584,6 +12648,7 @@ "Bulgarian Sign Language" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -11594,6 +12659,7 @@ "Balo" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -11604,6 +12670,7 @@ "Busa" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -11614,6 +12681,7 @@ "Biritai" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -11624,6 +12692,7 @@ "Burusu" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -11634,6 +12703,7 @@ "Bosngun" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -11644,6 +12714,7 @@ "Bamukumbit" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -11654,6 +12725,7 @@ "Boguru" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -11665,6 +12737,7 @@ "Begbere-Ejar" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -11675,6 +12748,7 @@ "Buru (Nigeria)" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -11685,6 +12759,7 @@ "Baangi" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -11695,6 +12770,7 @@ "Bengkala Sign Language" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -11705,6 +12781,7 @@ "Bakaka" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -11715,6 +12792,7 @@ "Braj" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -11726,6 +12804,7 @@ "Lave" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -11736,6 +12815,7 @@ "Berbice Creole Dutch" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -11746,6 +12826,7 @@ "Baraamu" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -11756,6 +12837,7 @@ "Bira" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -11766,6 +12848,7 @@ "Baure" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -11776,6 +12859,7 @@ "Brahui" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -11786,6 +12870,7 @@ "Mokpwe" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -11796,6 +12881,7 @@ "Bieria" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -11806,6 +12892,7 @@ "Birked" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -11816,6 +12903,7 @@ "Birwa" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -11826,6 +12914,7 @@ "Barambu" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -11836,6 +12925,7 @@ "Boruca" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -11846,6 +12936,7 @@ "Brokkat" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -11856,6 +12947,7 @@ "Barapasi" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -11866,6 +12958,7 @@ "Breri" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -11876,6 +12969,7 @@ "Birao" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -11886,6 +12980,7 @@ "Baras" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -11896,6 +12991,7 @@ "Bitare" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -11906,6 +13002,7 @@ "Eastern Bru" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -11916,6 +13013,7 @@ "Western Bru" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -11926,6 +13024,7 @@ "Bellari" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -11936,6 +13035,7 @@ "Bodo (India)" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -11946,6 +13046,7 @@ "Burui" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -11956,6 +13057,7 @@ "Bilbil" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -11966,6 +13068,7 @@ "Abinomn" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -11976,6 +13079,7 @@ "Brunei Bisaya" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -11987,6 +13091,7 @@ "Oniyan" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -11997,6 +13102,7 @@ "Wushi" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -12007,6 +13113,7 @@ "Bauchi" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -12017,6 +13124,7 @@ "Bashkardi" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -12027,6 +13135,7 @@ "Kati" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -12037,6 +13146,7 @@ "Bassossi" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -12047,6 +13157,7 @@ "Bangwinji" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -12057,6 +13168,7 @@ "Burushaski" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -12067,6 +13179,7 @@ "Basa-Gumna" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -12077,6 +13190,7 @@ "Busami" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -12087,6 +13201,7 @@ "Barasana-Eduria" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -12097,6 +13212,7 @@ "Buso" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -12107,6 +13223,7 @@ "Baga Sitemu" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -12117,6 +13234,7 @@ "Bassa" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -12127,6 +13245,7 @@ "Bassa-Kontagora" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -12137,6 +13256,7 @@ "Akoose" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -12147,6 +13267,7 @@ "Basketo" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -12157,6 +13278,7 @@ "Bahonsuai" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -12167,6 +13289,7 @@ "Baga Soban\u00E9" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -12177,6 +13300,7 @@ "Baiso" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -12187,6 +13311,7 @@ "Yangkam" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -12197,6 +13322,7 @@ "Sabah Bisaya" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -12207,6 +13333,7 @@ "Bata" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -12217,6 +13344,7 @@ "Beti (Cameroon)" ], "Added": "2009-07-29", + "Scope": "None", "Deprecated": "2010-03-11", "Comments": [ "see beb, bum, bxp, eto, ewo, fan, mct" @@ -12230,6 +13358,7 @@ "Bati (Cameroon)" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -12240,6 +13369,7 @@ "Batak Dairi" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -12250,6 +13380,7 @@ "Gamo-Ningi" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -12260,6 +13391,7 @@ "Birgit" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -12270,6 +13402,7 @@ "Gagnoa B\u00E9t\u00E9" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -12280,6 +13413,7 @@ "Biatah Bidayuh" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -12290,6 +13424,7 @@ "Burate" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -12300,6 +13435,7 @@ "Bacanese Malay" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "ms", "Comments": [], "Prefix": [] @@ -12322,6 +13458,7 @@ "Bhatola" ], "Added": "2009-07-29", + "Scope": "None", "Deprecated": "2016-05-30", "Comments": [], "Prefix": [] @@ -12333,6 +13470,7 @@ "Batak Mandailing" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -12343,6 +13481,7 @@ "Ratagnon" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -12353,6 +13492,7 @@ "Rinconada Bikol" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "bik", "Comments": [], "Prefix": [] @@ -12364,6 +13504,7 @@ "Budibud" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -12374,6 +13515,7 @@ "Batek" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -12384,6 +13526,7 @@ "Baetora" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -12394,6 +13537,7 @@ "Batak Simalungun" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -12404,6 +13548,7 @@ "Bete-Bendi" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -12414,6 +13559,7 @@ "Batu" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -12424,6 +13570,7 @@ "Bateri" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -12434,6 +13581,7 @@ "Butuanon" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -12444,6 +13592,7 @@ "Batak Karo" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -12454,6 +13603,7 @@ "Bobot" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -12464,6 +13614,7 @@ "Batak Alas-Kluet" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -12485,6 +13636,7 @@ "Bua" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -12495,6 +13647,7 @@ "Bushi" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -12505,6 +13658,7 @@ "Ntcham" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -12515,6 +13669,7 @@ "Beothuk" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -12525,6 +13680,7 @@ "Bushoong" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -12535,6 +13691,7 @@ "Buginese" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -12545,6 +13702,7 @@ "Younuo Bunu" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -12555,6 +13713,7 @@ "Bongili" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -12565,6 +13724,7 @@ "Basa-Gurmana" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -12575,6 +13735,7 @@ "Bugawac" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -12585,6 +13746,7 @@ "Bulu (Cameroon)" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -12595,6 +13757,7 @@ "Sherbro" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -12605,6 +13768,7 @@ "Terei" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -12615,6 +13779,7 @@ "Busoa" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -12625,6 +13790,7 @@ "Brem" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -12635,6 +13801,7 @@ "Bokobaru" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -12645,6 +13812,7 @@ "Bungain" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -12655,6 +13823,7 @@ "Budu" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -12665,6 +13834,7 @@ "Bun" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -12675,6 +13845,7 @@ "Bubi" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -12685,6 +13856,7 @@ "Boghom" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -12695,6 +13867,7 @@ "Bullom So" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -12705,6 +13878,7 @@ "Bukwen" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -12715,6 +13889,7 @@ "Barein" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -12725,6 +13900,7 @@ "Bube" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -12735,6 +13911,7 @@ "Baelelea" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -12745,6 +13922,7 @@ "Baeggu" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -12755,6 +13933,7 @@ "Berau Malay" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "ms", "Comments": [], "Prefix": [] @@ -12766,6 +13945,7 @@ "Boor" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -12776,6 +13956,7 @@ "Bonkeng" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -12786,6 +13967,7 @@ "Bure" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -12796,6 +13978,7 @@ "Belanda Viri" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -12806,6 +13989,7 @@ "Baan" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -12816,6 +14000,7 @@ "Bukat" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -12826,6 +14011,7 @@ "Bolivian Sign Language" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -12836,6 +14022,7 @@ "Bamunka" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -12846,6 +14033,7 @@ "Buna" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -12856,6 +14044,7 @@ "Bolgo" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -12866,6 +14055,7 @@ "Bumang" ], "Added": "2013-09-10", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -12876,6 +14066,7 @@ "Birri" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -12886,6 +14077,7 @@ "Burarra" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -12896,6 +14088,7 @@ "Bati (Indonesia)" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -12906,6 +14099,7 @@ "Bukit Malay" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "ms", "Comments": [], "Prefix": [] @@ -12917,6 +14111,7 @@ "Baniva" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -12927,6 +14122,7 @@ "Boga" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -12937,6 +14133,7 @@ "Dibole" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -12947,6 +14144,7 @@ "Baybayanon" ], "Added": "2010-03-11", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -12957,6 +14155,7 @@ "Bauzi" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -12967,6 +14166,7 @@ "Bwatoo" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -12977,6 +14177,7 @@ "Namosi-Naitasiri-Serua" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -12987,6 +14188,7 @@ "Bwile" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -12997,6 +14199,7 @@ "Bwaidoka" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -13007,6 +14210,7 @@ "Bwe Karen" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -13017,6 +14221,7 @@ "Boselewa" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -13027,6 +14232,7 @@ "Barwe" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -13037,6 +14243,7 @@ "Bishuo" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -13047,6 +14254,7 @@ "Baniwa" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -13057,6 +14265,7 @@ "L\u00E1\u00E1 L\u00E1\u00E1 Bwamu" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -13067,6 +14276,7 @@ "Bauwaki" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -13077,6 +14287,7 @@ "Bwela" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -13087,6 +14298,7 @@ "Biwat" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -13097,6 +14309,7 @@ "Wunai Bunu" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -13108,6 +14321,7 @@ "Borna (Ethiopia)" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -13118,6 +14332,7 @@ "Mandobo Bawah" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -13128,6 +14343,7 @@ "Southern Bobo Madar\u00E9" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -13138,6 +14354,7 @@ "Bura-Pabir" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -13148,6 +14365,7 @@ "Bomboma" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -13158,6 +14376,7 @@ "Bafaw-Balong" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -13168,6 +14387,7 @@ "Buli (Ghana)" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -13178,6 +14398,7 @@ "Bwa" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -13188,6 +14409,7 @@ "Bu-Nao Bunu" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -13198,6 +14420,7 @@ "Cwi Bwamu" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -13208,6 +14431,7 @@ "Bwisi" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -13218,6 +14442,7 @@ "Tairaha" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -13228,6 +14453,7 @@ "Belanda Bor" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -13238,6 +14464,7 @@ "Molengue" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -13248,6 +14475,7 @@ "Pela" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -13258,6 +14486,7 @@ "Birale" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -13269,6 +14498,7 @@ "Minigir" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [ "see also vmg" ], @@ -13281,6 +14511,7 @@ "Bangala" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -13291,6 +14522,7 @@ "Buhutu" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -13301,6 +14533,7 @@ "Pirlatapa" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -13311,6 +14544,7 @@ "Bayungu" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -13322,6 +14556,7 @@ "Lubukusu" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "luy", "Comments": [], "Prefix": [] @@ -13333,6 +14568,7 @@ "Jalkunan" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -13343,6 +14579,7 @@ "Mongolia Buriat" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "bua", "Comments": [], "Prefix": [] @@ -13354,6 +14591,7 @@ "Burduna" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -13364,6 +14602,7 @@ "Barikanchi" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -13374,6 +14613,7 @@ "Bebil" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -13384,6 +14624,7 @@ "Beele" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -13394,6 +14635,7 @@ "Russia Buriat" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "bua", "Comments": [], "Prefix": [] @@ -13405,6 +14647,7 @@ "Busam" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -13415,6 +14658,7 @@ "China Buriat" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "bua", "Comments": [], "Prefix": [] @@ -13426,6 +14670,7 @@ "Berakou" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -13436,6 +14681,7 @@ "Bankagooma" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -13446,6 +14692,7 @@ "Borna (Democratic Republic of Congo)" ], "Added": "2009-07-29", + "Scope": "None", "Deprecated": "2015-02-12", "Comments": [], "Prefix": [] @@ -13457,6 +14704,7 @@ "Binahari" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -13467,6 +14715,7 @@ "Batak" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -13477,6 +14726,7 @@ "Bikya" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -13487,6 +14737,7 @@ "Ubaghara" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -13497,6 +14748,7 @@ "Benyadu\u0027" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -13507,6 +14759,7 @@ "Pouye" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -13517,6 +14770,7 @@ "Bete" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -13527,6 +14781,7 @@ "Baygo" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -13537,6 +14792,7 @@ "Bhujel" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -13547,6 +14803,7 @@ "Buyu" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -13557,6 +14814,7 @@ "Bina (Nigeria)" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -13567,6 +14825,7 @@ "Biao" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -13577,6 +14836,7 @@ "Bayono" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -13587,6 +14847,7 @@ "Bidjara" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -13598,6 +14859,7 @@ "Blin" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -13608,6 +14870,7 @@ "Biyo" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -13618,6 +14881,7 @@ "Bumaji" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -13628,6 +14892,7 @@ "Basay" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -13639,6 +14904,7 @@ "Yipma" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -13649,6 +14915,7 @@ "Burak" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -13659,6 +14926,7 @@ "Berti" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -13669,6 +14937,7 @@ "Medumba" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -13679,6 +14948,7 @@ "Belhariya" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -13689,6 +14959,7 @@ "Qaqet" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -13699,6 +14970,7 @@ "Buya" ], "Added": "2009-07-29", + "Scope": "None", "Deprecated": "2015-02-12", "Comments": [], "Prefix": [] @@ -13710,6 +14982,7 @@ "Banaro" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -13720,6 +14993,7 @@ "Bandi" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -13730,6 +15004,7 @@ "Andio" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -13740,6 +15015,7 @@ "Southern Betsimisaraka Malagasy" ], "Added": "2011-08-16", + "Scope": "None", "MacroLanguage": "mg", "Comments": [], "Prefix": [] @@ -13751,6 +15027,7 @@ "Bribri" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -13761,6 +15038,7 @@ "Jenaama Bozo" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -13771,6 +15049,7 @@ "Boikin" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -13781,6 +15060,7 @@ "Babuza" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -13791,6 +15071,7 @@ "Mapos Buang" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -13801,6 +15082,7 @@ "Bisu" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -13811,6 +15093,7 @@ "Belize Kriol English" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -13821,6 +15104,7 @@ "Nicaragua Creole English" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -13831,6 +15115,7 @@ "Boano (Sulawesi)" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -13841,6 +15126,7 @@ "Bolondo" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -13851,6 +15137,7 @@ "Boano (Maluku)" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -13861,6 +15148,7 @@ "Bozaba" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -13871,6 +15159,7 @@ "Kemberano" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -13881,6 +15170,7 @@ "Buli (Indonesia)" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -13891,6 +15181,7 @@ "Biri" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -13901,6 +15192,7 @@ "Brazilian Sign Language" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -13911,6 +15203,7 @@ "Brithenig" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -13921,6 +15214,7 @@ "Burmeso" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -13931,6 +15225,7 @@ "Naami" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -13941,6 +15236,7 @@ "Basa (Nigeria)" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -13951,6 +15247,7 @@ "K\u025Bl\u025Bngaxo Bozo" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -13961,6 +15258,7 @@ "Obanliku" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -13971,6 +15269,7 @@ "Evant" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -13981,6 +15280,7 @@ "Chort\u00ED" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -13991,6 +15291,7 @@ "Garifuna" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -14001,6 +15302,7 @@ "Chuj" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -14011,6 +15313,7 @@ "Caddo" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -14022,6 +15325,7 @@ "Laalaa" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -14032,6 +15336,7 @@ "Southern Carrier" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -14042,6 +15347,7 @@ "Nivacl\u00E9" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -14052,6 +15358,7 @@ "Cahuarano" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -14073,6 +15380,7 @@ "Chan\u00E9" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -14084,6 +15392,7 @@ "Cakchiquel" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -14094,6 +15403,7 @@ "Carolinian" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -14104,6 +15414,7 @@ "Cemuh\u00EE" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -14114,6 +15425,7 @@ "Chambri" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -14124,6 +15436,7 @@ "Ch\u00E1cobo" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -14134,6 +15447,7 @@ "Chipaya" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -14144,6 +15458,7 @@ "Car Nicobarese" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -14154,6 +15469,7 @@ "Galibi Carib" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -14164,6 +15480,7 @@ "Tsiman\u00E9" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -14185,6 +15502,7 @@ "Cavine\u00F1a" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -14195,6 +15513,7 @@ "Callawalla" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -14205,6 +15524,7 @@ "Chiquitano" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -14215,6 +15535,7 @@ "Cayuga" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -14225,6 +15546,7 @@ "Canichana" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -14246,6 +15568,7 @@ "Cabiyar\u00ED" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -14256,6 +15579,7 @@ "Carapana" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -14266,6 +15590,7 @@ "Carijona" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -14276,6 +15601,7 @@ "Chipiajes" ], "Added": "2009-07-29", + "Scope": "None", "Deprecated": "2016-05-30", "Comments": [], "Prefix": [] @@ -14287,6 +15613,7 @@ "Chimila" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -14297,6 +15624,7 @@ "Cagua" ], "Added": "2009-07-29", + "Scope": "None", "Deprecated": "2016-05-30", "Comments": [], "Prefix": [] @@ -14308,6 +15636,7 @@ "Chachi" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -14318,6 +15647,7 @@ "Ede Cabe" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -14328,6 +15658,7 @@ "Chavacano" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -14338,6 +15669,7 @@ "Bualkhaw Chin" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -14348,6 +15680,7 @@ "Nyahkur" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -14358,6 +15691,7 @@ "Izora" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -14369,6 +15703,7 @@ "Cuba" ], "Added": "2015-02-12", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -14379,6 +15714,7 @@ "Cashibo-Cacataibo" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -14389,6 +15725,7 @@ "Cashinahua" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -14399,6 +15736,7 @@ "Chayahuita" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -14409,6 +15747,7 @@ "Candoshi-Shapra" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -14419,6 +15758,7 @@ "Cacua" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -14429,6 +15769,7 @@ "Kinabalian" ], "Added": "2010-03-11", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -14439,6 +15780,7 @@ "Carabayo" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -14449,6 +15791,7 @@ "Cauca" ], "Added": "2009-07-29", + "Scope": "None", "Deprecated": "2020-03-28", "Comments": [], "Prefix": [] @@ -14460,6 +15803,7 @@ "Chamicuro" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -14470,6 +15814,7 @@ "Cafundo Creole" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -14480,6 +15825,7 @@ "Chopi" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -14490,6 +15836,7 @@ "Samba Daka" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -14500,6 +15847,7 @@ "Atsam" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -14510,6 +15858,7 @@ "Kasanga" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -14520,6 +15869,7 @@ "Cutchi-Swahili" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -14530,6 +15880,7 @@ "Malaccan Creole Malay" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -14551,6 +15902,7 @@ "Comaltepec Chinantec" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -14561,6 +15913,7 @@ "Chakma" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -14571,6 +15924,7 @@ "Chaungtha" ], "Added": "2009-07-29", + "Scope": "None", "Deprecated": "2012-08-12", "Comments": [], "Prefix": [], @@ -14583,6 +15937,7 @@ "Cacaopera" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -14604,6 +15959,7 @@ "Choni" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -14636,6 +15992,7 @@ "Chenchu" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -14646,6 +16003,7 @@ "Chiru" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -14656,6 +16014,7 @@ "Chamari" ], "Added": "2009-07-29", + "Scope": "None", "Deprecated": "2020-03-28", "Comments": [], "Prefix": [] @@ -14667,6 +16026,7 @@ "Chambeali" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -14677,6 +16037,7 @@ "Chodri" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -14687,6 +16048,7 @@ "Churahi" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -14697,6 +16059,7 @@ "Chepang" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -14707,6 +16070,7 @@ "Chaudangsi" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -14717,6 +16081,7 @@ "Min Dong Chinese" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "zh", "Comments": [], "Prefix": [] @@ -14728,6 +16093,7 @@ "Cinda-Regi-Tiyal" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -14738,6 +16104,7 @@ "Chadian Sign Language" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -14748,6 +16115,7 @@ "Chadong" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -14758,6 +16126,7 @@ "Koda" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -14768,6 +16137,7 @@ "Lower Chehalis" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -14778,6 +16148,7 @@ "Cebuano" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -14788,6 +16159,7 @@ "Chamacoco" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -14798,6 +16170,7 @@ "Eastern Khumi Chin" ], "Added": "2012-08-12", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -14819,6 +16192,7 @@ "Cen" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -14829,6 +16203,7 @@ "Cent\u00FA\u00FAm" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -14839,6 +16214,7 @@ "Ekai Chin" ], "Added": "2019-04-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -14849,6 +16225,7 @@ "Dijim-Bwilim" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -14859,6 +16236,7 @@ "Cara" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -14869,6 +16247,7 @@ "Como Karim" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -14879,6 +16258,7 @@ "Falam Chin" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -14889,6 +16269,7 @@ "Changriwa" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -14899,6 +16280,7 @@ "Kagayanen" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -14909,6 +16291,7 @@ "Chiga" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -14919,6 +16302,7 @@ "Chocangacakha" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -14929,6 +16313,7 @@ "Chibcha" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -14939,6 +16324,7 @@ "Catawba" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -14949,6 +16335,7 @@ "Highland Oaxaca Chontal" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -14959,6 +16346,7 @@ "Tabasco Chontal" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -14969,6 +16357,7 @@ "Chagatai" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -14979,6 +16368,7 @@ "Chinook" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -14989,6 +16379,7 @@ "Ojitl\u00E1n Chinantec" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -14999,6 +16390,7 @@ "Chuukese" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -15009,6 +16401,7 @@ "Cahuilla" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -15030,6 +16423,7 @@ "Chinook jargon" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -15040,6 +16434,7 @@ "Choctaw" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -15051,6 +16446,7 @@ "Dene Suline" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -15061,6 +16457,7 @@ "Quiotepec Chinantec" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -15071,6 +16468,7 @@ "Cherokee" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -15081,6 +16479,7 @@ "Chol\u00F3n" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -15091,6 +16490,7 @@ "Chuwabu" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -15101,6 +16501,7 @@ "Chantyal" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -15111,6 +16512,7 @@ "Cheyenne" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -15121,6 +16523,7 @@ "Ozumac\u00EDn Chinantec" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -15131,6 +16534,7 @@ "Cia-Cia" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -15141,6 +16545,7 @@ "Ci Gbe" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -15151,6 +16556,7 @@ "Chickasaw" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -15161,6 +16567,7 @@ "Chimariko" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -15171,6 +16578,7 @@ "Cineni" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -15181,6 +16589,7 @@ "Chinali" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -15191,6 +16600,7 @@ "Chitkuli Kinnauri" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -15201,6 +16611,7 @@ "Cimbrian" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -15211,6 +16622,7 @@ "Cinta Larga" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -15221,6 +16633,7 @@ "Chiapanec" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -15233,6 +16646,7 @@ "M\u00E9a" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -15243,6 +16657,7 @@ "Chippewa" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "oj", "Comments": [], "Prefix": [] @@ -15254,6 +16669,7 @@ "Chaima" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -15264,6 +16680,7 @@ "Western Cham" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -15274,6 +16691,7 @@ "Chru" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -15284,6 +16702,7 @@ "Upper Chehalis" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -15294,6 +16713,7 @@ "Chamalal" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -15304,6 +16724,7 @@ "Chokwe" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -15314,6 +16735,7 @@ "Eastern Cham" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -15324,6 +16746,7 @@ "Chenapian" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -15334,6 +16757,7 @@ "Ash\u00E9ninka Pajonal" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -15344,6 +16768,7 @@ "Cab\u00E9car" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -15354,6 +16779,7 @@ "Chorotega" ], "Added": "2009-07-29", + "Scope": "None", "Deprecated": "2010-03-11", "Comments": [], "Prefix": [], @@ -15366,6 +16792,7 @@ "Shor" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -15376,6 +16803,7 @@ "Chuave" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -15386,6 +16814,7 @@ "Jinyu Chinese" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "zh", "Comments": [], "Prefix": [] @@ -15397,6 +16826,7 @@ "Khumi Awa Chin" ], "Added": "2009-07-29", + "Scope": "None", "Deprecated": "2012-08-12", "Comments": [], "Prefix": [], @@ -15409,6 +16839,7 @@ "Central Kurdish" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "ku", "Comments": [], "Prefix": [] @@ -15420,6 +16851,7 @@ "Chak" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -15430,6 +16862,7 @@ "Cibak" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -15440,6 +16873,7 @@ "Chakavian" ], "Added": "2020-03-28", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -15450,6 +16884,7 @@ "Kaang Chin" ], "Added": "2013-09-10", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -15460,6 +16895,7 @@ "Anufo" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -15470,6 +16906,7 @@ "Kajakse" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -15480,6 +16917,7 @@ "Kairak" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -15490,6 +16928,7 @@ "Tayo" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -15500,6 +16939,7 @@ "Chukot" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -15510,6 +16950,7 @@ "Koasati" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -15520,6 +16961,7 @@ "Kavalan" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -15530,6 +16972,7 @@ "Caka" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -15540,6 +16983,7 @@ "Cakfem-Mushere" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -15550,6 +16994,7 @@ "Cakchiquel-Quich\u00E9 Mixed Language" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -15560,6 +17005,7 @@ "Ron" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -15571,6 +17017,7 @@ "Tsilhqot\u2019in" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -15581,6 +17028,7 @@ "Chaldean Neo-Aramaic" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "syr", "Comments": [], "Prefix": [] @@ -15592,6 +17040,7 @@ "Lealao Chinantec" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -15602,6 +17051,7 @@ "Chilisso" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -15612,6 +17062,7 @@ "Chakali" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -15622,6 +17073,7 @@ "Laitu Chin" ], "Added": "2012-08-12", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -15632,6 +17084,7 @@ "Idu-Mishmi" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -15642,6 +17095,7 @@ "Chala" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -15653,6 +17107,7 @@ "Clallam" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -15663,6 +17118,7 @@ "Lowland Oaxaca Chontal" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -15673,6 +17129,7 @@ "Classical Sanskrit" ], "Added": "2024-03-04", + "Scope": "None", "MacroLanguage": "sa", "Comments": [], "Prefix": [] @@ -15684,6 +17141,7 @@ "Lautu Chin" ], "Added": "2012-08-12", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -15694,6 +17152,7 @@ "Caluyanun" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -15704,6 +17163,7 @@ "Chulym" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -15714,6 +17174,7 @@ "Eastern Highland Chatino" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -15724,6 +17185,7 @@ "Maa" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -15745,6 +17207,7 @@ "Cerma" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -15755,6 +17218,7 @@ "Classical Mongolian" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -15765,6 +17229,7 @@ "Ember\u00E1-Cham\u00ED" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -15775,6 +17240,7 @@ "Chimakum" ], "Added": "2009-07-29", + "Scope": "None", "Deprecated": "2010-03-11", "Comments": [], "Prefix": [], @@ -15787,6 +17253,7 @@ "Campalagian" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -15797,6 +17264,7 @@ "Michigamea" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -15807,6 +17275,7 @@ "Mandarin Chinese" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "zh", "Comments": [], "Prefix": [] @@ -15818,6 +17287,7 @@ "Central Mnong" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -15828,6 +17298,7 @@ "Mro-Khimi Chin" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -15838,6 +17309,7 @@ "Messapic" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -15848,6 +17320,7 @@ "Camtho" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -15858,6 +17331,7 @@ "Changthang" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -15868,6 +17342,7 @@ "Chinbon Chin" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -15878,6 +17353,7 @@ "C\u00F4\u00F4ng" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -15888,6 +17364,7 @@ "Northern Qiang" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -15899,6 +17376,7 @@ "Haka Chin" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -15909,6 +17387,7 @@ "Ash\u00E1ninka" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -15919,6 +17398,7 @@ "Khumi Chin" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -15929,6 +17409,7 @@ "Lalana Chinantec" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -15939,6 +17420,7 @@ "Con" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -15950,6 +17432,7 @@ "Northern Pinghua" ], "Added": "2020-03-28", + "Scope": "None", "MacroLanguage": "zh", "Comments": [], "Prefix": [] @@ -15961,6 +17444,7 @@ "Chung" ], "Added": "2022-02-25", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -15971,6 +17455,7 @@ "Montenegrin" ], "Added": "2018-01-23", + "Scope": "None", "MacroLanguage": "sh", "Comments": [ "see sr for Serbian" @@ -15984,6 +17469,7 @@ "Central Asmat" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -15994,6 +17480,7 @@ "Tepetotutla Chinantec" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -16004,6 +17491,7 @@ "Chenoua" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -16014,6 +17502,7 @@ "Ngawn Chin" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -16024,6 +17513,7 @@ "Middle Cornish" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -16034,6 +17524,7 @@ "Cocos Islands Malay" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "ms", "Comments": [], "Prefix": [] @@ -16045,6 +17536,7 @@ "Chicomuceltec" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -16055,6 +17547,7 @@ "Cocopa" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -16065,6 +17558,7 @@ "Cocama-Cocamilla" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -16075,6 +17569,7 @@ "Koreguaje" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -16085,6 +17580,7 @@ "Colorado" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -16095,6 +17591,7 @@ "Chong" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -16106,6 +17603,7 @@ "Chichonyi-Chidzihana-Chikauma" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -16116,6 +17614,7 @@ "Cochimi" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -16126,6 +17625,7 @@ "Santa Teresa Cora" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -16136,6 +17636,7 @@ "Columbia-Wenatchi" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -16146,6 +17647,7 @@ "Comanche" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -16156,6 +17658,7 @@ "Cof\u00E1n" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -16166,6 +17669,7 @@ "Comox" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -16176,6 +17680,7 @@ "Coptic" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -16186,6 +17691,7 @@ "Coquille" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -16196,6 +17702,7 @@ "Caquinte" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -16206,6 +17713,7 @@ "Wamey" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -16216,6 +17724,7 @@ "Cao Miao" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -16226,6 +17735,7 @@ "Cowlitz" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -16236,6 +17746,7 @@ "Nanti" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -16246,6 +17757,7 @@ "Coyaima" ], "Added": "2009-07-29", + "Scope": "None", "Deprecated": "2016-05-30", "Comments": [], "Prefix": [], @@ -16258,6 +17770,7 @@ "Chochotec" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -16268,6 +17781,7 @@ "Palantla Chinantec" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -16278,6 +17792,7 @@ "Ucayali-Yur\u00FAa Ash\u00E9ninka" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -16288,6 +17803,7 @@ "Ajy\u00EDninka Apurucayali" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -16320,6 +17836,7 @@ "Cappadocian Greek" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -16330,6 +17847,7 @@ "Chinese Pidgin English" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -16340,6 +17858,7 @@ "Cherepon" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -16350,6 +17869,7 @@ "Kpeego" ], "Added": "2013-09-10", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -16371,6 +17891,7 @@ "Capiznon" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -16381,6 +17902,7 @@ "Pichis Ash\u00E9ninka" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -16391,6 +17913,7 @@ "Pu-Xian Chinese" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "zh", "Comments": [], "Prefix": [] @@ -16402,6 +17925,7 @@ "South Ucayali Ash\u00E9ninka" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -16412,6 +17936,7 @@ "Chuanqiandian Cluster Miao" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "hmn", "Comments": [], "Prefix": [] @@ -16423,6 +17948,7 @@ "Chilean Quechua" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "qu", "Deprecated": "2016-05-30", "Comments": [], @@ -16436,6 +17962,7 @@ "Chara" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -16446,6 +17973,7 @@ "Island Carib" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -16456,6 +17984,7 @@ "Lonwolwol" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -16466,6 +17995,7 @@ "Coeur d\u0027Alene" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -16476,6 +18006,7 @@ "Caramanta" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -16486,6 +18017,7 @@ "Michif" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -16497,6 +18029,7 @@ "Crimean Turkish" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -16507,6 +18040,7 @@ "S\u00E3otomense" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -16517,6 +18051,7 @@ "Southern East Cree" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "cr", "Comments": [], "Prefix": [] @@ -16528,6 +18063,7 @@ "Plains Cree" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "cr", "Comments": [], "Prefix": [] @@ -16539,6 +18075,7 @@ "Northern East Cree" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "cr", "Comments": [], "Prefix": [] @@ -16550,6 +18087,7 @@ "Moose Cree" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "cr", "Comments": [], "Prefix": [] @@ -16561,6 +18099,7 @@ "El Nayar Cora" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -16571,6 +18110,7 @@ "Crow" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -16592,6 +18132,7 @@ "Iyo\u0027wujwa Chorote" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -16602,6 +18143,7 @@ "Carolina Algonquian" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -16612,6 +18154,7 @@ "Seselwa Creole French" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -16622,6 +18165,7 @@ "Iyojwa\u0027ja Chorote" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -16632,6 +18176,7 @@ "Chaura" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -16642,6 +18187,7 @@ "Chrau" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -16652,6 +18198,7 @@ "Carrier" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -16662,6 +18209,7 @@ "Cori" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -16672,6 +18220,7 @@ "Cruze\u00F1o" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -16682,6 +18231,7 @@ "Chiltepec Chinantec" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -16692,6 +18242,7 @@ "Kashubian" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -16704,6 +18255,7 @@ "Llengua de Signes Catalana" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -16714,6 +18266,7 @@ "Chiangmai Sign Language" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -16724,6 +18277,7 @@ "Czech Sign Language" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -16734,6 +18288,7 @@ "Cuba Sign Language" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -16744,6 +18299,7 @@ "Chilean Sign Language" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -16754,6 +18310,7 @@ "Asho Chin" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -16764,6 +18321,7 @@ "Coast Miwok" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -16774,6 +18332,7 @@ "Songlai Chin" ], "Added": "2013-09-10", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -16784,6 +18343,7 @@ "Jola-Kasa" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -16794,6 +18354,7 @@ "Chinese Sign Language" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -16804,6 +18365,7 @@ "Central Sierra Miwok" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -16814,6 +18376,7 @@ "Colombian Sign Language" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -16825,6 +18388,7 @@ "Sochiapan Chinantec" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -16836,6 +18400,7 @@ "Southern Pinghua" ], "Added": "2020-03-28", + "Scope": "None", "MacroLanguage": "zh", "Comments": [], "Prefix": [] @@ -16847,6 +18412,7 @@ "Croatia Sign Language" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -16857,6 +18423,7 @@ "Costa Rican Sign Language" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -16867,6 +18434,7 @@ "Southern Ohlone" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -16877,6 +18445,7 @@ "Northern Ohlone" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -16898,6 +18467,7 @@ "Sumtu Chin" ], "Added": "2012-08-12", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -16908,6 +18478,7 @@ "Swampy Cree" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "cr", "Comments": [], "Prefix": [] @@ -16919,6 +18490,7 @@ "Cambodian Sign Language" ], "Added": "2021-02-20", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -16929,6 +18501,7 @@ "Siyin Chin" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -16939,6 +18512,7 @@ "Coos" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -16949,6 +18523,7 @@ "Tataltepec Chatino" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -16959,6 +18534,7 @@ "Chetco" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -16969,6 +18545,7 @@ "Tedim Chin" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -16979,6 +18556,7 @@ "Tepinapa Chinantec" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -16989,6 +18567,7 @@ "Chittagonian" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -16999,6 +18578,7 @@ "Thaiphum Chin" ], "Added": "2012-08-12", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -17009,6 +18589,7 @@ "Tlacoatzintepec Chinantec" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -17019,6 +18600,7 @@ "Chitimacha" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -17029,6 +18611,7 @@ "Chhintange" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -17039,6 +18622,7 @@ "Ember\u00E1-Cat\u00EDo" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -17049,6 +18633,7 @@ "Western Highland Chatino" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -17059,6 +18644,7 @@ "Northern Catanduanes Bikol" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "bik", "Comments": [], "Prefix": [] @@ -17070,6 +18656,7 @@ "Wayanad Chetti" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -17080,6 +18667,7 @@ "Chol" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -17090,6 +18678,7 @@ "Moundadan Chetty" ], "Added": "2021-02-20", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -17100,6 +18689,7 @@ "Zacatepec Chatino" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -17110,6 +18700,7 @@ "Cua" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -17120,6 +18711,7 @@ "Cubeo" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -17130,6 +18722,7 @@ "Usila Chinantec" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -17141,6 +18734,7 @@ "Cung" ], "Added": "2009-07-29", + "Scope": "None", "Deprecated": "2022-02-25", "Comments": [ "see bpc, cnq" @@ -17155,6 +18749,7 @@ "Gichuka" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -17165,6 +18760,7 @@ "Cuiba" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -17175,6 +18771,7 @@ "Mashco Piro" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -17185,6 +18782,7 @@ "San Blas Kuna" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -17196,6 +18794,7 @@ "Kulina" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -17206,6 +18805,7 @@ "Cumeral" ], "Added": "2009-07-29", + "Scope": "None", "Deprecated": "2016-05-30", "Comments": [], "Prefix": [] @@ -17217,6 +18817,7 @@ "Cumanagoto" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -17227,6 +18828,7 @@ "Cupe\u00F1o" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -17237,6 +18839,7 @@ "Cun" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -17247,6 +18850,7 @@ "Chhulung" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -17268,6 +18872,7 @@ "Teutila Cuicatec" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -17278,6 +18883,7 @@ "Tai Ya" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -17288,6 +18894,7 @@ "Cuvok" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -17298,6 +18905,7 @@ "Chukwa" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -17308,6 +18916,7 @@ "Tepeuxila Cuicatec" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -17318,6 +18927,7 @@ "Cuitlatec" ], "Added": "2018-03-08", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -17328,6 +18938,7 @@ "Chug" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -17338,6 +18949,7 @@ "Valle Nacional Chinantec" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -17348,6 +18960,7 @@ "Kabwa" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -17358,6 +18971,7 @@ "Maindo" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -17368,6 +18982,7 @@ "Woods Cree" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "cr", "Comments": [], "Prefix": [] @@ -17379,6 +18994,7 @@ "Kwere" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -17390,6 +19006,7 @@ "Cheq Wong" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -17400,6 +19017,7 @@ "Kuwaataay" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -17410,6 +19028,7 @@ "Cha\u0027ari" ], "Added": "2023-03-17", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -17420,6 +19039,7 @@ "Nopala Chatino" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -17430,6 +19050,7 @@ "Cayubaba" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -17440,6 +19061,7 @@ "Cuyonon" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -17450,6 +19072,7 @@ "Huizhou Chinese" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "zh", "Comments": [], "Prefix": [] @@ -17461,6 +19084,7 @@ "Knaanic" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -17471,6 +19095,7 @@ "Zenzontepec Chatino" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -17481,6 +19106,7 @@ "Min Zhong Chinese" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "zh", "Comments": [], "Prefix": [] @@ -17492,6 +19118,7 @@ "Zotung Chin" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -17502,6 +19129,7 @@ "Dangal\u00E9at" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -17512,6 +19140,7 @@ "Dambi" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -17522,6 +19151,7 @@ "Marik" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -17532,6 +19162,7 @@ "Duupa" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -17542,6 +19173,7 @@ "Dan" ], "Added": "2009-07-29", + "Scope": "None", "Deprecated": "2013-09-10", "Comments": [ "see dnj, lda" @@ -17555,6 +19187,7 @@ "Dagbani" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -17565,6 +19198,7 @@ "Gwahatike" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -17575,6 +19209,7 @@ "Day" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -17585,6 +19220,7 @@ "Dar Fur Daju" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -17595,6 +19231,7 @@ "Dakota" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -17605,6 +19242,7 @@ "Dahalo" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -17615,6 +19253,7 @@ "Damakawa" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -17625,6 +19264,7 @@ "Daai Chin" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -17635,6 +19275,7 @@ "Nisi (India)" ], "Added": "2009-07-29", + "Scope": "None", "Deprecated": "2012-08-12", "Comments": [ "see njz, tgj" @@ -17648,6 +19289,7 @@ "Dandami Maria" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -17658,6 +19300,7 @@ "Dargwa" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -17668,6 +19311,7 @@ "Daho-Doo" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -17678,6 +19322,7 @@ "Dar Sila Daju" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -17689,6 +19334,7 @@ "Dawida" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -17699,6 +19345,7 @@ "Davawenyo" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -17709,6 +19356,7 @@ "Dayi" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -17731,6 +19379,7 @@ "Dao" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -17741,6 +19390,7 @@ "Bangime" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -17751,6 +19401,7 @@ "Deno" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -17761,6 +19412,7 @@ "Dadiya" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -17771,6 +19423,7 @@ "Dabe" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -17781,6 +19434,7 @@ "Edopi" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -17791,6 +19445,7 @@ "Dogul Dom Dogon" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -17801,6 +19456,7 @@ "Doka" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -17811,6 +19467,7 @@ "Ida\u0027an" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -17821,6 +19478,7 @@ "Dyirbal" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -17831,6 +19489,7 @@ "Duguri" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -17841,6 +19500,7 @@ "Duriankere" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -17851,6 +19511,7 @@ "Dulbu" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -17861,6 +19522,7 @@ "Duwai" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -17871,6 +19533,7 @@ "Daba" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -17881,6 +19544,7 @@ "Dabarre" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -17891,6 +19555,7 @@ "Ben Tey Dogon" ], "Added": "2012-08-12", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -17901,6 +19566,7 @@ "Bondum Dom Dogon" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -17911,6 +19577,7 @@ "Dungu" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -17921,6 +19588,7 @@ "Bankan Tey Dogon" ], "Added": "2012-08-12", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -17931,6 +19599,7 @@ "Dibiyaso" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -17941,6 +19610,7 @@ "Deccan" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -17951,6 +19621,7 @@ "Negerhollands" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -17961,6 +19632,7 @@ "Dadi Dadi" ], "Added": "2012-08-12", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -17971,6 +19643,7 @@ "Dongotono" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -17981,6 +19654,7 @@ "Doondo" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -17991,6 +19665,7 @@ "Fataluku" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -18001,6 +19676,7 @@ "West Goodenough" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -18011,6 +19687,7 @@ "Jaru" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -18021,6 +19698,7 @@ "Dendi (Benin)" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -18031,6 +19709,7 @@ "Dido" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -18041,6 +19720,7 @@ "Dhudhuroa" ], "Added": "2012-08-12", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -18051,6 +19731,7 @@ "Donno So Dogon" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -18061,6 +19742,7 @@ "Dawera-Daweloor" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -18071,6 +19753,7 @@ "Dagik" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -18081,6 +19764,7 @@ "Dedua" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -18091,6 +19775,7 @@ "Dewoin" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -18101,6 +19786,7 @@ "Dezfuli" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -18111,6 +19797,7 @@ "Degema" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -18121,6 +19808,7 @@ "Dehwari" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -18131,6 +19819,7 @@ "Demisa" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -18141,6 +19830,7 @@ "Dek" ], "Added": "2009-07-29", + "Scope": "None", "Deprecated": "2024-12-12", "Comments": [], "Prefix": [], @@ -18164,6 +19854,7 @@ "Dem" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -18185,6 +19876,7 @@ "Pidgin Delaware" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -18195,6 +19887,7 @@ "Dendi (Central African Republic)" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -18205,6 +19898,7 @@ "Deori" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -18215,6 +19909,7 @@ "Desano" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -18225,6 +19920,7 @@ "Domung" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -18235,6 +19931,7 @@ "Dengese" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -18245,6 +19942,7 @@ "Southern Dagaare" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -18255,6 +19953,7 @@ "Bunoge Dogon" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -18265,6 +19964,7 @@ "Casiguran Dumagat Agta" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -18275,6 +19975,7 @@ "Dagaari Dioula" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -18285,6 +19986,7 @@ "Degenan" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -18295,6 +19997,7 @@ "Doga" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -18305,6 +20008,7 @@ "Dghwede" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -18315,6 +20019,7 @@ "Northern Dagara" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -18325,6 +20030,7 @@ "Dagba" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -18336,6 +20042,7 @@ "Dongolawi" ], "Added": "2012-08-12", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -18346,6 +20053,7 @@ "Dagoman" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -18356,6 +20064,7 @@ "Dogri (individual language)" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "doi", "Comments": [], "Prefix": [] @@ -18369,6 +20078,7 @@ "T\u0142\u0131\u0328ch\u01EB" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -18379,6 +20089,7 @@ "Dogoso" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -18389,6 +20100,7 @@ "Ndra\u0027ngith" ], "Added": "2012-08-12", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -18399,6 +20111,7 @@ "Degaru" ], "Added": "2009-07-29", + "Scope": "None", "Deprecated": "2020-03-28", "Comments": [], "Prefix": [] @@ -18410,6 +20123,7 @@ "Daungwurrung" ], "Added": "2012-08-12", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -18420,6 +20134,7 @@ "Doghoro" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -18430,6 +20145,7 @@ "Daga" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -18440,6 +20156,7 @@ "Dhanwar (India)" ], "Added": "2009-07-29", + "Scope": "None", "Deprecated": "2011-08-16", "Comments": [], "Prefix": [] @@ -18451,6 +20168,7 @@ "Dhundari" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "mwr", "Comments": [], "Prefix": [] @@ -18464,6 +20182,7 @@ "Djangu" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -18474,6 +20193,7 @@ "Dhimal" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -18484,6 +20204,7 @@ "Dhalandji" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -18494,6 +20215,7 @@ "Zemba" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -18504,6 +20226,7 @@ "Dhanki" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -18514,6 +20237,7 @@ "Dhodia" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -18524,6 +20248,7 @@ "Dhargari" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -18534,6 +20259,7 @@ "Dhaiso" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -18544,6 +20270,7 @@ "Dhurga" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -18555,6 +20282,7 @@ "Drehu" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -18565,6 +20293,7 @@ "Dhanwar (Nepal)" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -18575,6 +20304,7 @@ "Dhungaloo" ], "Added": "2013-09-10", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -18585,6 +20315,7 @@ "Dia" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -18595,6 +20326,7 @@ "South Central Dinka" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "din", "Comments": [], "Prefix": [] @@ -18606,6 +20338,7 @@ "Lakota Dida" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -18616,6 +20349,7 @@ "Didinga" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -18627,6 +20361,7 @@ "Diyari" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -18638,6 +20373,7 @@ "Chidigo" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -18648,6 +20384,7 @@ "Kumiai" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -18658,6 +20395,7 @@ "Dimbong" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -18668,6 +20406,7 @@ "Dai" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -18678,6 +20417,7 @@ "Southwestern Dinka" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "din", "Comments": [], "Prefix": [] @@ -18689,6 +20429,7 @@ "Dilling" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -18699,6 +20440,7 @@ "Dime" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -18720,6 +20462,7 @@ "Dibo" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -18730,6 +20473,7 @@ "Northeastern Dinka" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "din", "Comments": [], "Prefix": [] @@ -18741,6 +20485,7 @@ "Dimli (individual language)" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "zza", "Comments": [], "Prefix": [] @@ -18752,6 +20497,7 @@ "Dirim" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -18762,6 +20508,7 @@ "Dimasa" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -18772,6 +20519,7 @@ "Dirari" ], "Added": "2009-07-29", + "Scope": "None", "Deprecated": "2019-04-29", "Comments": [], "Prefix": [], @@ -18784,6 +20532,7 @@ "Diriku" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -18794,6 +20543,7 @@ "Northwestern Dinka" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "din", "Comments": [], "Prefix": [] @@ -18805,6 +20555,7 @@ "Dixon Reef" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -18815,6 +20566,7 @@ "Diuwe" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -18825,6 +20577,7 @@ "Ding" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -18835,6 +20588,7 @@ "Djadjawurrung" ], "Added": "2012-08-12", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -18845,6 +20599,7 @@ "Djinba" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -18855,6 +20610,7 @@ "Dar Daju Daju" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -18866,6 +20622,7 @@ "Ngaliwurru" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -18876,6 +20633,7 @@ "Zarma" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -18886,6 +20644,7 @@ "Djangun" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -18896,6 +20655,7 @@ "Djinang" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -18906,6 +20666,7 @@ "Djeebbana" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -18918,6 +20679,7 @@ "Nenge" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -18928,6 +20690,7 @@ "Djiwarli" ], "Added": "2009-07-29", + "Scope": "None", "Deprecated": "2013-09-10", "Comments": [ "see dze, iin" @@ -18941,6 +20704,7 @@ "Jamsay Dogon" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -18952,6 +20716,7 @@ "Djauan" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -18962,6 +20727,7 @@ "Jangkang" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -18972,6 +20738,7 @@ "Djambarrpuyngu" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -18982,6 +20749,7 @@ "Kapriman" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -18992,6 +20760,7 @@ "Djawi" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -19002,6 +20771,7 @@ "Dakpakha" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -19012,6 +20782,7 @@ "Kadung" ], "Added": "2021-02-20", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -19022,6 +20793,7 @@ "Dakka" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -19032,6 +20804,7 @@ "Kolum So Dogon" ], "Added": "2009-07-29", + "Scope": "None", "Deprecated": "2011-08-16", "Comments": [ "see aqd, dmb" @@ -19045,6 +20818,7 @@ "Kuijau" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -19055,6 +20829,7 @@ "Southeastern Dinka" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "din", "Comments": [], "Prefix": [] @@ -19066,6 +20841,7 @@ "Mazagway" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -19076,6 +20852,7 @@ "Dolgan" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -19086,6 +20863,7 @@ "Dahalik" ], "Added": "2013-09-10", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -19096,6 +20874,7 @@ "Dalmatian" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -19106,6 +20885,7 @@ "Darlong" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -19116,6 +20896,7 @@ "Duma" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -19126,6 +20907,7 @@ "Mombo Dogon" ], "Added": "2011-08-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -19136,6 +20918,7 @@ "Gavak" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -19146,6 +20929,7 @@ "Madhi Madhi" ], "Added": "2012-08-12", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -19156,6 +20940,7 @@ "Dugwor" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -19166,6 +20951,7 @@ "Medefaidrin" ], "Added": "2020-03-28", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -19176,6 +20962,7 @@ "Upper Kinabatangan" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -19186,6 +20973,7 @@ "Domaaki" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -19196,6 +20984,7 @@ "Dameli" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -19206,6 +20995,7 @@ "Dama" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -19227,6 +21017,7 @@ "Kemedzung" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -19237,6 +21028,7 @@ "East Damar" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -19247,6 +21039,7 @@ "Dampelas" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -19258,6 +21051,7 @@ "Tebi" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -19268,6 +21062,7 @@ "Dumpas" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -19278,6 +21073,7 @@ "Mudburra" ], "Added": "2013-09-10", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -19288,6 +21084,7 @@ "Dema" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -19299,6 +21096,7 @@ "Sowari" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -19309,6 +21107,7 @@ "Upper Grand Valley Dani" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -19319,6 +21118,7 @@ "Daonda" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -19329,6 +21129,7 @@ "Ndendeule" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -19339,6 +21140,7 @@ "Dungan" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -19349,6 +21151,7 @@ "Lower Grand Valley Dani" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -19359,6 +21162,7 @@ "Dan" ], "Added": "2013-09-10", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -19369,6 +21173,7 @@ "Dengka" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -19379,6 +21184,7 @@ "Dz\u00F9\u00F9ngoo" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -19390,6 +21196,7 @@ "Northern Lendu" ], "Added": "2018-10-28", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -19400,6 +21207,7 @@ "Danaru" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -19410,6 +21218,7 @@ "Mid Grand Valley Dani" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -19420,6 +21229,7 @@ "Danau" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -19430,6 +21240,7 @@ "Danu" ], "Added": "2012-08-12", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -19440,6 +21251,7 @@ "Western Dani" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -19450,6 +21262,7 @@ "Den\u00ED" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -19460,6 +21273,7 @@ "Dom" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -19470,6 +21284,7 @@ "Dobu" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -19480,6 +21295,7 @@ "Northern Dong" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -19490,6 +21306,7 @@ "Doe" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -19500,6 +21317,7 @@ "Domu" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -19510,6 +21328,7 @@ "Dong" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -19531,6 +21350,7 @@ "Dondo" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -19541,6 +21361,7 @@ "Doso" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -19551,6 +21372,7 @@ "Toura (Papua New Guinea)" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -19561,6 +21383,7 @@ "Dongo" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -19571,6 +21394,7 @@ "Lukpa" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -19581,6 +21405,7 @@ "Dominican Sign Language" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -19591,6 +21416,7 @@ "Dori\u0027o" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -19601,6 +21427,7 @@ "Dogos\u00E9" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -19611,6 +21438,7 @@ "Dass" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -19621,6 +21449,7 @@ "Dombe" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -19631,6 +21460,7 @@ "Doyayo" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -19641,6 +21471,7 @@ "Bussa" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -19651,6 +21482,7 @@ "Dompo" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -19661,6 +21493,7 @@ "Dorze" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -19671,6 +21504,7 @@ "Papar" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -19692,6 +21526,7 @@ "Dair" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -19702,6 +21537,7 @@ "Minderico" ], "Added": "2011-08-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -19712,6 +21548,7 @@ "Darmiya" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -19722,6 +21559,7 @@ "Dolpo" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -19732,6 +21570,7 @@ "Rungus" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -19742,6 +21581,7 @@ "Darkhat" ], "Added": "2009-07-29", + "Scope": "None", "Deprecated": "2010-03-11", "Comments": [], "Prefix": [], @@ -19754,6 +21594,7 @@ "C\u0027Lela" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -19764,6 +21605,7 @@ "Paakantyi" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -19774,6 +21616,7 @@ "West Damar" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -19784,6 +21627,7 @@ "Daro-Matu Melanau" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -19794,6 +21638,7 @@ "Dura" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -19804,6 +21649,7 @@ "Dororo" ], "Added": "2009-07-29", + "Scope": "None", "Deprecated": "2020-03-28", "Comments": [], "Prefix": [], @@ -19816,6 +21662,7 @@ "Gedeo" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -19826,6 +21673,7 @@ "Drents" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -19836,6 +21684,7 @@ "Rukai" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -19846,6 +21695,7 @@ "Darwazi" ], "Added": "2009-07-29", + "Scope": "None", "Deprecated": "2010-03-11", "Comments": [], "Prefix": [], @@ -19858,6 +21708,7 @@ "Darai" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -19869,6 +21720,7 @@ ], "Added": "2005-10-16", "SuppressScript": "Latn", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -19879,6 +21731,7 @@ "Dutch Sign Language" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -19889,6 +21742,7 @@ "Daasanach" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -19899,6 +21753,7 @@ "Disa" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -19909,6 +21764,7 @@ "Dokshi" ], "Added": "2023-03-17", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -19919,6 +21775,7 @@ "Danish Sign Language" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -19929,6 +21786,7 @@ "Dusner" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -19939,6 +21797,7 @@ "Desiya" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -19949,6 +21808,7 @@ "Tadaksahak" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -19959,6 +21819,7 @@ "Mardin Sign Language" ], "Added": "2022-02-25", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -19969,6 +21830,7 @@ "Daur" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -19979,6 +21841,7 @@ "Labuk-Kinabatangan Kadazan" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -19989,6 +21852,7 @@ "Ditidaht" ], "Added": "2011-08-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -19999,6 +21863,7 @@ "Adithinngithigh" ], "Added": "2012-08-12", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -20009,6 +21874,7 @@ "Ana Tinga Dogon" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -20019,6 +21885,7 @@ "Tene Kan Dogon" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -20029,6 +21896,7 @@ "Tomo Kan Dogon" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -20039,6 +21907,7 @@ "Daats\u02BC\u00EDin" ], "Added": "2016-05-30", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -20049,6 +21918,7 @@ "Tommo So Dogon" ], "Added": "2012-08-12", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -20060,6 +21930,7 @@ "Central Dusun" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -20070,6 +21941,7 @@ "Lotud" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -20080,6 +21952,7 @@ "Toro So Dogon" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -20090,6 +21963,7 @@ "Toro Tegu Dogon" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -20100,6 +21974,7 @@ "Tebul Ure Dogon" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -20110,6 +21985,7 @@ "Dotyali" ], "Added": "2012-08-12", + "Scope": "None", "MacroLanguage": "ne", "Comments": [], "Prefix": [] @@ -20121,6 +21997,7 @@ "Duala" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -20131,6 +22008,7 @@ "Dubli" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -20141,6 +22019,7 @@ "Duna" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -20151,6 +22030,7 @@ "Hun-Saare" ], "Added": "2009-07-29", + "Scope": "None", "Deprecated": "2019-04-16", "Comments": [ "see uth, uss" @@ -20164,6 +22044,7 @@ "Umiray Dumaget Agta" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -20175,6 +22056,7 @@ "Drubea" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -20186,6 +22068,7 @@ "Chiduruma" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -20196,6 +22079,7 @@ "Dungra Bhil" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -20206,6 +22090,7 @@ "Dumun" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -20216,6 +22101,7 @@ "Dhuwal" ], "Added": "2009-07-29", + "Scope": "None", "Deprecated": "2016-05-30", "Comments": [ "see dwu, dwy" @@ -20229,6 +22115,7 @@ "Uyajitaya" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -20239,6 +22126,7 @@ "Alabat Island Agta" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -20249,6 +22137,7 @@ "Middle Dutch (ca. 1050-1350)" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -20259,6 +22148,7 @@ "Dusun Deyah" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -20269,6 +22159,7 @@ "Dupaninan Agta" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -20279,6 +22170,7 @@ "Duano" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "ms", "Comments": [], "Prefix": [] @@ -20290,6 +22182,7 @@ "Dusun Malang" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -20300,6 +22193,7 @@ "Dii" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -20310,6 +22204,7 @@ "Dumi" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -20320,6 +22215,7 @@ "Drung" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -20330,6 +22226,7 @@ "Duvle" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -20340,6 +22237,7 @@ "Dusun Witu" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -20350,6 +22248,7 @@ "Duungooma" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -20360,6 +22259,7 @@ "Dicamay Agta" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -20370,6 +22270,7 @@ "Duli-Gey" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -20380,6 +22281,7 @@ "Duau" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -20390,6 +22292,7 @@ "Diri" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -20400,6 +22303,7 @@ "Dawik Kui" ], "Added": "2020-03-28", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -20410,6 +22314,7 @@ "Walo Kumbe Dogon" ], "Added": "2009-07-29", + "Scope": "None", "Deprecated": "2012-08-12", "Comments": [ "see dbt, dbw" @@ -20423,6 +22328,7 @@ "Dawro" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -20433,6 +22339,7 @@ "Dutton World Speedwords" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -20443,6 +22350,7 @@ "Dhuwal" ], "Added": "2016-05-30", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -20453,6 +22361,7 @@ "Dawawa" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -20463,6 +22372,7 @@ "Dhuwaya" ], "Added": "2016-05-30", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -20473,6 +22383,7 @@ "Dewas Rai" ], "Added": "2018-10-28", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -20483,6 +22394,7 @@ "Dyan" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -20493,6 +22405,7 @@ "Dyaberdyaber" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -20503,6 +22416,7 @@ "Dyugun" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -20513,6 +22427,7 @@ "Villa Viciosa Agta" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -20523,6 +22438,7 @@ "Djimini Senoufo" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -20533,6 +22449,7 @@ "Yanda Dom Dogon" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -20544,6 +22461,7 @@ "Dhanggatti" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -20554,6 +22472,7 @@ "Jola-Fonyi" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -20564,6 +22483,7 @@ "Dyarim" ], "Added": "2023-03-17", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -20574,6 +22494,7 @@ "Dyula" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -20585,6 +22506,7 @@ "Dyaabugay" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -20595,6 +22517,7 @@ "Tunzu" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -20605,6 +22528,7 @@ "Daza" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -20615,6 +22539,7 @@ "Djiwarli" ], "Added": "2013-09-10", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -20625,6 +22550,7 @@ "Dazaga" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -20635,6 +22561,7 @@ "Dzalakha" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -20645,6 +22572,7 @@ "Dzando" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -20655,6 +22583,7 @@ "Karenggapa" ], "Added": "2013-09-10", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -20665,6 +22594,7 @@ "Beginci" ], "Added": "2020-03-28", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -20675,6 +22605,7 @@ "Ebughu" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -20685,6 +22616,7 @@ "Eastern Bontok" ], "Added": "2010-03-11", + "Scope": "None", "MacroLanguage": "bnc", "Comments": [], "Prefix": [] @@ -20696,6 +22628,7 @@ "Teke-Ebo" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -20706,6 +22639,7 @@ "Ebri\u00E9" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -20717,6 +22651,7 @@ "Kiembu" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -20727,6 +22662,7 @@ "Eteocretan" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -20737,6 +22673,7 @@ "Ecuadorian Sign Language" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -20747,6 +22684,7 @@ "Eteocypriot" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -20757,6 +22695,7 @@ "E" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -20767,6 +22706,7 @@ "Efai" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -20777,6 +22717,7 @@ "Efe" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -20787,6 +22728,7 @@ "Efik" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -20797,6 +22739,7 @@ "Ega" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -20807,6 +22750,7 @@ "Emilian" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -20817,6 +22761,7 @@ "Benamanga" ], "Added": "2022-02-25", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -20827,6 +22772,7 @@ "Eggon" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -20848,6 +22794,7 @@ "Egyptian (Ancient)" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -20858,6 +22805,7 @@ "Miyakubo Sign Language" ], "Added": "2021-02-20", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -20868,6 +22816,7 @@ "Ehueun" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -20878,6 +22827,7 @@ "Eipomek" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -20888,6 +22838,7 @@ "Eitiep" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -20898,6 +22849,7 @@ "Askopan" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -20908,6 +22860,7 @@ "Ejamat" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -20918,6 +22871,7 @@ "Ekajuk" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -20928,6 +22882,7 @@ "Eastern Karnic" ], "Added": "2013-09-10", + "Scope": "None", "Deprecated": "2020-03-28", "Comments": [], "Prefix": [] @@ -20939,6 +22894,7 @@ "Ekit" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -20949,6 +22905,7 @@ "Ekari" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -20959,6 +22916,7 @@ "Eki" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -20969,6 +22927,7 @@ "Standard Estonian" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "et", "Comments": [], "Prefix": [] @@ -20981,6 +22940,7 @@ "Kol" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -20991,6 +22951,7 @@ "Elip" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -21001,6 +22962,7 @@ "Koti" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -21011,6 +22973,7 @@ "Ekpeye" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -21021,6 +22984,7 @@ "Yace" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -21031,6 +22995,7 @@ "Eastern Kayah" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -21041,6 +23006,7 @@ "Elepi" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -21051,6 +23017,7 @@ "El Hugeirat" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -21061,6 +23028,7 @@ "Nding" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -21071,6 +23039,7 @@ "Elkei" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -21081,6 +23050,7 @@ "Eleme" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -21091,6 +23061,7 @@ "El Molo" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -21101,6 +23072,7 @@ "Elpaputih" ], "Added": "2009-07-29", + "Scope": "None", "Deprecated": "2012-08-12", "Comments": [ "see amq, plh" @@ -21114,6 +23086,7 @@ "Elu" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -21124,6 +23097,7 @@ "Elamite" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -21134,6 +23108,7 @@ "Emai-Iuleha-Ora" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -21144,6 +23119,7 @@ "Embaloh" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -21154,6 +23130,7 @@ "Emerillon" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -21164,6 +23141,7 @@ "Eastern Meohang" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -21174,6 +23152,7 @@ "Mussau-Emira" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -21184,6 +23163,7 @@ "Eastern Maninkakan" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "man", "Comments": [], "Prefix": [] @@ -21195,6 +23175,7 @@ "Mamulique" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -21205,6 +23186,7 @@ "Eman" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -21215,6 +23197,7 @@ "Emok" ], "Added": "2009-07-29", + "Scope": "None", "Deprecated": "2014-02-28", "Comments": [], "Prefix": [] @@ -21226,6 +23209,7 @@ "Northern Ember\u00E1" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -21236,6 +23220,7 @@ "Eastern Minyag" ], "Added": "2021-02-20", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -21246,6 +23231,7 @@ "Pacific Gulf Yupik" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -21256,6 +23242,7 @@ "Eastern Muria" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -21266,6 +23253,7 @@ "Emplawas" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -21276,6 +23264,7 @@ "Erromintxela" ], "Added": "2010-03-11", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -21286,6 +23275,7 @@ "Epigraphic Mayan" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -21296,6 +23286,7 @@ "Mbessa" ], "Added": "2021-02-20", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -21306,6 +23297,7 @@ "Apali" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -21316,6 +23308,7 @@ "Markweeta" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "kln", "Comments": [], "Prefix": [] @@ -21327,6 +23320,7 @@ "En" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -21337,6 +23331,7 @@ "Ende" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -21347,6 +23342,7 @@ "Forest Enets" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -21357,6 +23353,7 @@ "Tundra Enets" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -21367,6 +23364,7 @@ "Enlhet" ], "Added": "2014-02-28", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -21377,6 +23375,7 @@ "Middle English (1100-1500)" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -21387,6 +23386,7 @@ "Engenni" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -21397,6 +23397,7 @@ "Enggano" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -21407,6 +23408,7 @@ "Enga" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -21418,6 +23420,7 @@ "Emem" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -21428,6 +23431,7 @@ "Enu" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -21438,6 +23442,7 @@ "Enwan (Edo State)" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -21448,6 +23453,7 @@ "Enwan (Akwa Ibom State)" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -21458,6 +23464,7 @@ "Enxet" ], "Added": "2014-02-28", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -21468,6 +23475,7 @@ "Beti (C\u00F4te d\u0027Ivoire)" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -21478,6 +23486,7 @@ "Epie" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -21488,6 +23497,7 @@ "Eravallan" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -21498,6 +23508,7 @@ "Sie" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -21508,6 +23519,7 @@ "Eruwa" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -21518,6 +23530,7 @@ "Ogea" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -21528,6 +23541,7 @@ "South Efate" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -21538,6 +23552,7 @@ "Horpa" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -21548,6 +23563,7 @@ "Erre" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -21558,6 +23574,7 @@ "Ersu" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -21568,6 +23585,7 @@ "Eritai" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -21578,6 +23596,7 @@ "Erokwanas" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -21588,6 +23607,7 @@ "Ese Ejja" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -21598,6 +23618,7 @@ "Aheri Gondi" ], "Added": "2016-05-30", + "Scope": "None", "MacroLanguage": "gon", "Comments": [], "Prefix": [] @@ -21609,6 +23630,7 @@ "Eshtehardi" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -21619,6 +23641,7 @@ "North Alaskan Inupiatun" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "ik", "Comments": [], "Prefix": [] @@ -21630,6 +23653,7 @@ "Northwest Alaska Inupiatun" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "ik", "Comments": [], "Prefix": [] @@ -21641,6 +23665,7 @@ "Egypt Sign Language" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -21651,6 +23676,7 @@ "Esuma" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -21661,6 +23687,7 @@ "Salvadoran Sign Language" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -21671,6 +23698,7 @@ "Estonian Sign Language" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -21681,6 +23709,7 @@ "Esselen" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -21691,6 +23720,7 @@ "Central Siberian Yupik" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -21701,6 +23731,7 @@ "Central Yupik" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -21722,6 +23753,7 @@ "Eskayan" ], "Added": "2014-04-06", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -21732,6 +23764,7 @@ "Etebi" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -21742,6 +23775,7 @@ "Etchemin" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -21752,6 +23786,7 @@ "Ethiopian Sign Language" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -21762,6 +23797,7 @@ "Eton (Vanuatu)" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -21772,6 +23808,7 @@ "Eton (Cameroon)" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -21782,6 +23819,7 @@ "Edolo" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -21792,6 +23830,7 @@ "Yekhee" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -21802,6 +23841,7 @@ "Etruscan" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -21812,6 +23852,7 @@ "Ejagham" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -21822,6 +23863,7 @@ "Eten" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -21832,6 +23874,7 @@ "Semimi" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -21842,6 +23885,7 @@ "Eudeve" ], "Added": "2023-03-17", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -21863,6 +23907,7 @@ "Even" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -21873,6 +23918,7 @@ "Uvbie" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -21883,6 +23929,7 @@ "Evenki" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -21893,6 +23940,7 @@ "Ewondo" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -21903,6 +23951,7 @@ "Extremaduran" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -21913,6 +23962,7 @@ "Eyak" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -21923,6 +23973,7 @@ "Keiyo" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "kln", "Comments": [], "Prefix": [] @@ -21934,6 +23985,7 @@ "Ezaa" ], "Added": "2013-09-10", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -21944,6 +23996,7 @@ "Uzekwe" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -21954,6 +24007,7 @@ "Fasu" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -21964,6 +24018,7 @@ "Fa d\u0027Ambu" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -21974,6 +24029,7 @@ "Wagi" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -21984,6 +24040,7 @@ "Fagani" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -21994,6 +24051,7 @@ "Finongan" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -22004,6 +24062,7 @@ "Baissa Fali" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -22014,6 +24073,7 @@ "Faiwol" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -22024,6 +24084,7 @@ "Faita" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -22034,6 +24095,7 @@ "Fang (Cameroon)" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -22044,6 +24106,7 @@ "South Fali" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -22054,6 +24117,7 @@ "Fam" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -22064,6 +24128,7 @@ "Fang (Equatorial Guinea)" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -22074,6 +24139,7 @@ "Paloor" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -22084,6 +24150,7 @@ "Fataleka" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -22094,6 +24161,7 @@ "Fanti" ], "Added": "2005-10-16", + "Scope": "None", "MacroLanguage": "ak", "Comments": [], "Prefix": [] @@ -22105,6 +24173,7 @@ "Fayu" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -22115,6 +24184,7 @@ "Fala" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -22125,6 +24195,7 @@ "Southwestern Fars" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -22135,6 +24206,7 @@ "Northwestern Fars" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -22145,6 +24217,7 @@ "West Albay Bikol" ], "Added": "2010-03-11", + "Scope": "None", "MacroLanguage": "bik", "Comments": [], "Prefix": [] @@ -22156,6 +24229,7 @@ "Quebec Sign Language" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -22166,6 +24240,7 @@ "Feroge" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -22176,6 +24251,7 @@ "Foia Foia" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -22186,6 +24262,7 @@ "Maasina Fulfulde" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "ff", "Comments": [], "Prefix": [] @@ -22197,6 +24274,7 @@ "Fongoro" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -22207,6 +24285,7 @@ "Nobiin" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -22217,6 +24296,7 @@ "Fyer" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -22227,6 +24307,7 @@ "Faifi" ], "Added": "2020-06-08", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -22238,6 +24319,7 @@ "Pilipino" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -22248,6 +24330,7 @@ "Fipa" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -22258,6 +24341,7 @@ "Firan" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -22269,6 +24353,7 @@ "Me\u00E4nkieli" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -22290,6 +24375,7 @@ "Fiwaga" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -22300,6 +24386,7 @@ "Kirya-Konz\u0259l" ], "Added": "2012-08-12", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -22310,6 +24397,7 @@ "Kven Finnish" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -22320,6 +24408,7 @@ "Kalispel-Pend d\u0027Oreille" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -22330,6 +24419,7 @@ "Foau" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -22340,6 +24430,7 @@ "Fali" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -22350,6 +24441,7 @@ "North Fali" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -22360,6 +24452,7 @@ "Flinders Island" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -22370,6 +24463,7 @@ "Fuliiru" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -22381,6 +24475,7 @@ "Tsotsitaal" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -22391,6 +24486,7 @@ "Fe\u0027fe\u0027" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -22401,6 +24497,7 @@ "Far Western Muria" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -22411,6 +24508,7 @@ "Fanbak" ], "Added": "2016-05-30", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -22421,6 +24519,7 @@ "Fanagalo" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -22431,6 +24530,7 @@ "Fania" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -22441,6 +24541,7 @@ "Foodo" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -22451,6 +24552,7 @@ "Foi" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -22461,6 +24563,7 @@ "Foma" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -22471,6 +24574,7 @@ "Fon" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -22481,6 +24585,7 @@ "Fore" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -22491,6 +24596,7 @@ "Siraya" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -22512,6 +24618,7 @@ "Fernando Po Creole English" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -22522,6 +24629,7 @@ "Fas" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -22532,6 +24640,7 @@ "Cajun French" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -22542,6 +24651,7 @@ "Fordata" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -22552,6 +24662,7 @@ "Frankish" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -22562,6 +24673,7 @@ "Middle French (ca. 1400-1600)" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -22572,6 +24684,7 @@ "Old French (842-ca. 1400)" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -22583,6 +24696,7 @@ "Francoproven\u00E7al" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -22593,6 +24707,7 @@ "Forak" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -22604,6 +24719,7 @@ ], "Added": "2006-03-08", "SuppressScript": "Latn", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -22615,6 +24731,7 @@ ], "Added": "2006-03-08", "SuppressScript": "Latn", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -22625,6 +24742,7 @@ "Fortsenal" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -22635,6 +24753,7 @@ "Finnish Sign Language" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -22645,6 +24764,7 @@ "French Sign Language" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -22657,6 +24777,7 @@ "suomenruotsalainen viittomakieli" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -22667,6 +24788,7 @@ "Adamawa Fulfulde" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "ff", "Comments": [], "Prefix": [] @@ -22678,6 +24800,7 @@ "Pulaar" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "ff", "Comments": [], "Prefix": [] @@ -22689,6 +24812,7 @@ "East Futuna" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -22699,6 +24823,7 @@ "Borgu Fulfulde" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "ff", "Comments": [], "Prefix": [] @@ -22710,6 +24835,7 @@ "Pular" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "ff", "Comments": [], "Prefix": [] @@ -22721,6 +24847,7 @@ "Western Niger Fulfulde" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "ff", "Comments": [], "Prefix": [] @@ -22732,6 +24859,7 @@ "Bagirmi Fulfulde" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "ff", "Comments": [], "Prefix": [] @@ -22743,6 +24871,7 @@ "Ko" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -22753,6 +24882,7 @@ "Fum" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -22763,6 +24893,7 @@ "Fulni\u00F4" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -22773,6 +24904,7 @@ "Central-Eastern Niger Fulfulde" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "ff", "Comments": [], "Prefix": [] @@ -22784,6 +24916,7 @@ "Friulian" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -22794,6 +24927,7 @@ "Futuna-Aniwa" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -22804,6 +24938,7 @@ "Furu" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -22814,6 +24949,7 @@ "Nigerian Fulfulde" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "ff", "Comments": [], "Prefix": [] @@ -22825,6 +24961,7 @@ "Fuyug" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -22835,6 +24972,7 @@ "Fur" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -22845,6 +24983,7 @@ "Fw\u00E2i" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -22855,6 +24994,7 @@ "Fwe" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -22865,6 +25005,7 @@ "Ga" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -22875,6 +25016,7 @@ "Gabri" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -22885,6 +25027,7 @@ "Mixed Great Andamanese" ], "Added": "2010-03-11", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -22895,6 +25038,7 @@ "Gaddang" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -22905,6 +25049,7 @@ "Guarequena" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -22915,6 +25060,7 @@ "Gende" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -22925,6 +25071,7 @@ "Gagauz" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -22935,6 +25082,7 @@ "Alekano" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -22945,6 +25093,7 @@ "Borei" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -22955,6 +25104,7 @@ "Gadsup" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -22965,6 +25115,7 @@ "Gamkonora" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -22975,6 +25126,7 @@ "Galolen" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -22985,6 +25137,7 @@ "Kandawo" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -22995,6 +25148,7 @@ "Gan Chinese" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "zh", "Comments": [], "Prefix": [] @@ -23006,6 +25160,7 @@ "Gants" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -23016,6 +25171,7 @@ "Gal" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -23026,6 +25182,7 @@ "Gata\u0027" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -23036,6 +25193,7 @@ "Galeya" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -23046,6 +25204,7 @@ "Adiwasi Garasia" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -23056,6 +25215,7 @@ "Kenati" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -23066,6 +25226,7 @@ "Mudhili Gadaba" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -23076,6 +25237,7 @@ "Gabutamon" ], "Added": "2009-07-29", + "Scope": "None", "Deprecated": "2010-03-11", "Comments": [], "Prefix": [], @@ -23088,6 +25250,7 @@ "Nobonob" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -23098,6 +25261,7 @@ "Borana-Arsi-Guji Oromo" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "om", "Comments": [], "Prefix": [] @@ -23109,6 +25273,7 @@ "Gayo" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -23119,6 +25284,7 @@ "West Central Oromo" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "om", "Comments": [], "Prefix": [] @@ -23141,6 +25307,7 @@ "Kaytetye" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -23151,6 +25318,7 @@ "Garawa" ], "Added": "2009-07-29", + "Scope": "None", "Deprecated": "2012-08-12", "Comments": [ "see wny, wrk" @@ -23164,6 +25332,7 @@ "Karajarri" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -23174,6 +25343,7 @@ "Niksek" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -23184,6 +25354,7 @@ "Gaikundi" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -23194,6 +25365,7 @@ "Gbanziri" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -23204,6 +25376,7 @@ "Defi Gbe" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -23214,6 +25387,7 @@ "Galela" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -23224,6 +25398,7 @@ "Bodo Gadaba" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -23234,6 +25409,7 @@ "Gaddi" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -23244,6 +25420,7 @@ "Gamit" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -23254,6 +25431,7 @@ "Garhwali" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -23264,6 +25442,7 @@ "Mo\u0027da" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -23274,6 +25453,7 @@ "Northern Grebo" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "grb", "Comments": [], "Prefix": [] @@ -23285,6 +25465,7 @@ "Gbaya-Bossangoa" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "gba", "Comments": [], "Prefix": [] @@ -23296,6 +25477,7 @@ "Gbaya-Bozoum" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "gba", "Comments": [], "Prefix": [] @@ -23307,6 +25489,7 @@ "Gbagyi" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -23317,6 +25500,7 @@ "Gbesi Gbe" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -23327,6 +25511,7 @@ "Gagadu" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -23337,6 +25522,7 @@ "Gbanu" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -23347,6 +25533,7 @@ "Gabi-Gabi" ], "Added": "2013-09-10", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -23357,6 +25544,7 @@ "Eastern Xwla Gbe" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -23367,6 +25555,7 @@ "Gbari" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -23377,6 +25566,7 @@ "Zoroastrian Dari" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -23387,6 +25577,7 @@ "Mali" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -23397,6 +25588,7 @@ "Ganggalida" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -23407,6 +25599,7 @@ "Galice" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -23417,6 +25610,7 @@ "Guadeloupean Creole French" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -23427,6 +25621,7 @@ "Grenadian Creole English" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -23437,6 +25632,7 @@ "Gaina" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -23447,6 +25643,7 @@ "Guianese Creole French" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -23457,6 +25654,7 @@ "Colonia Tovar German" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -23467,6 +25665,7 @@ "Gade Lohar" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "raj", "Comments": [], "Prefix": [] @@ -23478,6 +25677,7 @@ "Pottangi Ollar Gadaba" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -23488,6 +25688,7 @@ "Gugu Badhun" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -23498,6 +25699,7 @@ "Gedaged" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -23508,6 +25710,7 @@ "Gude" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -23518,6 +25721,7 @@ "Guduf-Gava" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -23528,6 +25732,7 @@ "Ga\u0027dang" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -23539,6 +25744,7 @@ "Gajirrabeng" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -23549,6 +25755,7 @@ "Gundi" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -23559,6 +25766,7 @@ "Gurdjar" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -23569,6 +25777,7 @@ "Gadang" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -23579,6 +25788,7 @@ "Dirasha" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -23589,6 +25799,7 @@ "Laal" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -23599,6 +25810,7 @@ "Umanakaina" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -23609,6 +25821,7 @@ "Ghodoberi" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -23619,6 +25832,7 @@ "Mehri" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -23629,6 +25843,7 @@ "Wipi" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -23639,6 +25854,7 @@ "Ghandruk Sign Language" ], "Added": "2012-08-12", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -23649,6 +25865,7 @@ "Kungardutyi" ], "Added": "2013-09-10", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -23659,6 +25876,7 @@ "Gudu" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -23669,6 +25887,7 @@ "Godwari" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -23679,6 +25898,7 @@ "Geruma" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -23689,6 +25909,7 @@ "Kire" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -23699,6 +25920,7 @@ "Gboloo Grebo" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "grb", "Comments": [], "Prefix": [] @@ -23710,6 +25932,7 @@ "Gade" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -23720,6 +25943,7 @@ "Gerai" ], "Added": "2020-03-28", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -23730,6 +25954,7 @@ "Gengle" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -23741,6 +25966,7 @@ "Hutterisch" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -23751,6 +25977,7 @@ "Gebe" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -23761,6 +25988,7 @@ "Gen" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -23771,6 +25999,7 @@ "Ywom" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -23781,6 +26010,7 @@ "ut-Ma\u0027in" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -23802,6 +26032,7 @@ "Geme" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -23812,6 +26043,7 @@ "Geser-Gorom" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -23822,6 +26054,7 @@ "Eviya" ], "Added": "2014-02-28", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -23832,6 +26065,7 @@ "Gera" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -23842,6 +26076,7 @@ "Garre" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -23852,6 +26087,7 @@ "Enya" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -23862,6 +26098,7 @@ "Geez" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -23872,6 +26109,7 @@ "Patpatar" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -23882,6 +26120,7 @@ "Gafat" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -23892,6 +26131,7 @@ "Mangetti Dune \u01C3Xung" ], "Added": "2012-08-12", + "Scope": "None", "Deprecated": "2015-02-12", "Comments": [], "Prefix": [], @@ -23904,6 +26144,7 @@ "Gao" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -23914,6 +26155,7 @@ "Gbii" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -23924,6 +26166,7 @@ "Gugadj" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -23934,6 +26177,7 @@ "Gurr-goni" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -23944,6 +26188,7 @@ "Gurgula" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -23954,6 +26199,7 @@ "Kungarakany" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -23964,6 +26210,7 @@ "Ganglau" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -23974,6 +26221,7 @@ "Eastern Gurung" ], "Added": "2009-07-29", + "Scope": "None", "Deprecated": "2016-05-30", "Comments": [], "Prefix": [], @@ -23986,6 +26234,7 @@ "Southern Gondi" ], "Added": "2009-07-29", + "Scope": "None", "Deprecated": "2016-05-30", "Comments": [ "see esg, wsg" @@ -23999,6 +26248,7 @@ "Aghu Tharnggalu" ], "Added": "2009-07-29", + "Scope": "None", "Deprecated": "2013-09-10", "Comments": [ "see gtu, ikr" @@ -24012,6 +26262,7 @@ "Gitua" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -24023,6 +26274,7 @@ "Gban" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -24033,6 +26285,7 @@ "Gogodala" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -24043,6 +26296,7 @@ "Ghadam\u00E8s" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -24053,6 +26307,7 @@ "Hiberno-Scottish Gaelic" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -24063,6 +26318,7 @@ "Southern Ghale" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -24073,6 +26329,7 @@ "Northern Ghale" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -24083,6 +26340,7 @@ "Geko Karen" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -24093,6 +26351,7 @@ "Ghulfan" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -24103,6 +26362,7 @@ "Ghanongga" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -24113,6 +26373,7 @@ "Ghomara" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -24123,6 +26384,7 @@ "Ghera" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -24133,6 +26395,7 @@ "Guhu-Samane" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -24144,6 +26407,7 @@ "Kutang Ghale" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -24154,6 +26418,7 @@ "Kija" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -24164,6 +26429,7 @@ "Gibanawa" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -24174,6 +26440,7 @@ "Gail" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -24184,6 +26451,7 @@ "Gidar" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -24195,6 +26463,7 @@ "Gu\u00E9bie" ], "Added": "2017-02-23", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -24205,6 +26474,7 @@ "Goaria" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -24215,6 +26485,7 @@ "Githabul" ], "Added": "2013-09-10", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -24225,6 +26496,7 @@ "Girirra" ], "Added": "2021-02-20", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -24235,6 +26507,7 @@ "Gilbertese" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -24245,6 +26518,7 @@ "Gimi (Eastern Highlands)" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -24255,6 +26529,7 @@ "Hinukh" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -24265,6 +26540,7 @@ "Gelao" ], "Added": "2009-07-29", + "Scope": "None", "Deprecated": "2012-08-12", "Comments": [ "see aou, gqu" @@ -24278,6 +26554,7 @@ "Gimi (West New Britain)" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -24288,6 +26565,7 @@ "Green Gelao" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -24298,6 +26576,7 @@ "Red Gelao" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -24308,6 +26587,7 @@ "North Giziga" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -24318,6 +26598,7 @@ "Gitxsan" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -24328,6 +26609,7 @@ "Mulao" ], "Added": "2012-08-12", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -24338,6 +26620,7 @@ "White Gelao" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -24348,6 +26631,7 @@ "Gilima" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -24358,6 +26642,7 @@ "Giyug" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -24368,6 +26653,7 @@ "South Giziga" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -24378,6 +26664,7 @@ "Geji" ], "Added": "2009-07-29", + "Scope": "None", "Deprecated": "2021-02-20", "Comments": [ "see gyz, zbu" @@ -24391,6 +26678,7 @@ "Kachi Koli" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -24401,6 +26689,7 @@ "Gunditjmara" ], "Added": "2013-09-10", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -24411,6 +26700,7 @@ "Gonja" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -24421,6 +26711,7 @@ "Gurindji Kriol" ], "Added": "2016-05-30", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -24431,6 +26722,7 @@ "Gujari" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "raj", "Comments": [], "Prefix": [] @@ -24442,6 +26734,7 @@ "Guya" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -24452,6 +26745,7 @@ "Mag\u0268 (Madang Province)" ], "Added": "2018-03-08", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -24462,6 +26756,7 @@ "Ndai" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -24472,6 +26767,7 @@ "Gokana" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -24482,6 +26778,7 @@ "Kok-Nar" ], "Added": "2012-08-12", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -24492,6 +26789,7 @@ "Guinea Kpelle" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "kpe", "Comments": [], "Prefix": [] @@ -24503,6 +26801,7 @@ "\u01C2Ungkue" ], "Added": "2015-02-12", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -24513,6 +26812,7 @@ "Belning" ], "Added": "2021-02-20", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -24523,6 +26823,7 @@ "Bon Gula" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -24533,6 +26834,7 @@ "Nanai" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -24544,6 +26846,7 @@ "Northwest Pashayi" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -24554,6 +26857,7 @@ "Guliguli" ], "Added": "2009-07-29", + "Scope": "None", "Deprecated": "2020-03-28", "Comments": [], "Prefix": [], @@ -24566,6 +26870,7 @@ "Gula Iro" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -24576,6 +26881,7 @@ "Gilaki" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -24586,6 +26892,7 @@ "Garlali" ], "Added": "2013-09-10", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -24596,6 +26903,7 @@ "Galambu" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -24606,6 +26914,7 @@ "Glaro-Twabo" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -24616,6 +26925,7 @@ "Gula (Chad)" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -24626,6 +26936,7 @@ "Glavda" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -24636,6 +26947,7 @@ "Gule" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -24646,6 +26958,7 @@ "Gambera" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -24656,6 +26969,7 @@ "Gula\u0027alaa" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -24666,6 +26980,7 @@ "M\u00E1ghd\u00EC" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -24687,6 +27002,7 @@ "Mag\u0268yi" ], "Added": "2014-02-28", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -24697,6 +27013,7 @@ "Middle High German (ca. 1050-1500)" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -24707,6 +27024,7 @@ "Middle Low German" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -24717,6 +27035,7 @@ "Gbaya-Mbodomo" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "gba", "Comments": [], "Prefix": [] @@ -24728,6 +27047,7 @@ "Gimnime" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -24750,6 +27070,7 @@ "Mirniny" ], "Added": "2020-03-28", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -24760,6 +27081,7 @@ "Gumalu" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -24770,6 +27092,7 @@ "Gamo" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -24791,6 +27114,7 @@ "Magoma" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -24801,6 +27125,7 @@ "Mycenaean Greek" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -24811,6 +27136,7 @@ "Mgbolizhia" ], "Added": "2013-09-10", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -24821,6 +27147,7 @@ "Kaansa" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -24831,6 +27158,7 @@ "Gangte" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -24841,6 +27169,7 @@ "Guanche" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -24851,6 +27180,7 @@ "Zulgo-Gemzek" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -24861,6 +27191,7 @@ "Ganang" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -24871,6 +27202,7 @@ "Ngangam" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -24881,6 +27213,7 @@ "Lere" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -24891,6 +27224,7 @@ "Gooniyandi" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -24901,6 +27235,7 @@ "Ngen" ], "Added": "2018-03-08", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -24911,6 +27246,7 @@ "\u01C1Gana" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -24921,6 +27257,7 @@ "Gangulu" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -24931,6 +27268,7 @@ "Ginuman" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -24941,6 +27279,7 @@ "Gumatj" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -24951,6 +27290,7 @@ "Northern Gondi" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "gon", "Comments": [], "Prefix": [] @@ -24962,6 +27302,7 @@ "Gana" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -24972,6 +27313,7 @@ "Gureng Gureng" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -24982,6 +27324,7 @@ "Guntai" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -24992,6 +27335,7 @@ "Gnau" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -25002,6 +27346,7 @@ "Western Bolivian Guaran\u00ED" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "gn", "Comments": [], "Prefix": [] @@ -25013,6 +27358,7 @@ "Ganzi" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -25023,6 +27369,7 @@ "Guro" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -25033,6 +27380,7 @@ "Playero" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -25043,6 +27391,7 @@ "Gorakor" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -25053,6 +27402,7 @@ "Godi\u00E9" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -25063,6 +27413,7 @@ "Gongduk" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -25073,6 +27424,7 @@ "Gofa" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -25083,6 +27435,7 @@ "Gogo" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -25093,6 +27446,7 @@ "Old High German (ca. 750-1050)" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -25103,6 +27457,7 @@ "Gobasi" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -25113,6 +27468,7 @@ "Gowlan" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -25123,6 +27479,7 @@ "Gowli" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -25133,6 +27490,7 @@ "Gola" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -25143,6 +27501,7 @@ "Goan Konkani" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "kok", "Comments": [], "Prefix": [] @@ -25165,6 +27524,7 @@ "Gone Dau" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -25175,6 +27535,7 @@ "Yeretuar" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -25185,6 +27546,7 @@ "Gorap" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -25195,6 +27557,7 @@ "Gorontalo" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -25205,6 +27568,7 @@ "Gronings" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -25215,6 +27579,7 @@ "Gothic" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -25225,6 +27590,7 @@ "Gavar" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -25235,6 +27601,7 @@ "Goo" ], "Added": "2022-02-25", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -25245,6 +27612,7 @@ "Gorowa" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -25255,6 +27623,7 @@ "Gobu" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -25265,6 +27634,7 @@ "Goundo" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -25275,6 +27645,7 @@ "Gozarkhani" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -25285,6 +27656,7 @@ "Gupa-Abawa" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -25295,6 +27667,7 @@ "Ghanaian Pidgin English" ], "Added": "2012-08-12", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -25305,6 +27678,7 @@ "Taiap" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -25315,6 +27689,7 @@ "Ga\u0027anda" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -25325,6 +27700,7 @@ "Guiqiong" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -25335,6 +27711,7 @@ "Guana (Brazil)" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -25345,6 +27722,7 @@ "Gor" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -25355,6 +27733,7 @@ "Qau" ], "Added": "2012-08-12", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -25365,6 +27744,7 @@ "Rajput Garasia" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -25386,6 +27766,7 @@ "Ancient Greek (to 1453)" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -25396,6 +27777,7 @@ "Guruntum-Mbaaru" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -25406,6 +27788,7 @@ "Madi" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -25416,6 +27799,7 @@ "Gbiri-Niragu" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -25426,6 +27810,7 @@ "Ghari" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -25436,6 +27821,7 @@ "Southern Grebo" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "grb", "Comments": [], "Prefix": [] @@ -25458,6 +27844,7 @@ "Kota Marudu Talantang" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -25468,6 +27855,7 @@ "Groma" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -25478,6 +27866,7 @@ "Gorovu" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -25488,6 +27877,7 @@ "Taznatit" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -25498,6 +27888,7 @@ "Gresi" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -25508,6 +27899,7 @@ "Garo" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -25518,6 +27910,7 @@ "Kistane" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -25528,6 +27921,7 @@ "Central Grebo" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "grb", "Comments": [], "Prefix": [] @@ -25539,6 +27933,7 @@ "Gweda" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -25549,6 +27944,7 @@ "Guriaso" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -25559,6 +27955,7 @@ "Barclayville Grebo" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "grb", "Comments": [], "Prefix": [] @@ -25570,6 +27967,7 @@ "Guramalum" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -25580,6 +27978,7 @@ "Ghanaian Sign Language" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -25590,6 +27989,7 @@ "German Sign Language" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -25600,6 +28000,7 @@ "Gusilay" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -25610,6 +28011,7 @@ "Guatemalan Sign Language" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -25621,6 +28023,7 @@ "Gusan" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -25631,6 +28034,7 @@ "Southwest Gbaya" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "gba", "Comments": [], "Prefix": [] @@ -25642,6 +28046,7 @@ "Wasembo" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -25652,6 +28057,7 @@ "Greek Sign Language" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -25665,6 +28071,7 @@ ], "Added": "2006-03-08", "SuppressScript": "Latn", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -25675,6 +28082,7 @@ "Guat\u00F3" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -25685,6 +28093,7 @@ "Gbati-ri" ], "Added": "2009-07-29", + "Scope": "None", "Deprecated": "2015-02-12", "Comments": [], "Prefix": [], @@ -25697,6 +28106,7 @@ "Aghu-Tharnggala" ], "Added": "2013-09-10", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -25707,6 +28117,7 @@ "Shiki" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -25717,6 +28128,7 @@ "Guajaj\u00E1ra" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -25727,6 +28139,7 @@ "Wayuu" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -25737,6 +28150,7 @@ "Yocobou\u00E9 Dida" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -25747,6 +28161,7 @@ "Gurindji" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -25757,6 +28172,7 @@ "Gupapuyngu" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -25767,6 +28183,7 @@ "Paraguayan Guaran\u00ED" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "gn", "Comments": [], "Prefix": [] @@ -25778,6 +28195,7 @@ "Guahibo" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -25788,6 +28206,7 @@ "Eastern Bolivian Guaran\u00ED" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "gn", "Comments": [], "Prefix": [] @@ -25799,6 +28218,7 @@ "Gumuz" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -25809,6 +28229,7 @@ "Sea Island Creole English" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -25819,6 +28240,7 @@ "Guambiano" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -25829,6 +28251,7 @@ "Mby\u00E1 Guaran\u00ED" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "gn", "Comments": [], "Prefix": [] @@ -25840,6 +28263,7 @@ "Guayabero" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -25850,6 +28274,7 @@ "Gunwinggu" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -25860,6 +28285,7 @@ "Ach\u00E9" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -25870,6 +28296,7 @@ "Farefare" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -25880,6 +28307,7 @@ "Guinean Sign Language" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -25890,6 +28318,7 @@ "Mal\u00E9ku Ja\u00EDka" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -25900,6 +28329,7 @@ "Yanomam\u00F6" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -25910,6 +28340,7 @@ "Gey" ], "Added": "2009-07-29", + "Scope": "None", "Deprecated": "2016-05-30", "Comments": [], "Prefix": [], @@ -25922,6 +28353,7 @@ "Gun" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -25932,6 +28364,7 @@ "Gourmanch\u00E9ma" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -25943,6 +28376,7 @@ "Ekegusii" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -25953,6 +28387,7 @@ "Guana (Paraguay)" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -25963,6 +28398,7 @@ "Guanano" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -25973,6 +28409,7 @@ "Duwet" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -25983,6 +28420,7 @@ "Golin" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -25993,6 +28431,7 @@ "Guaj\u00E1" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -26003,6 +28442,7 @@ "Gulay" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -26013,6 +28453,7 @@ "Gurmana" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -26023,6 +28464,7 @@ "Kuku-Yalanji" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -26033,6 +28475,7 @@ "Gavi\u00E3o Do Jiparan\u00E1" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -26043,6 +28486,7 @@ "Par\u00E1 Gavi\u00E3o" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -26053,6 +28497,7 @@ "Gurung" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -26063,6 +28508,7 @@ "Gumawana" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -26073,6 +28519,7 @@ "Guyani" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -26083,6 +28530,7 @@ "Mbato" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -26093,6 +28541,7 @@ "Gwa" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -26104,6 +28553,7 @@ "Kalami" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -26114,6 +28564,7 @@ "Gawwada" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -26124,6 +28575,7 @@ "Gweno" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -26134,6 +28586,7 @@ "Gowro" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -26144,6 +28597,7 @@ "Moo" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -26154,6 +28608,7 @@ "Gwich\u02BCin" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -26164,6 +28619,7 @@ "\u01C0Gwi" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -26174,6 +28630,7 @@ "Awngthim" ], "Added": "2012-08-12", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -26184,6 +28641,7 @@ "Gwandara" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -26194,6 +28652,7 @@ "Gwere" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -26204,6 +28663,7 @@ "Gawar-Bati" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -26214,6 +28674,7 @@ "Guwamu" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -26224,6 +28685,7 @@ "Kwini" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -26234,6 +28696,7 @@ "Gua" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -26244,6 +28707,7 @@ "W\u00E8 Southern" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -26254,6 +28718,7 @@ "Northwest Gbaya" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "gba", "Comments": [], "Prefix": [] @@ -26265,6 +28730,7 @@ "Garus" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -26275,6 +28741,7 @@ "Kayardild" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -26285,6 +28752,7 @@ "Gyem" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -26295,6 +28763,7 @@ "Gungabula" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -26305,6 +28774,7 @@ "Gbayi" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -26315,6 +28785,7 @@ "Gyele" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -26325,6 +28796,7 @@ "Gayil" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -26335,6 +28807,7 @@ "Ng\u00E4bere" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -26345,6 +28818,7 @@ "Guyanese Creole English" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -26355,6 +28829,7 @@ "Gyalsumdo" ], "Added": "2018-03-08", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -26365,6 +28840,7 @@ "Guarayu" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -26375,6 +28851,7 @@ "Gunya" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -26386,6 +28863,7 @@ "Gyaazi" ], "Added": "2021-02-20", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -26396,6 +28874,7 @@ "Ganza" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -26406,6 +28885,7 @@ "Gazi" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -26416,6 +28896,7 @@ "Gane" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -26426,6 +28907,7 @@ "H\u00E4n" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -26436,6 +28918,7 @@ "Hanoi Sign Language" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -26446,6 +28929,7 @@ "Gurani" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -26456,6 +28940,7 @@ "Hatam" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -26466,6 +28951,7 @@ "Eastern Oromo" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "om", "Comments": [], "Prefix": [] @@ -26477,6 +28963,7 @@ "Haiphong Sign Language" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -26487,6 +28974,7 @@ "Hanga" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -26497,6 +28985,7 @@ "Hahon" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -26518,6 +29007,7 @@ "Hajong" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -26528,6 +29018,7 @@ "Hakka Chinese" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "zh", "Comments": [], "Prefix": [] @@ -26539,6 +29030,7 @@ "Halang" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -26549,6 +29041,7 @@ "Hewa" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -26559,6 +29052,7 @@ "Hangaza" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -26569,6 +29063,7 @@ "Hak\u00F6" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -26579,6 +29074,7 @@ "Hupla" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -26589,6 +29085,7 @@ "Ha" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -26599,6 +29096,7 @@ "Harari" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -26609,6 +29107,7 @@ "Haisla" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -26619,6 +29118,7 @@ "Havu" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -26629,6 +29129,7 @@ "Hawaiian" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -26639,6 +29140,7 @@ "Southern Haida" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "hai", "Comments": [], "Prefix": [] @@ -26650,6 +29152,7 @@ "Haya" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -26660,6 +29163,7 @@ "Hazaragi" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -26670,6 +29174,7 @@ "Hamba" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -26680,6 +29185,7 @@ "Huba" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -26690,6 +29196,7 @@ "Heiban" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -26700,6 +29207,7 @@ "Ancient Hebrew" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -26710,6 +29218,7 @@ "Habu" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -26720,6 +29229,7 @@ "Andaman Creole Hindi" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -26730,6 +29240,7 @@ "Huichol" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -26740,6 +29251,7 @@ "Northern Haida" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "hai", "Comments": [], "Prefix": [] @@ -26751,6 +29263,7 @@ "Honduras Sign Language" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -26761,6 +29274,7 @@ "Hadiyya" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -26771,6 +29285,7 @@ "Northern Qiandong Miao" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "hmn", "Comments": [], "Prefix": [] @@ -26782,6 +29297,7 @@ "Herd\u00E9" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -26792,6 +29308,7 @@ "Helong" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -26802,6 +29319,7 @@ "Hehe" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -26812,6 +29330,7 @@ "Heiltsuk" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -26822,6 +29341,7 @@ "Hemba" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -26832,6 +29352,7 @@ "Hai\u01C1om" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -26842,6 +29363,7 @@ "Haigwai" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -26852,6 +29374,7 @@ "Hoia Hoia" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -26862,6 +29385,7 @@ "Kerak" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -26872,6 +29396,7 @@ "Hoyahoya" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -26882,6 +29407,7 @@ "Lamang" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -26892,6 +29418,7 @@ "Hibito" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -26902,6 +29429,7 @@ "Hidatsa" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -26912,6 +29440,7 @@ "Fiji Hindi" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -26922,6 +29451,7 @@ "Kamwe" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -26932,6 +29462,7 @@ "Pamosu" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -26942,6 +29473,7 @@ "Hinduri" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -26952,6 +29484,7 @@ "Hijuk" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -26962,6 +29495,7 @@ "Seit-Kaitetu" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -26972,6 +29506,7 @@ "Hiligaynon" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -26994,6 +29529,7 @@ "Tsoa" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -27004,6 +29540,7 @@ "Himarim\u00E3" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -27014,6 +29551,7 @@ "Hittite" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -27024,6 +29562,7 @@ "Hiw" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -27034,6 +29573,7 @@ "Hixkary\u00E1na" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -27044,6 +29584,7 @@ "Haji" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "ms", "Comments": [], "Prefix": [] @@ -27055,6 +29596,7 @@ "Kahe" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -27065,6 +29607,7 @@ "Hunde" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -27076,6 +29619,7 @@ "Poguli" ], "Added": "2021-02-20", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -27086,6 +29630,7 @@ "Hunjara-Kaina Ke" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -27096,6 +29641,7 @@ "Mel-Khaonh" ], "Added": "2018-03-08", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -27107,6 +29653,7 @@ "Heung Kong Sau Yue" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -27117,6 +29664,7 @@ "Halia" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -27127,6 +29675,7 @@ "Halbi" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -27137,6 +29686,7 @@ "Halang Doan" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -27147,6 +29697,7 @@ "Hlersu" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -27157,6 +29708,7 @@ "Matu Chin" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -27167,6 +29719,7 @@ "Hieroglyphic Luwian" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -27178,6 +29731,7 @@ "Southern Mashan Miao" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "hmn", "Comments": [], "Prefix": [] @@ -27189,6 +29743,7 @@ "Humburi Senni Songhay" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -27200,6 +29755,7 @@ "Central Huishui Miao" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "hmn", "Comments": [], "Prefix": [] @@ -27213,6 +29769,7 @@ "Da-Hua Miao" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "hmn", "Comments": [], "Prefix": [] @@ -27225,6 +29782,7 @@ "Eastern Huishui Miao" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "hmn", "Comments": [], "Prefix": [] @@ -27236,6 +29794,7 @@ "Hmong Don" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -27246,6 +29805,7 @@ "Southwestern Guiyang Hmong" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "hmn", "Comments": [], "Prefix": [] @@ -27258,6 +29818,7 @@ "Southwestern Huishui Miao" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "hmn", "Comments": [], "Prefix": [] @@ -27270,6 +29831,7 @@ "Northern Huishui Miao" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "hmn", "Comments": [], "Prefix": [] @@ -27282,6 +29844,7 @@ "Gejia" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "hmn", "Comments": [], "Prefix": [] @@ -27293,6 +29856,7 @@ "Maek" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -27304,6 +29868,7 @@ "Luopohe Miao" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "hmn", "Comments": [], "Prefix": [] @@ -27316,6 +29881,7 @@ "Central Mashan Miao" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "hmn", "Comments": [], "Prefix": [] @@ -27340,6 +29906,7 @@ "Northern Mashan Miao" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "hmn", "Comments": [], "Prefix": [] @@ -27351,6 +29918,7 @@ "Eastern Qiandong Miao" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "hmn", "Comments": [], "Prefix": [] @@ -27362,6 +29930,7 @@ "Hmar" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -27372,6 +29941,7 @@ "Southern Qiandong Miao" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "hmn", "Comments": [], "Prefix": [] @@ -27383,6 +29953,7 @@ "Hamtai" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -27393,6 +29964,7 @@ "Hamap" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -27403,6 +29975,7 @@ "Hmong D\u00F4" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -27414,6 +29987,7 @@ "Western Mashan Miao" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "hmn", "Comments": [], "Prefix": [] @@ -27437,6 +30011,7 @@ "Southern Guiyang Miao" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "hmn", "Comments": [], "Prefix": [] @@ -27449,6 +30024,7 @@ "Sinicized Miao" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "hmn", "Comments": [], "Prefix": [] @@ -27460,6 +30036,7 @@ "Mina (Cameroon)" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -27470,6 +30047,7 @@ "Southern Hindko" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "lah", "Comments": [], "Prefix": [] @@ -27481,6 +30059,7 @@ "Chhattisgarhi" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -27491,6 +30070,7 @@ "Hungu" ], "Added": "2020-03-28", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -27501,6 +30081,7 @@ "\u01C1Ani" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -27511,6 +30092,7 @@ "Hani" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -27523,6 +30105,7 @@ "Mong Njua" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "hmn", "Comments": [], "Prefix": [] @@ -27534,6 +30117,7 @@ "Hainanese" ], "Added": "2024-12-12", + "Scope": "None", "MacroLanguage": "zh", "Comments": [], "Prefix": [] @@ -27545,6 +30129,7 @@ "Hanunoo" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -27555,6 +30140,7 @@ "Northern Hindko" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "lah", "Comments": [], "Prefix": [] @@ -27566,6 +30152,7 @@ "Caribbean Hindustani" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -27576,6 +30163,7 @@ "Hung" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -27586,6 +30174,7 @@ "Hoava" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -27596,6 +30185,7 @@ "Mari (Madang Province)" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -27606,6 +30196,7 @@ "Ho" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -27616,6 +30207,7 @@ "Holma" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -27626,6 +30218,7 @@ "Horom" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -27636,6 +30229,7 @@ "Hoby\u00F3t" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -27646,6 +30240,7 @@ "Holikachuk" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -27657,6 +30252,7 @@ "Haroti" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "raj", "Comments": [], "Prefix": [] @@ -27679,6 +30275,7 @@ "Holu" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -27689,6 +30286,7 @@ "Homa" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -27699,6 +30297,7 @@ "Holoholo" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -27709,6 +30308,7 @@ "Hopi" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -27719,6 +30319,7 @@ "Horo" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -27729,6 +30330,7 @@ "Ho Chi Minh City Sign Language" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -27740,6 +30342,7 @@ "Mal\u00EA" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -27750,6 +30353,7 @@ "Hovongan" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -27760,6 +30364,7 @@ "Honi" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -27770,6 +30375,7 @@ "Holiya" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -27780,6 +30386,7 @@ "Hozo" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -27790,6 +30397,7 @@ "Hpon" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -27801,6 +30409,7 @@ "Hawai\u0027i Pidgin Sign Language" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -27811,6 +30420,7 @@ "Hrangkhol" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -27821,6 +30431,7 @@ "Niwer Mil" ], "Added": "2013-09-10", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -27831,6 +30442,7 @@ "Hre" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -27841,6 +30453,7 @@ "Haruku" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -27851,6 +30464,7 @@ "Horned Miao" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "hmn", "Comments": [], "Prefix": [] @@ -27862,6 +30476,7 @@ "Haroi" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -27872,6 +30487,7 @@ "Nhirrpi" ], "Added": "2013-09-10", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -27882,6 +30498,7 @@ "Horuru" ], "Added": "2009-07-29", + "Scope": "None", "Deprecated": "2012-08-12", "Comments": [], "Prefix": [], @@ -27894,6 +30511,7 @@ "H\u00E9rtevin" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -27904,6 +30522,7 @@ "Hruso" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -27914,6 +30533,7 @@ "Warwar Feni" ], "Added": "2013-09-10", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -27924,6 +30544,7 @@ "Hunsrik" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -27934,6 +30555,7 @@ "Harzani" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -27945,6 +30567,7 @@ ], "Added": "2005-10-16", "SuppressScript": "Latn", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -27955,6 +30578,7 @@ "Hungarian Sign Language" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -27965,6 +30589,7 @@ "Hausa Sign Language" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -27975,6 +30600,7 @@ "Xiang Chinese" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "zh", "Comments": [], "Prefix": [] @@ -27986,6 +30612,7 @@ "Harsusi" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -27996,6 +30623,7 @@ "Hoti" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -28006,6 +30634,7 @@ "Minica Huitoto" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -28016,6 +30645,7 @@ "Hadza" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -28026,6 +30656,7 @@ "Hitu" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -28036,6 +30667,7 @@ "Middle Hittite" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -28046,6 +30678,7 @@ "Huambisa" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -28057,6 +30690,7 @@ "\u01C2\u02BCAmkhoe" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -28067,6 +30701,7 @@ "Huaulu" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -28077,6 +30712,7 @@ "San Francisco Del Mar Huave" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -28087,6 +30723,7 @@ "Humene" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -28097,6 +30734,7 @@ "Huachipaeri" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -28107,6 +30745,7 @@ "Huilliche" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -28117,6 +30756,7 @@ "Huli" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -28128,6 +30768,7 @@ "Northern Guiyang Miao" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "hmn", "Comments": [], "Prefix": [] @@ -28139,6 +30780,7 @@ "Hulung" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -28149,6 +30791,7 @@ "Hula" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -28159,6 +30802,7 @@ "Hungana" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -28169,6 +30813,7 @@ "Hu" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -28179,6 +30824,7 @@ "Hupa" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -28189,6 +30835,7 @@ "Tsat" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -28199,6 +30846,7 @@ "Halkomelem" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -28209,6 +30857,7 @@ "Huastec" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -28219,6 +30868,7 @@ "Humla" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -28229,6 +30879,7 @@ "Murui Huitoto" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -28239,6 +30890,7 @@ "San Mateo Del Mar Huave" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -28249,6 +30901,7 @@ "Hukumina" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -28259,6 +30912,7 @@ "N\u00FCpode Huitoto" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -28269,6 +30923,7 @@ "Hulaul\u00E1" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -28279,6 +30934,7 @@ "Hunzib" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -28289,6 +30945,7 @@ "Haitian Vodoun Culture Language" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -28299,6 +30956,7 @@ "San Dionisio Del Mar Huave" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -28309,6 +30967,7 @@ "Haveke" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -28319,6 +30978,7 @@ "Sabu" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -28329,6 +30989,7 @@ "Santa Mar\u00EDa Del Mar Huave" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -28339,6 +31000,7 @@ "Wan\u00E9" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -28350,6 +31012,7 @@ "Hawai\u0027i Pidgin" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -28360,6 +31023,7 @@ "Hwana" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -28370,6 +31034,7 @@ "Hya" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -28380,6 +31045,7 @@ "Western Armenian" ], "Added": "2018-03-08", + "Scope": "None", "Comments": [ "see also hy" ], @@ -28403,6 +31069,7 @@ "Iaai" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -28413,6 +31080,7 @@ "Iatmul" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -28423,6 +31091,7 @@ "Iapama" ], "Added": "2009-07-29", + "Scope": "None", "Deprecated": "2016-05-30", "Comments": [], "Prefix": [] @@ -28434,6 +31103,7 @@ "Purari" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -28444,6 +31114,7 @@ "Iban" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -28454,6 +31125,7 @@ "Ibibio" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -28464,6 +31136,7 @@ "Iwaidja" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -28474,6 +31147,7 @@ "Akpes" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -28484,6 +31158,7 @@ "Ibanag" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -28494,6 +31169,7 @@ "Bih" ], "Added": "2017-02-23", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -28504,6 +31180,7 @@ "Ibilo" ], "Added": "2009-07-29", + "Scope": "None", "Deprecated": "2012-08-12", "Comments": [], "Prefix": [], @@ -28516,6 +31193,7 @@ "Ibaloi" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -28526,6 +31204,7 @@ "Agoi" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -28536,6 +31215,7 @@ "Ibino" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -28546,6 +31226,7 @@ "Ibuoro" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -28556,6 +31237,7 @@ "Ibu" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -28566,6 +31248,7 @@ "Ibani" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -28576,6 +31259,7 @@ "Ede Ica" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -28586,6 +31270,7 @@ "Etkywan" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -28596,6 +31281,7 @@ "Icelandic Sign Language" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -28606,6 +31292,7 @@ "Islander Creole English" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -28617,6 +31304,7 @@ "Luidakho-Luisukha-Lutirichi" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "luy", "Comments": [], "Prefix": [] @@ -28628,6 +31316,7 @@ "Indo-Portuguese" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -28639,6 +31328,7 @@ "Ajiya" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -28649,6 +31339,7 @@ "Ede Idaca" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -28659,6 +31350,7 @@ "Idere" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -28669,6 +31361,7 @@ "Idi" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -28679,6 +31372,7 @@ "Indri" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -28689,6 +31383,7 @@ "Idesa" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -28699,6 +31394,7 @@ "Idat\u00E9" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -28709,6 +31405,7 @@ "Idoma" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -28719,6 +31416,7 @@ "Amganad Ifugao" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -28730,6 +31428,7 @@ "Ayangan Ifugao" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -28740,6 +31439,7 @@ "If\u00E8" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -28750,6 +31450,7 @@ "Ifo" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -28760,6 +31461,7 @@ "Tuwali Ifugao" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -28770,6 +31472,7 @@ "Teke-Fuumu" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -28780,6 +31483,7 @@ "Mayoyao Ifugao" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -28790,6 +31494,7 @@ "Keley-I Kallahan" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -28800,6 +31505,7 @@ "Ebira" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -28810,6 +31516,7 @@ "Igede" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -28820,6 +31527,7 @@ "Igana" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -28830,6 +31538,7 @@ "Igala" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -28840,6 +31549,7 @@ "Kanggape" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -28850,6 +31560,7 @@ "Ignaciano" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -28860,6 +31571,7 @@ "Isebe" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -28870,6 +31582,7 @@ "Interglossa" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -28880,6 +31593,7 @@ "Igwe" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -28890,6 +31604,7 @@ "Iha Based Pidgin" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -28900,6 +31615,7 @@ "Ihievbe" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -28910,6 +31626,7 @@ "Iha" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -28920,6 +31637,7 @@ "Bidhawal" ], "Added": "2012-08-12", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -28930,6 +31648,7 @@ "Thiin" ], "Added": "2013-09-10", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -28951,6 +31670,7 @@ "Izon" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -28961,6 +31681,7 @@ "Biseni" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -28971,6 +31692,7 @@ "Ede Ije" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -28981,6 +31703,7 @@ "Kalabari" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -29002,6 +31725,7 @@ "Southeast Ijo" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -29012,6 +31736,7 @@ "Eastern Canadian Inuktitut" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "iu", "Comments": [], "Prefix": [] @@ -29023,6 +31748,7 @@ "Ikhin-Arokho" ], "Added": "2023-03-17", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -29033,6 +31759,7 @@ "Iko" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -29043,6 +31770,7 @@ "Ika" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -29053,6 +31781,7 @@ "Ikulu" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -29063,6 +31792,7 @@ "Olulumo-Ikom" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -29073,6 +31803,7 @@ "Ikpeshi" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -29083,6 +31814,7 @@ "Ikaranggal" ], "Added": "2013-09-10", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -29093,6 +31825,7 @@ "Inuit Sign Language" ], "Added": "2015-02-12", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -29104,6 +31837,7 @@ "Western Canadian Inuktitut" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "iu", "Comments": [], "Prefix": [] @@ -29115,6 +31849,7 @@ "Iku-Gora-Ankwa" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -29125,6 +31860,7 @@ "Ikwere" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -29135,6 +31871,7 @@ "Ik" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -29145,6 +31882,7 @@ "Ikizu" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -29155,6 +31893,7 @@ "Ile Ape" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -29165,6 +31904,7 @@ "Ila" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -29175,6 +31915,7 @@ "Garig-Ilgar" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -29185,6 +31926,7 @@ "Ili Turki" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -29195,6 +31937,7 @@ "Ilongot" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -29205,6 +31948,7 @@ "Iranun" ], "Added": "2009-07-29", + "Scope": "None", "Deprecated": "2016-05-30", "Comments": [ "see ilm, ilp" @@ -29218,6 +31962,7 @@ "Iranun (Malaysia)" ], "Added": "2016-05-30", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -29228,6 +31973,7 @@ "Iloko" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -29238,6 +31984,7 @@ "Iranun (Philippines)" ], "Added": "2016-05-30", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -29248,6 +31995,7 @@ "International Sign" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -29258,6 +32006,7 @@ "Ili\u0027uun" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -29268,6 +32017,7 @@ "Ilue" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -29278,6 +32028,7 @@ "Talur" ], "Added": "2009-07-29", + "Scope": "None", "Deprecated": "2013-09-10", "Comments": [], "Prefix": [], @@ -29290,6 +32041,7 @@ "Mala Malasar" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -29300,6 +32052,7 @@ "Imeraguen" ], "Added": "2009-07-29", + "Scope": "None", "Deprecated": "2015-02-12", "Comments": [], "Prefix": [] @@ -29311,6 +32064,7 @@ "Anamgura" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -29321,6 +32075,7 @@ "Miluk" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -29331,6 +32086,7 @@ "Imonda" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -29341,6 +32097,7 @@ "Imbongu" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -29351,6 +32108,7 @@ "Imroing" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -29361,6 +32119,7 @@ "Marsian" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -29371,6 +32130,7 @@ "Imotong" ], "Added": "2022-02-25", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -29381,6 +32141,7 @@ "Milyan" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -29391,6 +32152,7 @@ "Inga" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -29423,6 +32185,7 @@ "Degexit\u0027an" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -29433,6 +32196,7 @@ "Ingush" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -29443,6 +32207,7 @@ "Jungle Inga" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -29453,6 +32218,7 @@ "Indonesian Sign Language" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -29463,6 +32229,7 @@ "Minaean" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -29473,6 +32240,7 @@ "Isinai" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -29483,6 +32251,7 @@ "Inoke-Yate" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -29493,6 +32262,7 @@ "I\u00F1apari" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -29503,6 +32273,7 @@ "Indian Sign Language" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -29513,6 +32284,7 @@ "Intha" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -29523,6 +32295,7 @@ "Inese\u00F1o" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -29533,6 +32306,7 @@ "Inor" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -29543,6 +32317,7 @@ "Tuma-Irumu" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -29553,6 +32328,7 @@ "Iowa-Oto" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -29563,6 +32339,7 @@ "Ipili" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -29573,6 +32350,7 @@ "Ipiko" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -29583,6 +32361,7 @@ "Iquito" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -29593,6 +32372,7 @@ "Ikwo" ], "Added": "2013-09-10", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -29614,6 +32394,7 @@ "Iresim" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -29624,6 +32405,7 @@ "Irarutu" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -29635,6 +32417,7 @@ "Irigwe" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -29645,6 +32428,7 @@ "Iraqw" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -29655,6 +32439,7 @@ "Ir\u00E1ntxe" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -29676,6 +32461,7 @@ "Ir" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -29686,6 +32472,7 @@ "Irula" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -29696,6 +32483,7 @@ "Kamberau" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -29706,6 +32494,7 @@ "Iraya" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -29716,6 +32505,7 @@ "Isabi" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -29726,6 +32516,7 @@ "Isconahua" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -29736,6 +32527,7 @@ "Isnag" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -29746,6 +32538,7 @@ "Italian Sign Language" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -29756,6 +32549,7 @@ "Irish Sign Language" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -29766,6 +32560,7 @@ "Esan" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -29776,6 +32571,7 @@ "Nkem-Nkum" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -29786,6 +32582,7 @@ "Ishkashimi" ], "Added": "2010-03-11", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -29796,6 +32593,7 @@ "Masimasi" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -29806,6 +32604,7 @@ "Isanzu" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -29816,6 +32615,7 @@ "Isoko" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -29826,6 +32626,7 @@ "Israeli Sign Language" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -29836,6 +32637,7 @@ "Istriot" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -29846,6 +32648,7 @@ "Isu (Menchum Division)" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -29856,6 +32659,7 @@ "Interslavic" ], "Added": "2024-05-15", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -29866,6 +32670,7 @@ "Binongan Itneg" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -29887,6 +32692,7 @@ "Southern Tidung" ], "Added": "2016-05-30", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -29897,6 +32703,7 @@ "Itene" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -29907,6 +32714,7 @@ "Inlaod Itneg" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -29917,6 +32725,7 @@ "Judeo-Italian" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -29927,6 +32736,7 @@ "Itelmen" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -29937,6 +32747,7 @@ "Itu Mbon Uzo" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -29947,6 +32758,7 @@ "Itonama" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -29957,6 +32769,7 @@ "Iteri" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -29967,6 +32780,7 @@ "Isekiri" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -29977,6 +32791,7 @@ "Maeng Itneg" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -29987,6 +32802,7 @@ "Itawit" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -29997,6 +32813,7 @@ "Ito" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -30007,6 +32824,7 @@ "Itik" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -30017,6 +32835,7 @@ "Moyadan Itneg" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -30027,6 +32846,7 @@ "Itz\u00E1" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -30037,6 +32857,7 @@ "Iu Mien" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -30047,6 +32868,7 @@ "Ibatan" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -30057,6 +32879,7 @@ "Ivatan" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -30067,6 +32890,7 @@ "I-Wak" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -30077,6 +32901,7 @@ "Iwam" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -30087,6 +32912,7 @@ "Iwur" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -30097,6 +32923,7 @@ "Sepik Iwam" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -30107,6 +32934,7 @@ "Ixcatec" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -30117,6 +32945,7 @@ "Ixil" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -30127,6 +32956,7 @@ "Iyayu" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -30137,6 +32967,7 @@ "Mesaka" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -30147,6 +32978,7 @@ "Yaka (Congo)" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -30157,6 +32989,7 @@ "Ingrian" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -30167,6 +33000,7 @@ "Izi-Ezaa-Ikwo-Mgbo" ], "Added": "2009-07-29", + "Scope": "None", "Deprecated": "2013-09-10", "Comments": [ "see eza, gmz, iqw, izz" @@ -30180,6 +33014,7 @@ "Kizamani" ], "Added": "2023-03-17", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -30190,6 +33025,7 @@ "Izere" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -30200,6 +33036,7 @@ "Izii" ], "Added": "2013-09-10", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -30210,6 +33047,7 @@ "Jamamad\u00ED" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -30220,6 +33058,7 @@ "Hyam" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -30231,6 +33070,7 @@ "Jakalteko" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -30241,6 +33081,7 @@ "Jahanka" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -30251,6 +33092,7 @@ "Yabem" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -30261,6 +33103,7 @@ "Jara" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -30271,6 +33114,7 @@ "Jah Hut" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -30281,6 +33125,7 @@ "Zazao" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -30291,6 +33136,7 @@ "Jakun" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "ms", "Comments": [], "Prefix": [] @@ -30302,6 +33148,7 @@ "Yalahatan" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -30312,6 +33159,7 @@ "Jamaican Creole English" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -30322,6 +33170,7 @@ "Jandai" ], "Added": "2012-08-12", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -30332,6 +33181,7 @@ "Yanyuwa" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -30342,6 +33192,7 @@ "Yaqay" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -30352,6 +33203,7 @@ "Jarawa (Nigeria)" ], "Added": "2009-07-29", + "Scope": "None", "Deprecated": "2012-08-12", "Comments": [ "see jgk, jjr" @@ -30365,6 +33217,7 @@ "New Caledonian Javanese" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -30375,6 +33228,7 @@ "Jakati" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "lah", "Comments": [], "Prefix": [] @@ -30386,6 +33240,7 @@ "Yaur" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -30396,6 +33251,7 @@ "Jambi Malay" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "ms", "Comments": [], "Prefix": [] @@ -30408,6 +33264,7 @@ "Nhangu" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -30418,6 +33275,7 @@ "Jawe" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -30428,6 +33286,7 @@ "Judeo-Berber" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -30438,6 +33297,7 @@ "Badjiri" ], "Added": "2013-09-10", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -30448,6 +33308,7 @@ "Arandai" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -30458,6 +33319,7 @@ "Barikewa" ], "Added": "2012-08-12", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -30468,6 +33330,7 @@ "Bijim" ], "Added": "2021-02-20", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -30478,6 +33341,7 @@ "Nafusi" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -30488,6 +33352,7 @@ "Lojban" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -30498,6 +33363,7 @@ "Jofotek-Bromnya" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -30508,6 +33374,7 @@ "Jabut\u00ED" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -30518,6 +33385,7 @@ "Jukun Takum" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -30528,6 +33396,7 @@ "Yawijibaya" ], "Added": "2012-08-12", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -30538,6 +33407,7 @@ "Jamaican Country Sign Language" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -30548,6 +33418,7 @@ "Krymchak" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -30558,6 +33429,7 @@ "Jad" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -30568,6 +33440,7 @@ "Jadgali" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -30578,6 +33451,7 @@ "Judeo-Tat" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -30588,6 +33462,7 @@ "Jebero" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -30598,6 +33473,7 @@ "Jerung" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -30608,6 +33484,7 @@ "Jeng" ], "Added": "2009-07-29", + "Scope": "None", "Deprecated": "2017-02-23", "Comments": [], "Prefix": [], @@ -30620,6 +33497,7 @@ "Jeh" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -30630,6 +33508,7 @@ "Yei" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -30640,6 +33519,7 @@ "Jeri Kuo" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -30650,6 +33530,7 @@ "Yelmek" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -30660,6 +33541,7 @@ "Dza" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -30670,6 +33552,7 @@ "Jere" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -30680,6 +33563,7 @@ "Manem" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -30690,6 +33574,7 @@ "Jonkor Bourmataguil" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -30700,6 +33585,7 @@ "Ngbee" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -30710,6 +33596,7 @@ "Judeo-Georgian" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -30720,6 +33607,7 @@ "Gwak" ], "Added": "2012-08-12", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -30730,6 +33618,7 @@ "Ngomba" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -30740,6 +33629,7 @@ "Jehai" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -30750,6 +33640,7 @@ "Jhankot Sign Language" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -30760,6 +33651,7 @@ "Jina" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -30770,6 +33662,7 @@ "Jibu" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -30780,6 +33673,7 @@ "Tol" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -30790,6 +33684,7 @@ "Bu (Kaduna State)" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -30800,6 +33695,7 @@ "Jilbe" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -30811,6 +33707,7 @@ "Djingili" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -30822,6 +33719,7 @@ "Shangzhai" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -30832,6 +33730,7 @@ "Jiiddu" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -30842,6 +33741,7 @@ "Jilim" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -30852,6 +33752,7 @@ "Jimi (Cameroon)" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -30862,6 +33763,7 @@ "Jiamao" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -30873,6 +33775,7 @@ "Lavrung" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -30883,6 +33786,7 @@ "Jita" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -30893,6 +33797,7 @@ "Youle Jinuo" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -30903,6 +33808,7 @@ "Shuar" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -30913,6 +33819,7 @@ "Buyuan Jinuo" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -30923,6 +33830,7 @@ "Jejueo" ], "Added": "2015-02-12", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -30933,6 +33841,7 @@ "Bankal" ], "Added": "2012-08-12", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -30943,6 +33852,7 @@ "Kaera" ], "Added": "2016-05-30", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -30953,6 +33863,7 @@ "Mobwa Karen" ], "Added": "2012-08-12", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -30963,6 +33874,7 @@ "Kubo" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -30973,6 +33885,7 @@ "Paku Karen" ], "Added": "2012-08-12", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -30983,6 +33896,7 @@ "Koro (India)" ], "Added": "2012-08-12", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -30993,6 +33907,7 @@ "Amami Koniya Sign Language" ], "Added": "2021-02-20", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -31003,6 +33918,7 @@ "Labir" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -31013,6 +33929,7 @@ "Ngile" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -31023,6 +33940,7 @@ "Jamaican Sign Language" ], "Added": "2010-03-11", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -31033,6 +33951,7 @@ "Dima" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -31043,6 +33962,7 @@ "Zumbun" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -31053,6 +33973,7 @@ "Machame" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -31063,6 +33984,7 @@ "Yamdena" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -31073,6 +33995,7 @@ "Jimi (Nigeria)" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -31083,6 +34006,7 @@ "Jumli" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -31093,6 +34017,7 @@ "Makuri Naga" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -31103,6 +34028,7 @@ "Kamara" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -31113,6 +34039,7 @@ "Mashi (Nigeria)" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -31123,6 +34050,7 @@ "Mouwase" ], "Added": "2012-08-12", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -31133,6 +34061,7 @@ "Western Juxtlahuaca Mixtec" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -31143,6 +34072,7 @@ "Jangshung" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -31153,6 +34083,7 @@ "Jandavra" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -31163,6 +34094,7 @@ "Yangman" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -31173,6 +34105,7 @@ "Janji" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -31183,6 +34116,7 @@ "Yemsa" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -31193,6 +34127,7 @@ "Rawat" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -31203,6 +34138,7 @@ "Jaunsari" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -31213,6 +34149,7 @@ "Joba" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -31223,6 +34160,7 @@ "Wojenaka" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -31233,6 +34171,7 @@ "Jogi" ], "Added": "2015-05-27", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -31243,6 +34182,7 @@ "Jor\u00E1" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -31253,6 +34193,7 @@ "Jordanian Sign Language" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -31263,6 +34204,7 @@ "Jowulu" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -31273,6 +34215,7 @@ "Jewish Palestinian Aramaic" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -31283,6 +34226,7 @@ "Judeo-Persian" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -31304,6 +34248,7 @@ "Jaqaru" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -31314,6 +34259,7 @@ "Jarai" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -31335,6 +34281,7 @@ "Jiru" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -31345,6 +34292,7 @@ "Jakattoe" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -31355,6 +34303,7 @@ "Japrer\u00EDa" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -31365,6 +34314,7 @@ "Japanese Sign Language" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -31375,6 +34325,7 @@ "J\u00FAma" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -31385,6 +34336,7 @@ "Wannu" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -31395,6 +34347,7 @@ "Jurchen" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -31405,6 +34358,7 @@ "Worodougou" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -31415,6 +34369,7 @@ "H\u00F5ne" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -31425,6 +34380,7 @@ "Ngadjuri" ], "Added": "2012-08-12", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -31435,6 +34391,7 @@ "Wapan" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -31445,6 +34402,7 @@ "Jirel" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -31455,6 +34413,7 @@ "Jumjum" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -31465,6 +34424,7 @@ "Juang" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -31475,6 +34435,7 @@ "Jiba" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -31485,6 +34446,7 @@ "Hupd\u00EB" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -31495,6 +34457,7 @@ "Jur\u00FAna" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -31505,6 +34468,7 @@ "Jumla Sign Language" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -31515,6 +34479,7 @@ "Jutish" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -31525,6 +34490,7 @@ "Ju" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -31535,6 +34501,7 @@ "W\u00E3pha" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -31545,6 +34512,7 @@ "Juray" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -31555,6 +34523,7 @@ "Javindo" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -31565,6 +34534,7 @@ "Caribbean Javanese" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -31575,6 +34545,7 @@ "Jwira-Pepesa" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -31585,6 +34556,7 @@ "Jiarong" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -31595,6 +34567,7 @@ "Judeo-Yemeni Arabic" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "jrb", "Comments": [], "Prefix": [] @@ -31606,6 +34579,7 @@ "Jaya" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -31617,6 +34591,7 @@ "Karakalpak" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -31627,6 +34602,7 @@ "Kabyle" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -31638,6 +34614,7 @@ "Jingpho" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -31648,6 +34625,7 @@ "Adara" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -31658,6 +34636,7 @@ "Ketangalan" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -31668,6 +34647,7 @@ "Katso" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -31678,6 +34658,7 @@ "Kajaman" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -31688,6 +34669,7 @@ "Kara (Central African Republic)" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -31698,6 +34680,7 @@ "Karekare" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -31708,6 +34691,7 @@ "Jju" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -31719,6 +34703,7 @@ "Kayapa Kallahan" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -31729,6 +34714,7 @@ "Kamba (Kenya)" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -31739,6 +34725,7 @@ "Xaasongaxango" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -31749,6 +34736,7 @@ "Bezhta" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -31759,6 +34747,7 @@ "Capanahua" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -31780,6 +34769,7 @@ "Katuk\u00EDna" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -31790,6 +34780,7 @@ "Kawi" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -31800,6 +34791,7 @@ "Kao" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -31810,6 +34802,7 @@ "Kamayur\u00E1" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -31820,6 +34813,7 @@ "Kalarko" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -31830,6 +34824,7 @@ "Kaxui\u00E2na" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -31840,6 +34835,7 @@ "Kadiw\u00E9u" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -31850,6 +34846,7 @@ "Kabardian" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -31860,6 +34857,7 @@ "Kanju" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -31870,6 +34868,7 @@ "Kakauhua" ], "Added": "2009-07-29", + "Scope": "None", "Deprecated": "2015-02-12", "Comments": [], "Prefix": [] @@ -31881,6 +34880,7 @@ "Khamba" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -31891,6 +34891,7 @@ "Cams\u00E1" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -31901,6 +34902,7 @@ "Kaptiau" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -31911,6 +34913,7 @@ "Kari" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -31921,6 +34924,7 @@ "Grass Koiari" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -31931,6 +34935,7 @@ "Kanembu" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -31941,6 +34946,7 @@ "Iwal" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -31951,6 +34957,7 @@ "Kare (Central African Republic)" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -31961,6 +34968,7 @@ "Keliko" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -31971,6 +34979,7 @@ "Kabiy\u00E8" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -31981,6 +34990,7 @@ "Kamano" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -31991,6 +35001,7 @@ "Kafa" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -32001,6 +35012,7 @@ "Kande" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -32011,6 +35023,7 @@ "Abadi" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -32021,6 +35034,7 @@ "Kabutra" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -32031,6 +35045,7 @@ "Dera (Indonesia)" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -32041,6 +35056,7 @@ "Kaiep" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -32051,6 +35067,7 @@ "Ap Ma" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -32061,6 +35078,7 @@ "Manga Kanuri" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "kr", "Comments": [], "Prefix": [] @@ -32072,6 +35090,7 @@ "Duhwa" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -32082,6 +35101,7 @@ "Khanty" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -32092,6 +35112,7 @@ "Kawacha" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -32102,6 +35123,7 @@ "Lubila" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -32112,6 +35134,7 @@ "Ngk\u00E2lmpw Kanum" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -32122,6 +35145,7 @@ "Kaivi" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -32132,6 +35156,7 @@ "Ukaan" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -32142,6 +35167,7 @@ "Tyap" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -32152,6 +35178,7 @@ "Vono" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -32163,6 +35190,7 @@ "Kamantan" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -32173,6 +35201,7 @@ "Kobiana" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -32183,6 +35212,7 @@ "Kalanga" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -32194,6 +35224,7 @@ "Kala" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -32204,6 +35235,7 @@ "Gula (Central African Republic)" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -32214,6 +35246,7 @@ "Nubi" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -32224,6 +35257,7 @@ "Kinalakna" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -32234,6 +35268,7 @@ "Kanga" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -32244,6 +35279,7 @@ "Kamo" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -32254,6 +35290,7 @@ "Katla" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -32264,6 +35301,7 @@ "Koenoem" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -32274,6 +35312,7 @@ "Kaian" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -32284,6 +35323,7 @@ "Kami (Tanzania)" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -32294,6 +35334,7 @@ "Kete" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -32304,6 +35345,7 @@ "Kabwari" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -32314,6 +35356,7 @@ "Kachama-Ganjule" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -32324,6 +35367,7 @@ "Korandje" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -32334,6 +35378,7 @@ "Konongo" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -32344,6 +35389,7 @@ "Worimi" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -32354,6 +35400,7 @@ "Kutu" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -32364,6 +35411,7 @@ "Yankunytjatjara" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -32374,6 +35422,7 @@ "Makonde" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -32384,6 +35433,7 @@ "Mamusi" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -32394,6 +35444,7 @@ "Seba" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -32404,6 +35455,7 @@ "Tem" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -32414,6 +35466,7 @@ "Kumam" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -32424,6 +35477,7 @@ "Karamojong" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -32435,6 +35489,7 @@ "Kw\u00E9nyi" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -32445,6 +35500,7 @@ "Tsikimba" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -32455,6 +35511,7 @@ "Kagoma" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -32465,6 +35522,7 @@ "Kunda" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -32486,6 +35544,7 @@ "Kaningdon-Nindem" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -32496,6 +35555,7 @@ "Koch" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -32506,6 +35566,7 @@ "Karaim" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -32516,6 +35577,7 @@ "Kuy" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -32526,6 +35588,7 @@ "Kadaru" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -32536,6 +35599,7 @@ "Kado" ], "Added": "2009-07-29", + "Scope": "None", "Deprecated": "2012-08-12", "Comments": [ "see zkd, zkn" @@ -32549,6 +35613,7 @@ "Koneraw" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -32559,6 +35624,7 @@ "Kam" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -32570,6 +35636,7 @@ "Keijar" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -32580,6 +35647,7 @@ "Kwaja" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -32590,6 +35658,7 @@ "Kabuverdianu" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -32600,6 +35669,7 @@ "K\u00E9l\u00E9" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -32610,6 +35680,7 @@ "Keiga" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -32620,6 +35691,7 @@ "Kerewe" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -32630,6 +35702,7 @@ "Eastern Keres" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -32640,6 +35713,7 @@ "Kpessi" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -32650,6 +35724,7 @@ "Tese" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -32660,6 +35735,7 @@ "Keak" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -32670,6 +35746,7 @@ "Kei" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -32680,6 +35757,7 @@ "Kadar" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -32690,6 +35768,7 @@ "Kekch\u00ED" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -32700,6 +35779,7 @@ "Kela (Democratic Republic of Congo)" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -32710,6 +35790,7 @@ "Kemak" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -32720,6 +35801,7 @@ "Kenyang" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -32730,6 +35812,7 @@ "Kakwa" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -32740,6 +35823,7 @@ "Kaikadi" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -32750,6 +35834,7 @@ "Kamar" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -32760,6 +35845,7 @@ "Kera" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -32770,6 +35856,7 @@ "Kugbo" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -32780,6 +35867,7 @@ "Ket" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -32790,6 +35878,7 @@ "Akebu" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -32800,6 +35889,7 @@ "Kanikkaran" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -32810,6 +35900,7 @@ "West Kewa" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -32820,6 +35911,7 @@ "Kukna" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -32830,6 +35922,7 @@ "Kupia" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -32840,6 +35933,7 @@ "Kukele" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -32850,6 +35944,7 @@ "Kodava" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -32860,6 +35955,7 @@ "Northwestern Kolami" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -32870,6 +35966,7 @@ "Konda-Dora" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -32880,6 +35977,7 @@ "Korra Koraga" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -32890,6 +35988,7 @@ "Kota (India)" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -32900,6 +35999,7 @@ "Koya" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -32910,6 +36010,7 @@ "Kudiya" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -32920,6 +36021,7 @@ "Kurichiya" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -32930,6 +36032,7 @@ "Kannada Kurumba" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -32940,6 +36043,7 @@ "Kemiehua" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -32950,6 +36054,7 @@ "Kinnauri" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -32960,6 +36065,7 @@ "Kung" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -32970,6 +36076,7 @@ "Khunsari" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -32980,6 +36087,7 @@ "Kuk" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -32990,6 +36098,7 @@ "Koro (C\u00F4te d\u0027Ivoire)" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -33000,6 +36109,7 @@ "Korwa" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -33010,6 +36120,7 @@ "Korku" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -33021,6 +36132,7 @@ "Kutchi" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -33031,6 +36143,7 @@ "Bilaspuri" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -33041,6 +36154,7 @@ "Kanjari" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -33051,6 +36165,7 @@ "Katkari" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -33061,6 +36176,7 @@ "Kurmukar" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -33071,6 +36187,7 @@ "Kharam Naga" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -33081,6 +36198,7 @@ "Kullu Pahari" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -33091,6 +36209,7 @@ "Kumaoni" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -33101,6 +36220,7 @@ "Koromf\u00E9" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -33111,6 +36231,7 @@ "Koyaga" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -33121,6 +36242,7 @@ "Kawe" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -33131,6 +36253,7 @@ "Kasseng" ], "Added": "2009-07-29", + "Scope": "None", "Deprecated": "2016-05-30", "Comments": [], "Prefix": [], @@ -33143,6 +36266,7 @@ "Kataang" ], "Added": "2009-07-29", + "Scope": "None", "Deprecated": "2017-02-23", "Comments": [ "see ncq, sct" @@ -33156,6 +36280,7 @@ "Komering" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -33166,6 +36291,7 @@ "Kube" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -33176,6 +36302,7 @@ "Kusunda" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -33186,6 +36313,7 @@ "Upper Tanudan Kalinga" ], "Added": "2009-07-29", + "Scope": "None", "Deprecated": "2012-08-12", "Comments": [], "Prefix": [], @@ -33198,6 +36326,7 @@ "Selangor Sign Language" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -33208,6 +36337,7 @@ "Gamale Kham" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -33218,6 +36348,7 @@ "Kaiw\u00E1" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -33228,6 +36359,7 @@ "Kunggari" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -33238,6 +36370,7 @@ "Karip\u00FAna" ], "Added": "2009-07-29", + "Scope": "None", "Deprecated": "2023-03-17", "Comments": [], "Prefix": [], @@ -33250,6 +36383,7 @@ "Karingani" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -33260,6 +36394,7 @@ "Krongo" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -33270,6 +36405,7 @@ "Kaingang" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -33280,6 +36416,7 @@ "Kamoro" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -33290,6 +36427,7 @@ "Abun" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -33300,6 +36438,7 @@ "Kumbainggar" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -33310,6 +36449,7 @@ "Somyev" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -33320,6 +36460,7 @@ "Kobol" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -33330,6 +36471,7 @@ "Karas" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -33340,6 +36482,7 @@ "Karon Dori" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -33350,6 +36493,7 @@ "Kamaru" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -33360,6 +36504,7 @@ "Kyerung" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -33370,6 +36515,7 @@ "Khasi" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [ "as of 2008-04-21 this subtag does not include Lyngngam; see lyg" ], @@ -33382,6 +36528,7 @@ "L\u00FC" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -33392,6 +36539,7 @@ "Tukang Besi North" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -33402,6 +36550,7 @@ "B\u00E4di Kanum" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -33412,6 +36561,7 @@ "Korowai" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -33422,6 +36572,7 @@ "Khuen" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -33432,6 +36583,7 @@ "Khams Tibetan" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -33442,6 +36594,7 @@ "Kehu" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -33463,6 +36616,7 @@ "Kuturmi" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -33473,6 +36627,7 @@ "Halh Mongolian" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "mn", "Comments": [], "Prefix": [] @@ -33484,6 +36639,7 @@ "Lusi" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -33494,6 +36650,7 @@ "Khandesi" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -33505,6 +36662,7 @@ "Sakan" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -33516,6 +36674,7 @@ "Kapauri" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -33526,6 +36685,7 @@ "Koyra Chiini Songhay" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -33536,6 +36696,7 @@ "Kharia" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -33546,6 +36707,7 @@ "Kasua" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -33556,6 +36718,7 @@ "Khamti" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -33566,6 +36729,7 @@ "Nkhumbi" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -33576,6 +36740,7 @@ "Khvarshi" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -33586,6 +36751,7 @@ "Khowar" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -33596,6 +36762,7 @@ "Kanu" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -33606,6 +36773,7 @@ "Kele (Democratic Republic of Congo)" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -33616,6 +36784,7 @@ "Keapara" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -33626,6 +36795,7 @@ "Kim" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -33636,6 +36806,7 @@ "Koalib" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -33646,6 +36817,7 @@ "Kickapoo" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -33656,6 +36828,7 @@ "Koshin" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -33666,6 +36839,7 @@ "Kibet" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -33676,6 +36850,7 @@ "Eastern Parbate Kham" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -33687,6 +36862,7 @@ "Kimaghima" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -33697,6 +36873,7 @@ "Kilmeri" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -33707,6 +36884,7 @@ "Kitsai" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -33717,6 +36895,7 @@ "Kilivila" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -33727,6 +36906,7 @@ "Kariya" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -33737,6 +36917,7 @@ "Karagas" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -33747,6 +36928,7 @@ "Kiowa" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -33757,6 +36939,7 @@ "Sheshi Kham" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -33768,6 +36951,7 @@ "Kosare" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -33778,6 +36962,7 @@ "Kis" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -33788,6 +36973,7 @@ "Agob" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -33798,6 +36984,7 @@ "Kirmanjki (individual language)" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "zza", "Comments": [], "Prefix": [] @@ -33809,6 +36996,7 @@ "Kimbu" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -33819,6 +37007,7 @@ "Northeast Kiwai" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -33829,6 +37018,7 @@ "Khiamniungan Naga" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -33839,6 +37029,7 @@ "Kirikiri" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -33849,6 +37040,7 @@ "Kisi" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -33859,6 +37051,7 @@ "Mlap" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -33870,6 +37063,7 @@ "Kanjobal" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -33880,6 +37074,7 @@ "Coastal Konjo" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -33890,6 +37085,7 @@ "Southern Kiwai" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -33900,6 +37096,7 @@ "Kisar" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -33910,6 +37107,7 @@ "Khalaj [Indo-Iranian]" ], "Added": "2009-07-29", + "Scope": "None", "Deprecated": "2020-03-28", "Comments": [], "Prefix": [] @@ -33921,6 +37119,7 @@ "Khmu" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -33931,6 +37130,7 @@ "Khakas" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -33941,6 +37141,7 @@ "Zabana" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -33951,6 +37152,7 @@ "Khinalugh" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -33961,6 +37163,7 @@ "Highland Konjo" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -33971,6 +37174,7 @@ "Western Parbate Kham" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -33981,6 +37185,7 @@ "Kh\u00E1ng" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -33991,6 +37196,7 @@ "Kunjen" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -34001,6 +37207,7 @@ "Harijan Kinnauri" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -34011,6 +37218,7 @@ "Pwo Eastern Karen" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -34021,6 +37229,7 @@ "Western Keres" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -34031,6 +37240,7 @@ "Kurudu" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -34041,6 +37251,7 @@ "East Kewa" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -34051,6 +37262,7 @@ "Phrae Pwo Karen" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -34061,6 +37273,7 @@ "Kashaya" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -34071,6 +37284,7 @@ "Kaikavian Literary Language" ], "Added": "2015-02-12", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -34081,6 +37295,7 @@ "Ramopa" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -34091,6 +37306,7 @@ "Erave" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -34101,6 +37317,7 @@ "Bumthangkha" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -34111,6 +37328,7 @@ "Kakanda" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -34121,6 +37339,7 @@ "Kwerisa" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -34131,6 +37350,7 @@ "Odoodee" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -34141,6 +37361,7 @@ "Kinuku" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -34151,6 +37372,7 @@ "Kakabe" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -34161,6 +37383,7 @@ "Kalaktang Monpa" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -34171,6 +37394,7 @@ "Mabaka Valley Kalinga" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -34181,6 +37405,7 @@ "Kh\u00FCn" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -34191,6 +37416,7 @@ "Kagulu" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -34201,6 +37427,7 @@ "Kako" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -34211,6 +37438,7 @@ "Kokota" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -34221,6 +37449,7 @@ "Kosarek Yale" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -34231,6 +37460,7 @@ "Kiong" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -34241,6 +37471,7 @@ "Kon Keu" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -34251,6 +37482,7 @@ "Karko" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -34262,6 +37494,7 @@ "Koko-Bera" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -34272,6 +37505,7 @@ "Kaeku" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -34282,6 +37516,7 @@ "Kir-Balar" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -34292,6 +37527,7 @@ "Giiwo" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -34302,6 +37538,7 @@ "Koi" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -34312,6 +37549,7 @@ "Tumi" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -34322,6 +37560,7 @@ "Kangean" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -34332,6 +37571,7 @@ "Teke-Kukuya" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -34342,6 +37582,7 @@ "Kohin" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -34353,6 +37594,7 @@ "Guguyimidjir" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -34363,6 +37605,7 @@ "Kaska" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -34373,6 +37616,7 @@ "Klamath-Modoc" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -34383,6 +37627,7 @@ "Kiliwa" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -34393,6 +37638,7 @@ "Kolbila" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -34403,6 +37649,7 @@ "Gamilaraay" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -34413,6 +37660,7 @@ "Kulung (Nepal)" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -34423,6 +37671,7 @@ "Kendeje" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -34433,6 +37682,7 @@ "Tagakaulo" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -34443,6 +37693,7 @@ "Weliki" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -34453,6 +37704,7 @@ "Kalumpang" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -34463,6 +37715,7 @@ "Khalaj" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -34473,6 +37726,7 @@ "Kono (Nigeria)" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -34483,6 +37737,7 @@ "Kagan Kalagan" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -34493,6 +37748,7 @@ "Migum" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -34514,6 +37770,7 @@ "Kapya" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -34524,6 +37781,7 @@ "Kamasa" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -34534,6 +37792,7 @@ "Rumu" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -34544,6 +37803,7 @@ "Khaling" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -34554,6 +37814,7 @@ "Kalasha" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -34564,6 +37825,7 @@ "Nukna" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -34574,6 +37836,7 @@ "Klao" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -34584,6 +37847,7 @@ "Maskelynes" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -34595,6 +37859,7 @@ "Lindu" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -34605,6 +37870,7 @@ "Koluwawa" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -34615,6 +37881,7 @@ "Kalao" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -34625,6 +37892,7 @@ "Kabola" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -34635,6 +37903,7 @@ "Konni" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -34645,6 +37914,7 @@ "Kimbundu" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -34655,6 +37925,7 @@ "Southern Dong" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -34665,6 +37936,7 @@ "Majukayang Kalinga" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -34675,6 +37947,7 @@ "Bakole" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -34685,6 +37958,7 @@ "Kare (Papua New Guinea)" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -34695,6 +37969,7 @@ "K\u00E2te" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -34705,6 +37980,7 @@ "Kalam" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -34715,6 +37991,7 @@ "Kami (Nigeria)" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -34725,6 +38002,7 @@ "Kumarbhag Paharia" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -34735,6 +38013,7 @@ "Limos Kalinga" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -34745,6 +38024,7 @@ "Tanudan Kalinga" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -34755,6 +38035,7 @@ "Kom (India)" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -34765,6 +38046,7 @@ "Awtuw" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -34775,6 +38057,7 @@ "Kwoma" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -34785,6 +38068,7 @@ "Gimme" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -34795,6 +38079,7 @@ "Kwama" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -34805,6 +38090,7 @@ "Northern Kurdish" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "ku", "Comments": [], "Prefix": [] @@ -34816,6 +38102,7 @@ "Kamasau" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -34826,6 +38113,7 @@ "Kemtuik" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -34836,6 +38124,7 @@ "Kanite" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -34846,6 +38135,7 @@ "Karip\u00FAna Creole French" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -34856,6 +38146,7 @@ "Komo (Democratic Republic of Congo)" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -34866,6 +38157,7 @@ "Waboda" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -34876,6 +38168,7 @@ "Koma" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -34886,6 +38179,7 @@ "Khorasani Turkish" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -34896,6 +38190,7 @@ "Dera (Nigeria)" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -34906,6 +38201,7 @@ "Lubuagan Kalinga" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -34916,6 +38212,7 @@ "Central Kanuri" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "kr", "Comments": [], "Prefix": [] @@ -34927,6 +38224,7 @@ "Konda" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -34937,6 +38235,7 @@ "Kankanaey" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -34947,6 +38246,7 @@ "Mankanya" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -34957,6 +38257,7 @@ "Koongo" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "kg", "Comments": [], "Prefix": [] @@ -34968,6 +38269,7 @@ "Kanufi" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -34978,6 +38280,7 @@ "Western Kanjobal" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -34988,6 +38291,7 @@ "Kuranko" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -34998,6 +38302,7 @@ "Keninjal" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -35008,6 +38313,7 @@ "Kanamar\u00ED" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -35018,6 +38324,7 @@ "Konkani (individual language)" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "kok", "Comments": [], "Prefix": [] @@ -35029,6 +38336,7 @@ "Kono (Sierra Leone)" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -35039,6 +38347,7 @@ "Kwanja" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -35049,6 +38358,7 @@ "Kintaq" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -35059,6 +38369,7 @@ "Kaningra" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -35069,6 +38380,7 @@ "Kensiu" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -35079,6 +38391,7 @@ "Panoan Katuk\u00EDna" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -35089,6 +38402,7 @@ "Kono (Guinea)" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -35099,6 +38413,7 @@ "Tabo" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -35109,6 +38424,7 @@ "Kung-Ekoka" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -35120,6 +38436,7 @@ "Salako" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -35130,6 +38447,7 @@ "Kanyok" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -35140,6 +38458,7 @@ "Kalams\u00E9" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -35150,6 +38469,7 @@ "Konomala" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -35160,6 +38480,7 @@ "Kpati" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -35170,6 +38491,7 @@ "Kodi" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -35180,6 +38502,7 @@ "Kacipo-Bale Suri" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -35190,6 +38513,7 @@ "Kubi" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -35201,6 +38525,7 @@ "Kogi" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -35211,6 +38536,7 @@ "Koyo" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -35221,6 +38547,7 @@ "Komi-Permyak" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "kv", "Comments": [], "Prefix": [] @@ -35232,6 +38559,7 @@ "Sara Dunjo" ], "Added": "2009-07-29", + "Scope": "None", "Deprecated": "2015-02-12", "Comments": [], "Prefix": [], @@ -35256,6 +38584,7 @@ "Kol (Papua New Guinea)" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -35266,6 +38595,7 @@ "Konzo" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -35276,6 +38606,7 @@ "Waube" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -35286,6 +38617,7 @@ "Kota (Gabon)" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -35296,6 +38628,7 @@ "Kosraean" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -35306,6 +38639,7 @@ "Lagwan" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -35316,6 +38650,7 @@ "Koke" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -35326,6 +38661,7 @@ "Kudu-Camo" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -35336,6 +38672,7 @@ "Kugama" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -35346,6 +38683,7 @@ "Coxima" ], "Added": "2009-07-29", + "Scope": "None", "Deprecated": "2016-05-30", "Comments": [], "Prefix": [] @@ -35357,6 +38695,7 @@ "Koyukon" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -35367,6 +38706,7 @@ "Korak" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -35377,6 +38717,7 @@ "Kutto" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -35387,6 +38728,7 @@ "Mullu Kurumba" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -35397,6 +38739,7 @@ "Curripaco" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -35407,6 +38750,7 @@ "Koba" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -35428,6 +38772,7 @@ "Komba" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -35438,6 +38783,7 @@ "Kapingamarangi" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -35448,6 +38794,7 @@ "Kplang" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -35458,6 +38805,7 @@ "Kofei" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -35468,6 +38816,7 @@ "Karaj\u00E1" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -35478,6 +38827,7 @@ "Kpan" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -35488,6 +38838,7 @@ "Kpala" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -35498,6 +38849,7 @@ "Koho" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -35508,6 +38860,7 @@ "Kepkiriw\u00E1t" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -35518,6 +38871,7 @@ "Ikposo" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -35528,6 +38882,7 @@ "Paku Karen" ], "Added": "2009-07-29", + "Scope": "None", "Deprecated": "2012-08-12", "Comments": [ "see jkm, jkp" @@ -35541,6 +38896,7 @@ "Korupun-Sela" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -35551,6 +38907,7 @@ "Korafe-Yegha" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -35561,6 +38918,7 @@ "Tehit" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -35571,6 +38929,7 @@ "Karata" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -35581,6 +38940,7 @@ "Kafoa" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -35591,6 +38951,7 @@ "Komi-Zyrian" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "kv", "Comments": [], "Prefix": [] @@ -35602,6 +38963,7 @@ "Kobon" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -35612,6 +38974,7 @@ "Mountain Koiali" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -35622,6 +38985,7 @@ "Koryak" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -35632,6 +38996,7 @@ "Kupsabiny" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -35642,6 +39007,7 @@ "Mum" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -35652,6 +39018,7 @@ "Kovai" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -35662,6 +39029,7 @@ "Doromu-Koki" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -35672,6 +39040,7 @@ "Koy Sanjaq Surat" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -35682,6 +39051,7 @@ "Kalagan" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -35692,6 +39062,7 @@ "Kakabai" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -35702,6 +39073,7 @@ "Khe" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -35712,6 +39084,7 @@ "Kisankasa" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -35722,6 +39095,7 @@ "Koitabu" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -35732,6 +39106,7 @@ "Koromira" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -35742,6 +39117,7 @@ "Kotafon Gbe" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -35752,6 +39128,7 @@ "Kyenele" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -35762,6 +39139,7 @@ "Khisa" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -35772,6 +39150,7 @@ "Kaonde" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -35782,6 +39161,7 @@ "Eastern Krahn" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -35792,6 +39172,7 @@ "Kimr\u00E9" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -35802,6 +39183,7 @@ "Krenak" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -35812,6 +39194,7 @@ "Kimaragang" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -35822,6 +39205,7 @@ "Northern Kissi" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -35832,6 +39216,7 @@ "Klias River Kadazan" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -35842,6 +39227,7 @@ "Seroa" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -35852,6 +39238,7 @@ "Okolod" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -35862,6 +39249,7 @@ "Kandas" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -35872,6 +39260,7 @@ "Mser" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -35882,6 +39271,7 @@ "Koorete" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -35892,6 +39282,7 @@ "Korana" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -35902,6 +39293,7 @@ "Kumhali" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -35912,6 +39304,7 @@ "Karkin" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -35922,6 +39315,7 @@ "Karachay-Balkar" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -35932,6 +39326,7 @@ "Kairui-Midiki" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -35942,6 +39337,7 @@ "Panar\u00E1" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -35952,6 +39348,7 @@ "Koro (Vanuatu)" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -35962,6 +39359,7 @@ "Kurama" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -35972,6 +39370,7 @@ "Krio" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -35982,6 +39381,7 @@ "Kinaray-A" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -35992,6 +39392,7 @@ "Kerek" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -36002,6 +39403,7 @@ "Karelian" ], "Added": "2006-03-08", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -36012,6 +39414,7 @@ "Krim" ], "Added": "2009-07-29", + "Scope": "None", "Deprecated": "2017-02-23", "Comments": [], "Prefix": [], @@ -36024,6 +39427,7 @@ "Sapo" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -36045,6 +39449,7 @@ "Durop" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -36055,6 +39460,7 @@ "Krung" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -36065,6 +39471,7 @@ "Gbaya (Sudan)" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -36075,6 +39482,7 @@ "Tumari Kanuri" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "kr", "Comments": [], "Prefix": [] @@ -36086,6 +39494,7 @@ "Kurukh" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -36096,6 +39505,7 @@ "Kavet" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -36106,6 +39516,7 @@ "Western Krahn" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -36116,6 +39527,7 @@ "Karon" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -36126,6 +39538,7 @@ "Kryts" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -36136,6 +39549,7 @@ "Sota Kanum" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -36146,6 +39560,7 @@ "Shuwa-Zamani" ], "Added": "2009-07-29", + "Scope": "None", "Deprecated": "2023-03-17", "Comments": [ "see izm, rsw" @@ -36159,6 +39574,7 @@ "Shambala" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -36169,6 +39585,7 @@ "Southern Kalinga" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -36179,6 +39596,7 @@ "Kuanua" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -36189,6 +39607,7 @@ "Kuni" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -36199,6 +39618,7 @@ "Bafia" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -36209,6 +39629,7 @@ "Kusaghe" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -36219,6 +39640,7 @@ "K\u00F6lsch" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -36230,6 +39652,7 @@ "I\u0027saka" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -36240,6 +39663,7 @@ "Uare" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -36250,6 +39674,7 @@ "Kansa" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -36260,6 +39685,7 @@ "Kumalu" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -36270,6 +39696,7 @@ "Kumba" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -36280,6 +39707,7 @@ "Kasiguranin" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -36290,6 +39718,7 @@ "Kofa" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -36300,6 +39729,7 @@ "Kaba" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -36310,6 +39740,7 @@ "Kwaami" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -36320,6 +39751,7 @@ "Borong" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -36330,6 +39762,7 @@ "Southern Kisi" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -36340,6 +39773,7 @@ "Winy\u00E9" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -36350,6 +39784,7 @@ "Khamyang" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -36360,6 +39795,7 @@ "Kusu" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -36370,6 +39806,7 @@ "S\u0027gaw Karen" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -36380,6 +39817,7 @@ "Kedang" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -36390,6 +39828,7 @@ "Kharia Thar" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -36400,6 +39839,7 @@ "Kodaku" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -36410,6 +39850,7 @@ "Katua" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -36420,6 +39861,7 @@ "Kambaata" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -36430,6 +39872,7 @@ "Kholok" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -36441,6 +39884,7 @@ "Kukatha" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -36451,6 +39895,7 @@ "Nubri" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -36461,6 +39906,7 @@ "Kwami" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -36471,6 +39917,7 @@ "Kalkutung" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -36481,6 +39928,7 @@ "Karanga" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -36491,6 +39939,7 @@ "North Muyu" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -36501,6 +39950,7 @@ "Plapo Krumen" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -36511,6 +39961,7 @@ "Kaniet" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -36521,6 +39972,7 @@ "Koroshi" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -36531,6 +39983,7 @@ "Kurti" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -36541,6 +39994,7 @@ "Kariti\u00E2na" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -36551,6 +40005,7 @@ "Kuot" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -36561,6 +40016,7 @@ "Kaduo" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -36571,6 +40027,7 @@ "Katabaga" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -36581,6 +40038,7 @@ "Kota Marudu Tinagas" ], "Added": "2009-07-29", + "Scope": "None", "Deprecated": "2016-05-30", "Comments": [], "Prefix": [], @@ -36593,6 +40051,7 @@ "South Muyu" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -36603,6 +40062,7 @@ "Ketum" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -36613,6 +40073,7 @@ "Kituba (Democratic Republic of Congo)" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -36623,6 +40084,7 @@ "Eastern Katu" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -36633,6 +40095,7 @@ "Kato" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -36643,6 +40106,7 @@ "Kaxarar\u00ED" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -36653,6 +40117,7 @@ "Kango (Bas-U\u00E9l\u00E9 District)" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -36664,6 +40129,7 @@ "Ju\u01C0\u02BChoansi" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -36674,6 +40140,7 @@ "Kutep" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -36684,6 +40151,7 @@ "Kwinsu" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -36694,6 +40162,7 @@ "\u0027Auhelawa" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -36704,6 +40173,7 @@ "Kuman (Papua New Guinea)" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -36714,6 +40184,7 @@ "Western Katu" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -36724,6 +40195,7 @@ "Kupa" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -36734,6 +40206,7 @@ "Kushi" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -36745,6 +40218,7 @@ "Kalapalo" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -36755,6 +40229,7 @@ "Kuria" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -36765,6 +40240,7 @@ "Kepo\u0027" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -36775,6 +40251,7 @@ "Kulere" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -36785,6 +40262,7 @@ "Kumyk" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -36795,6 +40273,7 @@ "Kunama" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -36805,6 +40284,7 @@ "Kumukio" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -36815,6 +40295,7 @@ "Kunimaipa" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -36825,6 +40306,7 @@ "Karipuna" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -36835,6 +40317,7 @@ "Kusaal" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -36845,6 +40328,7 @@ "Kutenai" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -36855,6 +40339,7 @@ "Upper Kuskokwim" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -36865,6 +40350,7 @@ "Kur" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -36875,6 +40361,7 @@ "Kpagua" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -36885,6 +40372,7 @@ "Kukatja" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -36895,6 +40383,7 @@ "Kuuku-Ya\u0027u" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -36905,6 +40394,7 @@ "Kunza" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -36915,6 +40405,7 @@ "Bagvalal" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -36925,6 +40416,7 @@ "Kubu" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "ms", "Comments": [], "Prefix": [] @@ -36936,6 +40428,7 @@ "Kove" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -36946,6 +40439,7 @@ "Kui (Indonesia)" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -36956,6 +40450,7 @@ "Kalabakan" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -36966,6 +40461,7 @@ "Kabalai" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -36976,6 +40472,7 @@ "Kuni-Boazi" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -36986,6 +40483,7 @@ "Komodo" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -36996,6 +40494,7 @@ "Kwang" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -37006,6 +40505,7 @@ "Psikye" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -37016,6 +40516,7 @@ "Korean Sign Language" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -37026,6 +40527,7 @@ "Kayaw" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -37036,6 +40538,7 @@ "Kendem" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -37046,6 +40549,7 @@ "Border Kuna" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -37056,6 +40560,7 @@ "Dobel" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -37066,6 +40571,7 @@ "Kompane" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -37076,6 +40582,7 @@ "Geba Karen" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -37086,6 +40593,7 @@ "Kerinci" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "ms", "Comments": [], "Prefix": [] @@ -37097,6 +40605,7 @@ "Kunggara" ], "Added": "2009-07-29", + "Scope": "None", "Deprecated": "2016-05-30", "Comments": [], "Prefix": [], @@ -37110,6 +40619,7 @@ "Lahta" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -37120,6 +40630,7 @@ "Yinbaw Karen" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -37130,6 +40641,7 @@ "Kola" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -37140,6 +40652,7 @@ "Wersing" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -37150,6 +40663,7 @@ "Parkari Koli" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -37161,6 +40675,7 @@ "Yintale" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -37172,6 +40687,7 @@ "Tsaukambo" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -37182,6 +40698,7 @@ "D\u00E2w" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -37192,6 +40709,7 @@ "Kwa" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -37202,6 +40720,7 @@ "Likwala" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -37212,6 +40731,7 @@ "Kwaio" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -37222,6 +40742,7 @@ "Kwerba" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -37232,6 +40753,7 @@ "Kwara\u0027ae" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -37242,6 +40764,7 @@ "Sara Kaba Deme" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -37252,6 +40775,7 @@ "Kowiai" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -37262,6 +40786,7 @@ "Awa-Cuaiquer" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -37272,6 +40797,7 @@ "Kwanga" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -37283,6 +40809,7 @@ "Kwakiutl" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -37293,6 +40820,7 @@ "Kofyar" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -37303,6 +40831,7 @@ "Kwambi" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -37313,6 +40842,7 @@ "Kwangali" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -37323,6 +40853,7 @@ "Kwomtari" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -37333,6 +40864,7 @@ "Kodia" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -37343,6 +40875,7 @@ "Kwak" ], "Added": "2009-07-29", + "Scope": "None", "Deprecated": "2015-02-12", "Comments": [], "Prefix": [], @@ -37355,6 +40888,7 @@ "Kwer" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -37365,6 +40899,7 @@ "Kwese" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -37375,6 +40910,7 @@ "Kwesten" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -37385,6 +40921,7 @@ "Kwakum" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -37395,6 +40932,7 @@ "Sara Kaba N\u00E1\u00E0" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -37405,6 +40943,7 @@ "Kwinti" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -37415,6 +40954,7 @@ "Khirwar" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -37425,6 +40965,7 @@ "San Salvador Kongo" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "kg", "Comments": [], "Prefix": [] @@ -37436,6 +40977,7 @@ "Kwadi" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -37446,6 +40988,7 @@ "Kairiru" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -37456,6 +40999,7 @@ "Krobu" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -37467,6 +41011,7 @@ "Khonso" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -37477,6 +41022,7 @@ "Brunei" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "ms", "Comments": [], "Prefix": [] @@ -37488,6 +41034,7 @@ "Kakihum" ], "Added": "2009-07-29", + "Scope": "None", "Deprecated": "2015-02-12", "Comments": [], "Prefix": [], @@ -37501,6 +41048,7 @@ "Manumanaw" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -37511,6 +41059,7 @@ "Karo (Ethiopia)" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -37521,6 +41070,7 @@ "Keningau Murut" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -37531,6 +41081,7 @@ "Kulfa" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -37541,6 +41092,7 @@ "Zayein Karen" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -37551,6 +41103,7 @@ "Nepali Kurux" ], "Added": "2009-07-29", + "Scope": "None", "Deprecated": "2020-03-28", "Comments": [], "Prefix": [], @@ -37563,6 +41116,7 @@ "Northern Khmer" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -37573,6 +41127,7 @@ "Kanowit-Tanjong Melanau" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -37583,6 +41138,7 @@ "Kano\u00E9" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -37593,6 +41149,7 @@ "Wadiyara Koli" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -37603,6 +41160,7 @@ "Sm\u00E4rky Kanum" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -37613,6 +41171,7 @@ "Koro (Papua New Guinea)" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -37623,6 +41182,7 @@ "Kangjia" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -37633,6 +41193,7 @@ "Koiwat" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -37643,6 +41204,7 @@ "Kui (India)" ], "Added": "2009-07-29", + "Scope": "None", "Deprecated": "2020-03-28", "Comments": [ "see dwk, uki" @@ -37656,6 +41218,7 @@ "Kuvi" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -37666,6 +41229,7 @@ "Konai" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -37676,6 +41240,7 @@ "Likuba" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -37686,6 +41251,7 @@ "Kayong" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -37696,6 +41262,7 @@ "Kerewo" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -37706,6 +41273,7 @@ "Kwaya" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -37716,6 +41284,7 @@ "Butbut Kalinga" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -37726,6 +41295,7 @@ "Kyaka" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -37736,6 +41306,7 @@ "Karey" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -37746,6 +41317,7 @@ "Krache" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -37756,6 +41328,7 @@ "Kouya" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -37766,6 +41339,7 @@ "Keyagana" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -37776,6 +41350,7 @@ "Karok" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -37786,6 +41361,7 @@ "Kiput" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -37796,6 +41372,7 @@ "Karao" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -37806,6 +41383,7 @@ "Kamayo" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -37816,6 +41394,7 @@ "Kalapuya" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -37826,6 +41405,7 @@ "Kpatili" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -37836,6 +41416,7 @@ "Northern Binukidnon" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -37846,6 +41427,7 @@ "Kelon" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -37856,6 +41438,7 @@ "Kang" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -37866,6 +41449,7 @@ "Kenga" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -37876,6 +41460,7 @@ "Kuru\u00E1ya" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -37886,6 +41471,7 @@ "Baram Kayan" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -37896,6 +41482,7 @@ "Kayagar" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -37906,6 +41493,7 @@ "Western Kayah" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -37916,6 +41504,7 @@ "Kayort" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -37926,6 +41515,7 @@ "Kudmali" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -37936,6 +41526,7 @@ "Rapoisi" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -37946,6 +41537,7 @@ "Kambaira" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -37956,6 +41548,7 @@ "Kayab\u00ED" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -37966,6 +41559,7 @@ "Western Karaboro" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -37976,6 +41570,7 @@ "Kaibobo" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -37986,6 +41581,7 @@ "Bondoukou Kulango" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -37996,6 +41592,7 @@ "Kadai" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -38006,6 +41603,7 @@ "Kosena" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -38016,6 +41614,7 @@ "Da\u0027a Kaili" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -38026,6 +41625,7 @@ "Kikai" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -38036,6 +41636,7 @@ "Kenuzi-Dongola" ], "Added": "2009-07-29", + "Scope": "None", "Deprecated": "2012-08-12", "Comments": [ "see dgl, xnz" @@ -38049,6 +41650,7 @@ "Kelabit" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -38059,6 +41661,7 @@ "Coastal Kadazan" ], "Added": "2009-07-29", + "Scope": "None", "Deprecated": "2016-05-30", "Comments": [], "Prefix": [], @@ -38071,6 +41674,7 @@ "Kazukuru" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -38081,6 +41685,7 @@ "Kayeli" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -38091,6 +41696,7 @@ "Kais" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -38101,6 +41707,7 @@ "Kokola" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -38111,6 +41718,7 @@ "Kaningi" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -38121,6 +41729,7 @@ "Kaidipang" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -38131,6 +41740,7 @@ "Kaike" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -38141,6 +41751,7 @@ "Karang" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -38151,6 +41762,7 @@ "Sugut Dusun" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -38161,6 +41773,7 @@ "Tambunan Dusun" ], "Added": "2009-07-29", + "Scope": "None", "Deprecated": "2016-05-30", "Comments": [], "Prefix": [], @@ -38173,6 +41786,7 @@ "Kayupulau" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -38183,6 +41797,7 @@ "Komyandaret" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -38193,6 +41808,7 @@ "Karir\u00ED-Xoc\u00F3" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -38203,6 +41819,7 @@ "Kamarian" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -38213,6 +41830,7 @@ "Kango (Tshopo District)" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -38223,6 +41841,7 @@ "Kalabra" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -38233,6 +41852,7 @@ "Southern Subanen" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -38243,6 +41863,7 @@ "Linear A" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -38253,6 +41874,7 @@ "Lacandon" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -38263,6 +41885,7 @@ "Ladino" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -38273,6 +41896,7 @@ "Pattani" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -38283,6 +41907,7 @@ "Lafofa" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -38293,6 +41918,7 @@ "Rangi" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -38314,6 +41940,7 @@ "Lambya" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -38324,6 +41951,7 @@ "Lango (Uganda)" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -38334,6 +41962,7 @@ "Laka (Nigeria)" ], "Added": "2009-07-29", + "Scope": "None", "Deprecated": "2022-02-25", "Comments": [], "Prefix": [], @@ -38346,6 +41975,7 @@ "Lalia" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -38356,6 +41986,7 @@ "Lamba" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -38366,6 +41997,7 @@ "Laru" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -38376,6 +42008,7 @@ "Laka (Chad)" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -38386,6 +42019,7 @@ "Qabiao" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -38396,6 +42030,7 @@ "Larteh" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -38406,6 +42041,7 @@ "Lama (Togo)" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -38416,6 +42052,7 @@ "Laba" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -38426,6 +42063,7 @@ "Lauje" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -38436,6 +42074,7 @@ "Tiwa" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -38446,6 +42085,7 @@ "Lama Bai" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -38456,6 +42096,7 @@ "Aribwatsa" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -38466,6 +42107,7 @@ "Lui" ], "Added": "2009-07-29", + "Scope": "None", "Deprecated": "2019-04-16", "Comments": [], "Prefix": [] @@ -38477,6 +42119,7 @@ "Label" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -38487,6 +42130,7 @@ "Lakkia" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -38497,6 +42141,7 @@ "Lak" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -38507,6 +42152,7 @@ "Tinani" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -38517,6 +42163,7 @@ "Laopang" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -38527,6 +42174,7 @@ "La\u0027bi" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -38537,6 +42185,7 @@ "Ladakhi" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -38547,6 +42196,7 @@ "Central Bontok" ], "Added": "2010-03-11", + "Scope": "None", "MacroLanguage": "bnc", "Comments": [], "Prefix": [] @@ -38558,6 +42208,7 @@ "Libon Bikol" ], "Added": "2010-03-11", + "Scope": "None", "MacroLanguage": "bik", "Comments": [], "Prefix": [] @@ -38569,6 +42220,7 @@ "Lodhi" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -38579,6 +42231,7 @@ "Rmeet" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -38589,6 +42242,7 @@ "Laven" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -38599,6 +42253,7 @@ "Wampar" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -38609,6 +42264,7 @@ "Lohorung" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -38619,6 +42275,7 @@ "Libyan Sign Language" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -38629,6 +42286,7 @@ "Lachi" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -38639,6 +42297,7 @@ "Labu" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -38649,6 +42308,7 @@ "Lavatbura-Lamusong" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -38659,6 +42319,7 @@ "Tolaki" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -38669,6 +42330,7 @@ "Lawangan" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -38680,6 +42342,7 @@ "Lamu-Lamu" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -38690,6 +42353,7 @@ "Lardil" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -38700,6 +42364,7 @@ "Legenyem" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -38710,6 +42375,7 @@ "Lola" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -38721,6 +42387,7 @@ "Sekak" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "ms", "Comments": [], "Prefix": [] @@ -38732,6 +42399,7 @@ "Lubu" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "ms", "Comments": [], "Prefix": [] @@ -38743,6 +42411,7 @@ "Luchazi" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -38753,6 +42422,7 @@ "Lisela" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -38763,6 +42433,7 @@ "Tungag" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -38773,6 +42444,7 @@ "Western Lawa" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -38783,6 +42455,7 @@ "Luhu" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -38793,6 +42466,7 @@ "Lisabata-Nuniali" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -38803,6 +42477,7 @@ "Kla-Dan" ], "Added": "2013-09-10", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -38813,6 +42488,7 @@ "D\u0169ya" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -38823,6 +42499,7 @@ "Luri" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -38833,6 +42510,7 @@ "Lenyima" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -38843,6 +42521,7 @@ "Lamja-Dengsa-Tola" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -38853,6 +42532,7 @@ "Laari" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "kg", "Comments": [], "Prefix": [] @@ -38864,6 +42544,7 @@ "Lemoro" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -38874,6 +42555,7 @@ "Leelau" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -38884,6 +42566,7 @@ "Kaan" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -38894,6 +42577,7 @@ "Landoma" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -38904,6 +42588,7 @@ "L\u00E1adan" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -38914,6 +42599,7 @@ "Loo" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -38924,6 +42610,7 @@ "Tso" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -38934,6 +42621,7 @@ "Lufu" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -38944,6 +42632,7 @@ "Lega-Shabunda" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -38954,6 +42643,7 @@ "Lala-Bisa" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -38964,6 +42654,7 @@ "Leco" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -38974,6 +42665,7 @@ "Lendu" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -38984,6 +42676,7 @@ "Ly\u00E9l\u00E9" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -38994,6 +42687,7 @@ "Lelemi" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -39004,6 +42698,7 @@ "Lengua" ], "Added": "2009-07-29", + "Scope": "None", "Deprecated": "2014-02-28", "Comments": [ "see enl, enx" @@ -39017,6 +42712,7 @@ "Lenje" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -39027,6 +42723,7 @@ "Lemio" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -39037,6 +42734,7 @@ "Lengola" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -39047,6 +42745,7 @@ "Leipon" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -39057,6 +42756,7 @@ "Lele (Democratic Republic of Congo)" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -39067,6 +42767,7 @@ "Nomaande" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -39077,6 +42778,7 @@ "Lenca" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -39087,6 +42789,7 @@ "Leti (Cameroon)" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -39097,6 +42800,7 @@ "Lepcha" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -39107,6 +42811,7 @@ "Lembena" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -39117,6 +42822,7 @@ "Lenkau" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -39127,6 +42833,7 @@ "Lese" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -39138,6 +42845,7 @@ "Amio-Gelimi" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -39148,6 +42856,7 @@ "Kara (Papua New Guinea)" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -39158,6 +42867,7 @@ "Lamma" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -39168,6 +42878,7 @@ "Ledo Kaili" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -39178,6 +42889,7 @@ "Luang" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -39188,6 +42900,7 @@ "Lemolang" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -39198,6 +42911,7 @@ "Lezghian" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -39208,6 +42922,7 @@ "Lefa" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -39218,6 +42933,7 @@ "Lingua Franca Nova" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -39228,6 +42944,7 @@ "Lungga" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -39238,6 +42955,7 @@ "Laghu" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -39248,6 +42966,7 @@ "Lugbara" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -39258,6 +42977,7 @@ "Laghuu" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -39268,6 +42988,7 @@ "Lengilu" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -39279,6 +43000,7 @@ "Neverver" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -39289,6 +43011,7 @@ "Wala" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -39299,6 +43022,7 @@ "Lega-Mwenga" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -39310,6 +43034,7 @@ "Opuuo" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -39320,6 +43045,7 @@ "Lango (South Sudan)" ], "Added": "2022-02-25", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -39330,6 +43056,7 @@ "Logba" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -39340,6 +43067,7 @@ "Lengo" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -39351,6 +43079,7 @@ "L\u00EDngua Gestual Guineense" ], "Added": "2023-03-17", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -39361,6 +43090,7 @@ "Pahi" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -39371,6 +43101,7 @@ "Longgu" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -39381,6 +43112,7 @@ "Ligenza" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -39391,6 +43123,7 @@ "Laha (Viet Nam)" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -39401,6 +43134,7 @@ "Laha (Indonesia)" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -39411,6 +43145,7 @@ "Lahu Shi" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -39421,6 +43156,7 @@ "Lahul Lohar" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -39431,6 +43167,7 @@ "Lhomi" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -39441,6 +43178,7 @@ "Lahanan" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -39451,6 +43189,7 @@ "Lhokpu" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -39461,6 +43200,7 @@ "Mlahs\u00F6" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -39471,6 +43211,7 @@ "Lo-Toga" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -39481,6 +43222,7 @@ "Lahu" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -39491,6 +43233,7 @@ "West-Central Limba" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -39501,6 +43244,7 @@ "Likum" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -39511,6 +43255,7 @@ "Hlai" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -39521,6 +43266,7 @@ "Nyindrou" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -39531,6 +43277,7 @@ "Likila" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -39541,6 +43288,7 @@ "Limbu" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -39551,6 +43299,7 @@ "Ligbi" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -39561,6 +43310,7 @@ "Lihir" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -39571,6 +43321,7 @@ "Lingkhim" ], "Added": "2009-07-29", + "Scope": "None", "Deprecated": "2015-02-12", "Comments": [], "Prefix": [], @@ -39583,6 +43334,7 @@ "Ligurian" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -39593,6 +43345,7 @@ "Lika" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -39603,6 +43356,7 @@ "Lillooet" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -39613,6 +43367,7 @@ "Liki" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -39623,6 +43378,7 @@ "Sekpele" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -39633,6 +43389,7 @@ "Libido" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -39643,6 +43400,7 @@ "Liberian English" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -39653,6 +43411,7 @@ "Lisu" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -39663,6 +43422,7 @@ "Logorik" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -39673,6 +43433,7 @@ "Liv" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -39683,6 +43444,7 @@ "Col" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "ms", "Comments": [], "Prefix": [] @@ -39694,6 +43456,7 @@ "Liabuku" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -39704,6 +43467,7 @@ "Banda-Bambari" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -39714,6 +43478,7 @@ "Libinza" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -39724,6 +43489,7 @@ "Golpa" ], "Added": "2013-09-10", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -39734,6 +43500,7 @@ "Rampi" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -39744,6 +43511,7 @@ "Laiyolo" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -39754,6 +43522,7 @@ "Li\u0027o" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -39764,6 +43533,7 @@ "Lampung Api" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -39774,6 +43544,7 @@ "Yirandali" ], "Added": "2013-09-10", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -39784,6 +43555,7 @@ "Yuru" ], "Added": "2013-09-10", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -39794,6 +43566,7 @@ "Lakalei" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -39805,6 +43578,7 @@ "Lukabaras" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "luy", "Comments": [], "Prefix": [] @@ -39816,6 +43590,7 @@ "Kucong" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -39826,6 +43601,7 @@ "Lakond\u00EA" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -39836,6 +43612,7 @@ "Kenyi" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -39846,6 +43623,7 @@ "Lakha" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -39856,6 +43634,7 @@ "Laki" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -39866,6 +43645,7 @@ "Remun" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -39876,6 +43656,7 @@ "Laeko-Libuat" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -39886,6 +43667,7 @@ "Kalaamaya" ], "Added": "2013-09-10", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -39897,6 +43679,7 @@ "Vure" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -39908,6 +43691,7 @@ "Olukhayo" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "luy", "Comments": [], "Prefix": [] @@ -39919,6 +43703,7 @@ "P\u00E4ri" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -39930,6 +43715,7 @@ "Olushisa" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "luy", "Comments": [], "Prefix": [] @@ -39941,6 +43727,7 @@ "Lakota" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -39951,6 +43738,7 @@ "Kungkari" ], "Added": "2013-09-10", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -39961,6 +43749,7 @@ "Lokoya" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -39971,6 +43760,7 @@ "Lala-Roba" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -39981,6 +43771,7 @@ "Lolo" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -39991,6 +43782,7 @@ "Lele (Guinea)" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -40001,6 +43793,7 @@ "Ladin" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -40011,6 +43804,7 @@ "Lele (Papua New Guinea)" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -40021,6 +43815,7 @@ "Hermit" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -40031,6 +43826,7 @@ "Lole" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -40041,6 +43837,7 @@ "Lamu" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -40051,6 +43848,7 @@ "Teke-Laali" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -40061,6 +43859,7 @@ "Ladji Ladji" ], "Added": "2012-08-12", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -40071,6 +43870,7 @@ "Lelak" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -40081,6 +43881,7 @@ "Lilau" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -40091,6 +43892,7 @@ "Lasalimu" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -40101,6 +43903,7 @@ "Lele (Chad)" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -40111,6 +43914,7 @@ "Khlor" ], "Added": "2009-07-29", + "Scope": "None", "Deprecated": "2019-04-16", "Comments": [], "Prefix": [], @@ -40123,6 +43927,7 @@ "North Efate" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -40133,6 +43938,7 @@ "Lolak" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -40143,6 +43949,7 @@ "Lithuanian Sign Language" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -40153,6 +43960,7 @@ "Lau" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -40163,6 +43971,7 @@ "Lauan" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -40173,6 +43982,7 @@ "East Limba" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -40183,6 +43993,7 @@ "Merei" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -40193,6 +44004,7 @@ "Limilngan" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -40203,6 +44015,7 @@ "Lumun" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -40213,6 +44026,7 @@ "P\u00E9v\u00E9" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -40223,6 +44037,7 @@ "South Lembata" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -40233,6 +44048,7 @@ "Lamogai" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -40243,6 +44059,7 @@ "Lambichhong" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -40253,6 +44070,7 @@ "Lombi" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -40263,6 +44081,7 @@ "West Lembata" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -40273,6 +44092,7 @@ "Lamkang" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -40283,6 +44103,7 @@ "Hano" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -40293,6 +44114,7 @@ "Lamam" ], "Added": "2009-07-29", + "Scope": "None", "Deprecated": "2014-02-28", "Comments": [], "Prefix": [], @@ -40305,6 +44127,7 @@ "Lambadi" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -40315,6 +44138,7 @@ "Lombard" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -40325,6 +44149,7 @@ "Limbum" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -40335,6 +44160,7 @@ "Lamatuka" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -40345,6 +44171,7 @@ "Lamalera" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -40355,6 +44182,7 @@ "Lamenu" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -40365,6 +44193,7 @@ "Lomaiviti" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -40375,6 +44204,7 @@ "Lake Miwok" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -40385,6 +44215,7 @@ "Laimbue" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -40395,6 +44226,7 @@ "Lamboya" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -40405,6 +44237,7 @@ "Lumbee" ], "Added": "2009-07-29", + "Scope": "None", "Deprecated": "2020-03-28", "Comments": [], "Prefix": [] @@ -40416,6 +44249,7 @@ "Langbashe" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -40426,6 +44260,7 @@ "Mbalanhu" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -40437,6 +44272,7 @@ "Lun Bawang" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -40447,6 +44283,7 @@ "Langobardic" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -40457,6 +44294,7 @@ "Lanoh" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -40467,6 +44305,7 @@ "Daantanai\u0027" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -40477,6 +44316,7 @@ "Leningitij" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -40487,6 +44327,7 @@ "South Central Banda" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -40497,6 +44338,7 @@ "Langam" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -40507,6 +44349,7 @@ "Lorediakarkar" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -40517,6 +44360,7 @@ "Lango (South Sudan)" ], "Added": "2009-07-29", + "Scope": "None", "Deprecated": "2022-02-25", "Comments": [ "see imt, lgo, lqr, oie" @@ -40530,6 +44374,7 @@ "Lamnso\u0027" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -40540,6 +44385,7 @@ "Longuda" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -40550,6 +44396,7 @@ "Lanima" ], "Added": "2013-09-10", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -40560,6 +44407,7 @@ "Lonzo" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -40570,6 +44418,7 @@ "Loloda" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -40580,6 +44429,7 @@ "Lobi" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -40590,6 +44440,7 @@ "Inonhan" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -40600,6 +44451,7 @@ "Saluan" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -40610,6 +44462,7 @@ "Logol" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -40620,6 +44473,7 @@ "Logo" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -40631,6 +44485,7 @@ "Narim" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -40641,6 +44496,7 @@ "Loma (C\u00F4te d\u0027Ivoire)" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -40651,6 +44507,7 @@ "Lou" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -40661,6 +44518,7 @@ "Loko" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -40671,6 +44529,7 @@ "Mongo" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -40681,6 +44540,7 @@ "Loma (Liberia)" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -40691,6 +44551,7 @@ "Malawi Lomwe" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -40701,6 +44562,7 @@ "Lombo" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -40711,6 +44573,7 @@ "Lopa" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -40721,6 +44584,7 @@ "Lobala" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -40731,6 +44595,7 @@ "T\u00E9\u00E9n" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -40741,6 +44606,7 @@ "Loniu" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -40751,6 +44617,7 @@ "Otuho" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -40761,6 +44628,7 @@ "Louisiana Creole" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -40771,6 +44639,7 @@ "Lopi" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -40781,6 +44650,7 @@ "Tampias Lobu" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -40791,6 +44661,7 @@ "Loun" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -40801,6 +44672,7 @@ "Loke" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -40811,6 +44683,7 @@ "Lozi" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -40821,6 +44694,7 @@ "Lelepa" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -40831,6 +44705,7 @@ "Lepki" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -40841,6 +44716,7 @@ "Long Phuri Naga" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -40851,6 +44727,7 @@ "Lipo" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -40861,6 +44738,7 @@ "Lopit" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -40871,6 +44749,7 @@ "Logir" ], "Added": "2022-02-25", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -40881,6 +44760,7 @@ "Rara Bakati\u0027" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -40891,6 +44771,7 @@ "Northern Luri" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -40901,6 +44782,7 @@ "Laurentian" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -40911,6 +44793,7 @@ "Laragia" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -40922,6 +44805,7 @@ "Olumarachi" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "luy", "Comments": [], "Prefix": [] @@ -40933,6 +44817,7 @@ "Loarki" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -40943,6 +44828,7 @@ "Lari" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -40954,6 +44840,7 @@ "Olumarama" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "luy", "Comments": [], "Prefix": [] @@ -40965,6 +44852,7 @@ "Lorang" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -40975,6 +44863,7 @@ "Laro" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -40985,6 +44874,7 @@ "Southern Yamphu" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -40995,6 +44885,7 @@ "Larantuka Malay" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -41005,6 +44896,7 @@ "Larevat" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -41015,6 +44907,7 @@ "Lemerig" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -41025,6 +44918,7 @@ "Lasgerdi" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -41036,6 +44930,7 @@ "Langue des Signes Burundaise" ], "Added": "2021-02-20", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -41047,6 +44942,7 @@ "Lengua de se\u00F1as Albarradas" ], "Added": "2022-02-25", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -41057,6 +44953,7 @@ "Lishana Deni" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -41067,6 +44964,7 @@ "Lusengo" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -41077,6 +44975,7 @@ "Lyons Sign Language" ], "Added": "2009-07-29", + "Scope": "None", "Deprecated": "2018-03-08", "Comments": [], "Prefix": [] @@ -41088,6 +44987,7 @@ "Lish" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -41098,6 +44998,7 @@ "Lashi" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -41108,6 +45009,7 @@ "Latvian Sign Language" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -41119,6 +45021,7 @@ "Olusamia" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "luy", "Comments": [], "Prefix": [] @@ -41130,6 +45033,7 @@ "Tibetan Sign Language" ], "Added": "2019-04-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -41140,6 +45044,7 @@ "Laos Sign Language" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -41151,6 +45056,7 @@ "Lengua de Se\u00F1as Paname\u00F1as" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -41161,6 +45067,7 @@ "Aruop" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -41171,6 +45078,7 @@ "Lasi" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -41181,6 +45089,7 @@ "Trinidad and Tobago Sign Language" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -41191,6 +45100,7 @@ "Sivia Sign Language" ], "Added": "2019-04-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -41203,6 +45113,7 @@ "Langue des Signes Seychelloise" ], "Added": "2022-02-25", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -41213,6 +45124,7 @@ "Mauritian Sign Language" ], "Added": "2010-03-11", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -41223,6 +45135,7 @@ "Late Middle Chinese" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -41233,6 +45146,7 @@ "Latgalian" ], "Added": "2010-03-11", + "Scope": "None", "MacroLanguage": "lv", "Comments": [], "Prefix": [] @@ -41244,6 +45158,7 @@ "Thur" ], "Added": "2017-02-23", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -41254,6 +45169,7 @@ "Leti (Indonesia)" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -41264,6 +45180,7 @@ "Latund\u00EA" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -41275,6 +45192,7 @@ "Olutsotso" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "luy", "Comments": [], "Prefix": [] @@ -41287,6 +45205,7 @@ "Lutachoni" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "luy", "Comments": [], "Prefix": [] @@ -41298,6 +45217,7 @@ "Latu" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -41308,6 +45228,7 @@ "Luba-Lulua" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -41318,6 +45239,7 @@ "Aringa" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -41328,6 +45250,7 @@ "Ludian" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -41338,6 +45261,7 @@ "Luvale" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -41348,6 +45272,7 @@ "Laua" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -41358,6 +45283,7 @@ "Leizhou Chinese" ], "Added": "2024-12-12", + "Scope": "None", "MacroLanguage": "zh", "Comments": [], "Prefix": [] @@ -41369,6 +45295,7 @@ "Luiseno" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -41379,6 +45306,7 @@ "Luna" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -41389,6 +45317,7 @@ "Lunanakha" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -41399,6 +45328,7 @@ "Olu\u0027bo" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -41409,6 +45339,7 @@ "Luimbi" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -41419,6 +45350,7 @@ "Lunda" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -41430,6 +45362,7 @@ "Dholuo" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -41440,6 +45373,7 @@ "Lumbu" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -41450,6 +45384,7 @@ "Lucumi" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -41460,6 +45395,7 @@ "Laura" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -41470,6 +45406,7 @@ "Lushai" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -41480,6 +45417,7 @@ "Lushootseed" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -41490,6 +45428,7 @@ "Lumba-Yakkha" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -41500,6 +45439,7 @@ "Luwati" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -41510,6 +45450,7 @@ "Luo (Cameroon)" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -41532,6 +45473,7 @@ "Southern Luri" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -41542,6 +45484,7 @@ "Maku\u0027a" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -41552,6 +45495,7 @@ "Lavi" ], "Added": "2019-04-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -41562,6 +45506,7 @@ "Lavukaleve" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -41572,6 +45517,7 @@ "Lwel" ], "Added": "2023-03-17", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -41582,6 +45528,7 @@ "Standard Latvian" ], "Added": "2010-03-11", + "Scope": "None", "MacroLanguage": "lv", "Comments": [], "Prefix": [] @@ -41593,6 +45540,7 @@ "Levuka" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -41603,6 +45551,7 @@ "Lwalu" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -41613,6 +45562,7 @@ "Lewo Eleng" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -41624,6 +45574,7 @@ "Oluwanga" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "luy", "Comments": [], "Prefix": [] @@ -41635,6 +45586,7 @@ "White Lachi" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -41645,6 +45597,7 @@ "Eastern Lawa" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -41655,6 +45608,7 @@ "Laomian" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -41665,6 +45619,7 @@ "Luwo" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -41675,6 +45630,7 @@ "Malawian Sign Language" ], "Added": "2018-03-08", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -41685,6 +45641,7 @@ "Lewotobi" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -41695,6 +45652,7 @@ "Lawu" ], "Added": "2013-09-10", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -41705,6 +45663,7 @@ "Lewo" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -41715,6 +45674,7 @@ "Lakurumau" ], "Added": "2021-02-20", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -41725,6 +45685,7 @@ "Layakha" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -41735,6 +45696,7 @@ "Lyngngam" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -41745,6 +45707,7 @@ "Luyana" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -41755,6 +45718,7 @@ "Literary Chinese" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "zh", "Comments": [], "Prefix": [] @@ -41766,6 +45730,7 @@ "Litzlitz" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -41776,6 +45741,7 @@ "Leinong Naga" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -41786,6 +45752,7 @@ "Laz" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -41796,6 +45763,7 @@ "San Jer\u00F3nimo Tec\u00F3atl Mazatec" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [ "see also pbm" ], @@ -41808,6 +45776,7 @@ "Yutanduchi Mixtec" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -41818,6 +45787,7 @@ "Madurese" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -41828,6 +45798,7 @@ "Bo-Rukul" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -41838,6 +45809,7 @@ "Mafa" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -41848,6 +45820,7 @@ "Magahi" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -41859,6 +45832,7 @@ ], "Added": "2005-10-16", "SuppressScript": "Deva", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -41869,6 +45843,7 @@ "Jalapa De D\u00EDaz Mazatec" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -41879,6 +45854,7 @@ "Makasar" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -41889,6 +45865,7 @@ "Mam" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -41922,6 +45899,7 @@ "Chiquihuitl\u00E1n Mazatec" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -41932,6 +45910,7 @@ "Masai" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -41942,6 +45921,7 @@ "San Francisco Matlatzinca" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -41952,6 +45932,7 @@ "Huautla Mazatec" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -41962,6 +45943,7 @@ "Sater\u00E9-Maw\u00E9" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -41972,6 +45954,7 @@ "Mampruli" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -41982,6 +45965,7 @@ "North Moluccan Malay" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "ms", "Comments": [], "Prefix": [] @@ -41993,6 +45977,7 @@ "Central Mazahua" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -42003,6 +45988,7 @@ "Higaonon" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -42013,6 +45999,7 @@ "Western Bukidnon Manobo" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -42023,6 +46010,7 @@ "Macushi" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -42033,6 +46021,7 @@ "Dibabawon Manobo" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -42043,6 +46032,7 @@ "Molale" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -42053,6 +46043,7 @@ "Baba Malay" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -42063,6 +46054,7 @@ "Mangseng" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -42073,6 +46065,7 @@ "Ilianen Manobo" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -42083,6 +46076,7 @@ "Nad\u00EBb" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -42093,6 +46087,7 @@ "Malol" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -42103,6 +46098,7 @@ "Maxakal\u00ED" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -42113,6 +46109,7 @@ "Ombamba" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -42123,6 +46120,7 @@ "Macagu\u00E1n" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -42133,6 +46131,7 @@ "Mbo (Cameroon)" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -42143,6 +46142,7 @@ "Malayo" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -42153,6 +46153,7 @@ "Maisin" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -42163,6 +46164,7 @@ "Nukak Mak\u00FA" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -42173,6 +46175,7 @@ "Sarangani Manobo" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -42183,6 +46186,7 @@ "Matigsalug Manobo" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -42193,6 +46197,7 @@ "Mbula-Bwazza" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -42203,6 +46208,7 @@ "Mbulungish" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -42213,6 +46219,7 @@ "Maring" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -42223,6 +46230,7 @@ "Mari (East Sepik Province)" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -42233,6 +46241,7 @@ "Memoni" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -42243,6 +46252,7 @@ "Amoltepec Mixtec" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -42253,6 +46263,7 @@ "Maca" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -42263,6 +46274,7 @@ "Machiguenga" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -42273,6 +46285,7 @@ "Bitur" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -42283,6 +46296,7 @@ "Sharanahua" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -42293,6 +46307,7 @@ "Itundujia Mixtec" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -42303,6 +46318,7 @@ "Mats\u00E9s" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -42313,6 +46329,7 @@ "Mapoyo" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -42323,6 +46340,7 @@ "Maquiritari" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -42333,6 +46351,7 @@ "Mese" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -42343,6 +46362,7 @@ "Mvanip" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -42353,6 +46373,7 @@ "Mbunda" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -42363,6 +46384,7 @@ "Macaguaje" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -42373,6 +46395,7 @@ "Malaccan Creole Portuguese" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -42383,6 +46406,7 @@ "Masana" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -42393,6 +46417,7 @@ "Coatl\u00E1n Mixe" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -42403,6 +46428,7 @@ "Makaa" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -42413,6 +46439,7 @@ "Ese" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -42423,6 +46450,7 @@ "Menya" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -42433,6 +46461,7 @@ "Mambai" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -42443,6 +46472,7 @@ "Mengisa" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -42453,6 +46483,7 @@ "Cameroon Mambila" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -42463,6 +46494,7 @@ "Minanibai" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -42473,6 +46505,7 @@ "Mawa (Chad)" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -42483,6 +46516,7 @@ "Mpiemo" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -42493,6 +46527,7 @@ "South Watut" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -42503,6 +46538,7 @@ "Mawan" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -42513,6 +46549,7 @@ "Mada (Nigeria)" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -42523,6 +46560,7 @@ "Morigi" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -42533,6 +46571,7 @@ "Male (Papua New Guinea)" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -42543,6 +46582,7 @@ "Mbum" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -42553,6 +46593,7 @@ "Maba (Chad)" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -42563,6 +46604,7 @@ "Moksha" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -42573,6 +46615,7 @@ "Massalat" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -42583,6 +46626,7 @@ "Maguindanaon" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -42593,6 +46637,7 @@ "Mamvu" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -42603,6 +46648,7 @@ "Mangbetu" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -42613,6 +46659,7 @@ "Mangbutu" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -42623,6 +46670,7 @@ "Maltese Sign Language" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -42633,6 +46681,7 @@ "Mayogo" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -42643,6 +46692,7 @@ "Mbati" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -42653,6 +46703,7 @@ "Mbala" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -42663,6 +46714,7 @@ "Mbole" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -42673,6 +46725,7 @@ "Mandar" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -42683,6 +46736,7 @@ "Maria (Papua New Guinea)" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -42693,6 +46747,7 @@ "Mbere" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -42703,6 +46758,7 @@ "Mboko" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -42713,6 +46769,7 @@ "Santa Luc\u00EDa Monteverde Mixtec" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -42723,6 +46780,7 @@ "Mbosi" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -42733,6 +46791,7 @@ "Dizin" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -42743,6 +46802,7 @@ "Male (Ethiopia)" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -42753,6 +46813,7 @@ "Suru\u00ED Do Par\u00E1" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -42763,6 +46824,7 @@ "Menka" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -42773,6 +46835,7 @@ "Ikobi" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -42783,6 +46846,7 @@ "Marra" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -42793,6 +46857,7 @@ "Melpa" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -42803,6 +46868,7 @@ "Mengen" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -42813,6 +46879,7 @@ "Megam" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -42823,6 +46890,7 @@ "Mea" ], "Added": "2009-07-29", + "Scope": "None", "Deprecated": "2013-09-10", "Comments": [], "Prefix": [], @@ -42835,6 +46903,7 @@ "Southwestern Tlaxiaco Mixtec" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -42845,6 +46914,7 @@ "Midob" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -42855,6 +46925,7 @@ "Meyah" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -42865,6 +46936,7 @@ "Mekeo" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -42875,6 +46947,7 @@ "Central Melanau" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -42885,6 +46958,7 @@ "Mangala" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -42896,6 +46970,7 @@ ], "Added": "2005-10-16", "SuppressScript": "Latn", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -42906,6 +46981,7 @@ "Kedah Malay" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "ms", "Comments": [], "Prefix": [] @@ -42917,6 +46993,7 @@ "Miriwoong" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -42927,6 +47004,7 @@ "Merey" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -42937,6 +47015,7 @@ "Meru" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -42947,6 +47026,7 @@ "Masmaje" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -42957,6 +47037,7 @@ "Mato" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -42967,6 +47048,7 @@ "Motu" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -42977,6 +47059,7 @@ "Mano" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -42987,6 +47070,7 @@ "Maaka" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -42997,6 +47081,7 @@ "Hassaniyya" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -43007,6 +47092,7 @@ "Menominee" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -43017,6 +47103,7 @@ "Pattani Malay" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "ms", "Comments": [], "Prefix": [] @@ -43028,6 +47115,7 @@ "Bangka" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "ms", "Comments": [], "Prefix": [] @@ -43039,6 +47127,7 @@ "Mba" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -43049,6 +47138,7 @@ "Mendankwe-Nkwen" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -43059,6 +47149,7 @@ "Morisyen" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -43069,6 +47160,7 @@ "Naki" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -43079,6 +47171,7 @@ "Mogofin" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -43089,6 +47182,7 @@ "Matal" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -43099,6 +47193,7 @@ "Wandala" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -43109,6 +47204,7 @@ "Mefele" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -43119,6 +47215,7 @@ "North Mofu" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -43129,6 +47226,7 @@ "Putai" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -43139,6 +47237,7 @@ "Marghi South" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -43149,6 +47248,7 @@ "Cross River Mbembe" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -43159,6 +47259,7 @@ "Mbe" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -43169,6 +47270,7 @@ "Makassar Malay" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -43179,6 +47281,7 @@ "Moba" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -43189,6 +47292,7 @@ "Marrithiyel" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -43199,6 +47303,7 @@ "Mexican Sign Language" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -43209,6 +47314,7 @@ "Mokerang" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -43219,6 +47325,7 @@ "Mbwela" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -43229,6 +47336,7 @@ "Mandjak" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -43239,6 +47347,7 @@ "Mulaha" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -43249,6 +47358,7 @@ "Melo" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -43259,6 +47369,7 @@ "Mayo" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -43269,6 +47380,7 @@ "Mabaan" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -43279,6 +47391,7 @@ "Middle Irish (900-1200)" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -43289,6 +47402,7 @@ "Mararit" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -43299,6 +47413,7 @@ "Morokodo" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -43309,6 +47424,7 @@ "Moru" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -43319,6 +47435,7 @@ "Mango" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -43329,6 +47446,7 @@ "Maklew" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -43339,6 +47457,7 @@ "Mpumpong" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -43349,6 +47468,7 @@ "Makhuwa-Meetto" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -43359,6 +47479,7 @@ "Lijili" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -43369,6 +47490,7 @@ "Abureni" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -43379,6 +47501,7 @@ "Mawes" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -43389,6 +47512,7 @@ "Maleu-Kilenge" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -43399,6 +47523,7 @@ "Mambae" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -43409,6 +47534,7 @@ "Mbangi" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -43419,6 +47545,7 @@ "Meta\u0027" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -43429,6 +47556,7 @@ "Eastern Magar" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -43439,6 +47567,7 @@ "Malila" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -43449,6 +47578,7 @@ "Mambwe-Lungu" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -43459,6 +47589,7 @@ "Manda (Tanzania)" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -43469,6 +47600,7 @@ "Mongol" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -43479,6 +47611,7 @@ "Mailu" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -43489,6 +47622,7 @@ "Matengo" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -43499,6 +47633,7 @@ "Matumbi" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -43509,6 +47644,7 @@ "Omati" ], "Added": "2009-07-29", + "Scope": "None", "Deprecated": "2012-08-12", "Comments": [ "see jbk, jmw" @@ -43522,6 +47658,7 @@ "Mbunga" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -43532,6 +47669,7 @@ "Mbugwe" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -43542,6 +47680,7 @@ "Manda (India)" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -43552,6 +47691,7 @@ "Mahongwe" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -43562,6 +47702,7 @@ "Mocho" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -43572,6 +47713,7 @@ "Mbugu" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -43583,6 +47725,7 @@ "Mah Meri" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -43593,6 +47736,7 @@ "Mamaa" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -43603,6 +47747,7 @@ "Margu" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -43613,6 +47758,7 @@ "Maskoy Pidgin" ], "Added": "2009-07-29", + "Scope": "None", "Deprecated": "2014-02-28", "Comments": [], "Prefix": [] @@ -43624,6 +47770,7 @@ "Ma\u0027di" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -43634,6 +47781,7 @@ "Mogholi" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -43644,6 +47792,7 @@ "Mungaka" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -43654,6 +47803,7 @@ "Mauwake" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -43664,6 +47814,7 @@ "Makhuwa-Moniga" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -43674,6 +47825,7 @@ "M\u00F2cheno" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -43684,6 +47836,7 @@ "Mashi (Zambia)" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -43694,6 +47847,7 @@ "Balinese Malay" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -43704,6 +47858,7 @@ "Mandan" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -43714,6 +47869,7 @@ "Eastern Mari" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "chm", "Comments": [], "Prefix": [] @@ -43725,6 +47881,7 @@ "Buru (Indonesia)" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -43735,6 +47892,7 @@ "Mandahuaca" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -43746,6 +47904,7 @@ "Darang Deng" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -43756,6 +47915,7 @@ "Mbukushu" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -43767,6 +47927,7 @@ "Lhaovo" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -43777,6 +47938,7 @@ "Ma\u0027anyan" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -43787,6 +47949,7 @@ "Mor (Mor Islands)" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -43797,6 +47960,7 @@ "Miami" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -43807,6 +47971,7 @@ "Atatl\u00E1huca Mixtec" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -43818,6 +47983,7 @@ "Micmac" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -43828,6 +47994,7 @@ "Mandaic" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -43838,6 +48005,7 @@ "Ocotepec Mixtec" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -43848,6 +48016,7 @@ "Mofu-Gudur" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -43858,6 +48027,7 @@ "San Miguel El Grande Mixtec" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -43868,6 +48038,7 @@ "Chayuco Mixtec" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -43878,6 +48049,7 @@ "Chigmecatitl\u00E1n Mixtec" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -43889,6 +48061,7 @@ "Mungbam" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -43899,6 +48072,7 @@ "Mikasuki" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -43909,6 +48083,7 @@ "Pe\u00F1oles Mixtec" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -43919,6 +48094,7 @@ "Alacatlatzala Mixtec" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -43929,6 +48105,7 @@ "Minangkabau" ], "Added": "2005-10-16", + "Scope": "None", "MacroLanguage": "ms", "Comments": [], "Prefix": [] @@ -43940,6 +48117,7 @@ "Pinotepa Nacional Mixtec" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -43950,6 +48128,7 @@ "Apasco-Apoala Mixtec" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -43960,6 +48139,7 @@ "M\u00EDskito" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -43970,6 +48150,7 @@ "Isthmus Mixe" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -43991,6 +48172,7 @@ "Southern Puebla Mixtec" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -44001,6 +48183,7 @@ "Cacaloxtepec Mixtec" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -44011,6 +48194,7 @@ "Akoye" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -44021,6 +48205,7 @@ "Mixtepec Mixtec" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -44031,6 +48216,7 @@ "Ayutla Mixtec" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -44041,6 +48227,7 @@ "Coatzospan Mixtec" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -44051,6 +48238,7 @@ "Mahei" ], "Added": "2009-07-29", + "Scope": "None", "Deprecated": "2011-08-16", "Comments": [], "Prefix": [] @@ -44062,6 +48250,7 @@ "Makalero" ], "Added": "2016-05-30", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -44072,6 +48261,7 @@ "San Juan Colorado Mixtec" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -44082,6 +48272,7 @@ "Northwest Maidu" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -44092,6 +48283,7 @@ "Muskum" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -44102,6 +48294,7 @@ "Tu" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -44112,6 +48305,7 @@ "Mwera (Nyasa)" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -44122,6 +48316,7 @@ "Kim Mun" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -44132,6 +48327,7 @@ "Mawak" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -44142,6 +48338,7 @@ "Matukar" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -44152,6 +48349,7 @@ "Mandeali" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -44162,6 +48360,7 @@ "Medebur" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -44172,6 +48371,7 @@ "Ma (Papua New Guinea)" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -44182,6 +48382,7 @@ "Malankuravan" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -44192,6 +48393,7 @@ "Malapandaram" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -44202,6 +48404,7 @@ "Malaryan" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -44212,6 +48415,7 @@ "Malavedan" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -44222,6 +48426,7 @@ "Miship" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -44232,6 +48437,7 @@ "Sauria Paharia" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -44242,6 +48448,7 @@ "Manna-Dora" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -44252,6 +48459,7 @@ "Mannan" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -44262,6 +48470,7 @@ "Karbi" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -44272,6 +48481,7 @@ "Mahali" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -44282,6 +48492,7 @@ "Mahican" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -44292,6 +48503,7 @@ "Majhi" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -44302,6 +48514,7 @@ "Mbre" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -44312,6 +48525,7 @@ "Mal Paharia" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -44322,6 +48536,7 @@ "Siliput" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -44332,6 +48547,7 @@ "Mawchi" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -44342,6 +48558,7 @@ "Miya" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -44352,6 +48569,7 @@ "Mak (China)" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -44373,6 +48591,7 @@ "Dhatki" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -44383,6 +48602,7 @@ "Mokilese" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -44393,6 +48613,7 @@ "Byep" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -44403,6 +48624,7 @@ "Mokole" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -44413,6 +48635,7 @@ "Moklen" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -44423,6 +48646,7 @@ "Kupang Malay" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -44433,6 +48657,7 @@ "Mingang Doso" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -44443,6 +48668,7 @@ "Moikodi" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -44453,6 +48679,7 @@ "Bay Miwok" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -44463,6 +48690,7 @@ "Malas" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -44473,6 +48701,7 @@ "Silacayoapan Mixtec" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -44483,6 +48712,7 @@ "Vamale" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -44493,6 +48723,7 @@ "Konyanka Maninka" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "man", "Comments": [], "Prefix": [] @@ -44504,6 +48735,7 @@ "Mafea" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -44514,6 +48746,7 @@ "Kituba (Congo)" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -44524,6 +48757,7 @@ "Kinamiging Manobo" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -44534,6 +48768,7 @@ "East Makian" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -44544,6 +48779,7 @@ "Makasae" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -44554,6 +48790,7 @@ "Malo" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -44564,6 +48801,7 @@ "Mbule" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -44574,6 +48812,7 @@ "Cao Lan" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -44584,6 +48823,7 @@ "Malakhel" ], "Added": "2009-07-29", + "Scope": "None", "Deprecated": "2013-09-10", "Comments": [], "Prefix": [] @@ -44595,6 +48835,7 @@ "Manambu" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -44605,6 +48846,7 @@ "Mal" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -44615,6 +48857,7 @@ "Mape" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -44625,6 +48868,7 @@ "Malimpung" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -44635,6 +48879,7 @@ "Miltu" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -44646,6 +48891,7 @@ "Kiwilwana" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -44656,6 +48902,7 @@ "Malua Bay" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -44666,6 +48913,7 @@ "Mulam" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -44676,6 +48924,7 @@ "Malango" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -44686,6 +48935,7 @@ "Mlomp" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -44696,6 +48946,7 @@ "Bargam" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -44706,6 +48957,7 @@ "Western Maninkakan" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "man", "Comments": [], "Prefix": [] @@ -44717,6 +48969,7 @@ "Vame" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -44727,6 +48980,7 @@ "Masalit" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -44737,6 +48991,7 @@ "To\u0027abaita" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -44748,6 +49003,7 @@ "Mwotlap" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -44758,6 +49014,7 @@ "Moloko" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -44769,6 +49026,7 @@ "Naha\u0027ai" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -44779,6 +49037,7 @@ "Malaynon" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -44789,6 +49048,7 @@ "Mama" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -44799,6 +49059,7 @@ "Momina" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -44809,6 +49070,7 @@ "Michoac\u00E1n Mazahua" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -44819,6 +49081,7 @@ "Maonan" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -44829,6 +49092,7 @@ "Mae" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -44839,6 +49103,7 @@ "Mundat" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -44849,6 +49114,7 @@ "North Ambrym" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -44859,6 +49125,7 @@ "Mehin\u00E1ku" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -44871,6 +49138,7 @@ "Musar" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -44881,6 +49149,7 @@ "Majhwar" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -44891,6 +49160,7 @@ "Mukha-Dora" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -44901,6 +49171,7 @@ "Man Met" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -44911,6 +49182,7 @@ "Maii" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -44921,6 +49193,7 @@ "Mamanwa" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -44931,6 +49204,7 @@ "Mangga Buang" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -44941,6 +49215,7 @@ "Siawi" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -44951,6 +49226,7 @@ "Musak" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -44961,6 +49237,7 @@ "Western Xiangxi Miao" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "hmn", "Comments": [], "Prefix": [] @@ -44972,6 +49249,7 @@ "Malalamai" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -44982,6 +49260,7 @@ "Mmaala" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -44992,6 +49271,7 @@ "Miriti" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -45002,6 +49282,7 @@ "Emae" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -45012,6 +49293,7 @@ "Madak" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -45022,6 +49304,7 @@ "Migaama" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -45032,6 +49315,7 @@ "Mabaale" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -45042,6 +49326,7 @@ "Mbula" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -45052,6 +49337,7 @@ "Muna" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -45062,6 +49348,7 @@ "Manchu" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -45072,6 +49359,7 @@ "Mond\u00E9" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -45082,6 +49370,7 @@ "Naba" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -45092,6 +49381,7 @@ "Mundani" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -45102,6 +49392,7 @@ "Eastern Mnong" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -45112,6 +49403,7 @@ "Mono (Democratic Republic of Congo)" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -45122,6 +49414,7 @@ "Manipuri" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -45132,6 +49425,7 @@ "Munji" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -45142,6 +49436,7 @@ "Mandinka" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "man", "Comments": [], "Prefix": [] @@ -45153,6 +49448,7 @@ "Tiale" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -45163,6 +49459,7 @@ "Mapena" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -45173,6 +49470,7 @@ "Southern Mnong" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -45194,6 +49492,7 @@ "Min Bei Chinese" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "zh", "Comments": [], "Prefix": [] @@ -45205,6 +49504,7 @@ "Minriq" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -45215,6 +49515,7 @@ "Mono (USA)" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -45225,6 +49526,7 @@ "Mansi" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -45235,6 +49537,7 @@ "Maykulan" ], "Added": "2009-07-29", + "Scope": "None", "Deprecated": "2013-09-10", "Comments": [ "see wnn, xyj, xyk, xyt" @@ -45248,6 +49551,7 @@ "Mer" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -45258,6 +49562,7 @@ "Rennell-Bellona" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -45268,6 +49573,7 @@ "Mon" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -45278,6 +49584,7 @@ "Manikion" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -45288,6 +49595,7 @@ "Manyawa" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -45298,6 +49606,7 @@ "Moni" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -45308,6 +49617,7 @@ "Mwan" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -45318,6 +49628,7 @@ "Mocov\u00ED" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -45328,6 +49639,7 @@ "Mobilian" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -45339,6 +49651,7 @@ "Montagnais" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -45349,6 +49662,7 @@ "Mohegan-Montauk-Narragansett" ], "Added": "2009-07-29", + "Scope": "None", "Deprecated": "2010-03-11", "Comments": [ "see xnt, xpq" @@ -45362,6 +49676,7 @@ "Mongondow" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -45372,6 +49687,7 @@ "Mohawk" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -45382,6 +49698,7 @@ "Mboi" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -45392,6 +49709,7 @@ "Monzombo" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -45402,6 +49720,7 @@ "Morori" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -45412,6 +49731,7 @@ "Mangue" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -45422,6 +49742,7 @@ "Monom" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -45432,6 +49753,7 @@ "Mop\u00E1n Maya" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -45442,6 +49764,7 @@ "Mor (Bomberai Peninsula)" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -45452,6 +49775,7 @@ "Moro" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -45462,6 +49786,7 @@ "Mossi" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -45472,6 +49797,7 @@ "Bar\u00ED" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -45482,6 +49808,7 @@ "Mogum" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -45492,6 +49819,7 @@ "Mohave" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -45502,6 +49830,7 @@ "Moi (Congo)" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -45512,6 +49841,7 @@ "Molima" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -45522,6 +49852,7 @@ "Shekkacho" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -45533,6 +49864,7 @@ "Gergiko" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -45543,6 +49875,7 @@ "Mpoto" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -45554,6 +49887,7 @@ "Mullukmulluk" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -45564,6 +49898,7 @@ "Mangarrayi" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -45574,6 +49909,7 @@ "Machinere" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -45584,6 +49920,7 @@ "Majang" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -45594,6 +49931,7 @@ "Marba" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -45604,6 +49942,7 @@ "Maung" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -45614,6 +49953,7 @@ "Mpade" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -45625,6 +49965,7 @@ "Wangkajunga" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -45635,6 +49976,7 @@ "Mbara (Chad)" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -45645,6 +49987,7 @@ "Middle Watut" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -45655,6 +49998,7 @@ "Yosond\u00FAa Mixtec" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -45665,6 +50009,7 @@ "Mindiri" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -45675,6 +50020,7 @@ "Miu" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -45685,6 +50031,7 @@ "Migabac" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -45695,6 +50042,7 @@ "Mat\u00EDs" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -45705,6 +50053,7 @@ "Vangunu" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -45715,6 +50064,7 @@ "Dadibi" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -45725,6 +50075,7 @@ "Mian" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -45735,6 +50086,7 @@ "Makur\u00E1p" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -45745,6 +50097,7 @@ "Mungkip" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -45755,6 +50108,7 @@ "Mapidian" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -45765,6 +50119,7 @@ "Misima-Panaeati" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -45775,6 +50130,7 @@ "Mapia" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -45785,6 +50141,7 @@ "Mpi" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -45795,6 +50152,7 @@ "Maba (Indonesia)" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -45805,6 +50163,7 @@ "Mbuko" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -45815,6 +50174,7 @@ "Mangole" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -45825,6 +50185,7 @@ "Matepi" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -45835,6 +50196,7 @@ "Momuna" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -45845,6 +50207,7 @@ "Kota Bangun Kutai Malay" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "ms", "Comments": [], "Prefix": [] @@ -45856,6 +50219,7 @@ "Tlazoyaltepec Mixtec" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -45866,6 +50230,7 @@ "Mariri" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -45876,6 +50241,7 @@ "Mamasa" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -45886,6 +50252,7 @@ "Rajah Kabunsuwan Manobo" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -45896,6 +50263,7 @@ "Mbelime" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -45906,6 +50274,7 @@ "South Marquesan" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -45916,6 +50285,7 @@ "Moronene" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -45926,6 +50296,7 @@ "Modole" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -45936,6 +50307,7 @@ "Manipa" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -45946,6 +50318,7 @@ "Minokok" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -45956,6 +50329,7 @@ "Mander" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -45966,6 +50340,7 @@ "West Makian" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -45976,6 +50351,7 @@ "Mok" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -45986,6 +50362,7 @@ "Mandari" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -45996,6 +50373,7 @@ "Mosimo" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -46006,6 +50384,7 @@ "Murupi" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -46016,6 +50395,7 @@ "Mamuju" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -46026,6 +50406,7 @@ "Manggarai" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -46036,6 +50417,7 @@ "Pano" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -46046,6 +50428,7 @@ "Mlabri" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -46056,6 +50439,7 @@ "Marino" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -46066,6 +50450,7 @@ "Maricopa" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -46076,6 +50461,7 @@ "Western Magar" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -46086,6 +50472,7 @@ "Martha\u0027s Vineyard Sign Language" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -46096,6 +50483,7 @@ "Elseng" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -46106,6 +50494,7 @@ "Mising" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -46116,6 +50505,7 @@ "Mara Chin" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -46126,6 +50516,7 @@ "Western Mari" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "chm", "Comments": [], "Prefix": [] @@ -46137,6 +50528,7 @@ "Hmwaveke" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -46147,6 +50539,7 @@ "Mortlockese" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -46158,6 +50551,7 @@ "Mwerlap" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -46168,6 +50562,7 @@ "Cheke Holo" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -46178,6 +50573,7 @@ "Mru" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -46188,6 +50584,7 @@ "Morouas" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -46198,6 +50595,7 @@ "North Marquesan" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -46208,6 +50606,7 @@ "Maria (India)" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -46218,6 +50617,7 @@ "Maragus" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -46228,6 +50628,7 @@ "Marghi Central" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -46238,6 +50639,7 @@ "Mono (Cameroon)" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -46248,6 +50650,7 @@ "Mangareva" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -46258,6 +50661,7 @@ "Maranao" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -46269,6 +50673,7 @@ "Dineor" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -46279,6 +50684,7 @@ "Mandaya" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -46289,6 +50695,7 @@ "Marind" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -46299,6 +50706,7 @@ "Masbatenyo" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -46309,6 +50717,7 @@ "Sankaran Maninka" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "man", "Comments": [], "Prefix": [] @@ -46320,6 +50729,7 @@ "Yucatec Maya Sign Language" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -46330,6 +50740,7 @@ "Musey" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -46340,6 +50751,7 @@ "Mekwei" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -46350,6 +50762,7 @@ "Moraid" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -46360,6 +50773,7 @@ "Masikoro Malagasy" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "mg", "Comments": [], "Prefix": [] @@ -46371,6 +50785,7 @@ "Sabah Malay" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "ms", "Comments": [], "Prefix": [] @@ -46382,6 +50797,7 @@ "Ma (Democratic Republic of Congo)" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -46392,6 +50808,7 @@ "Mansaka" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -46403,6 +50820,7 @@ "Poule" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -46413,6 +50831,7 @@ "Agusan Manobo" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -46423,6 +50842,7 @@ "Vur\u00EBs" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -46433,6 +50853,7 @@ "Mombum" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -46443,6 +50864,7 @@ "Maritsau\u00E1" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -46453,6 +50875,7 @@ "Caac" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -46463,6 +50886,7 @@ "Mongolian Sign Language" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -46473,6 +50897,7 @@ "West Masela" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -46483,6 +50908,7 @@ "Cataelano Mandaya" ], "Added": "2009-07-29", + "Scope": "None", "Deprecated": "2010-03-11", "Comments": [], "Prefix": [], @@ -46495,6 +50921,7 @@ "Musom" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -46505,6 +50932,7 @@ "Maslam" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -46515,6 +50943,7 @@ "Mansoanka" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -46525,6 +50954,7 @@ "Moresada" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -46535,6 +50965,7 @@ "Aruamu" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -46545,6 +50976,7 @@ "Momare" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -46555,6 +50987,7 @@ "Cotabato Manobo" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -46565,6 +50998,7 @@ "Anyin Morofo" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -46575,6 +51009,7 @@ "Munit" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -46585,6 +51020,7 @@ "Mualang" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -46595,6 +51031,7 @@ "Mono (Solomon Islands)" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -46605,6 +51042,7 @@ "Murik (Papua New Guinea)" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -46615,6 +51053,7 @@ "Una" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -46625,6 +51064,7 @@ "Munggui" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -46635,6 +51075,7 @@ "Maiwa (Papua New Guinea)" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -46645,6 +51086,7 @@ "Moskona" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -46655,6 +51097,7 @@ "Mbe\u0027" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -46665,6 +51108,7 @@ "Montol" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -46675,6 +51119,7 @@ "Mator" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -46685,6 +51130,7 @@ "Matagalpa" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -46695,6 +51141,7 @@ "Totontepec Mixe" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -46705,6 +51152,7 @@ "Wich\u00ED Lhamt\u00E9s Nocten" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -46715,6 +51163,7 @@ "Muong" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -46725,6 +51174,7 @@ "Mewari" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "mwr", "Comments": [], "Prefix": [] @@ -46736,6 +51186,7 @@ "Yora" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -46746,6 +51197,7 @@ "Mota" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -46756,6 +51208,7 @@ "Tututepec Mixtec" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -46766,6 +51219,7 @@ "Asaro\u0027o" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -46776,6 +51230,7 @@ "Southern Binukidnon" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -46786,6 +51241,7 @@ "Tida\u00E1 Mixtec" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -46796,6 +51252,7 @@ "Nabi" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -46806,6 +51263,7 @@ "Mundang" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -46816,6 +51274,7 @@ "Mubi" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -46826,6 +51285,7 @@ "Ajumbu" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -46836,6 +51296,7 @@ "Mednyj Aleut" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -46846,6 +51307,7 @@ "Media Lengua" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -46856,6 +51318,7 @@ "Musgu" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -46866,6 +51329,7 @@ "M\u00FCnd\u00FC" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -46876,6 +51340,7 @@ "Musi" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "ms", "Comments": [], "Prefix": [] @@ -46887,6 +51352,7 @@ "Mabire" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -46897,6 +51363,7 @@ "Mugom" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -46918,6 +51385,7 @@ "Maiwala" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -46939,6 +51407,7 @@ "Nyong" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -46949,6 +51418,7 @@ "Malvi" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "raj", "Comments": [], "Prefix": [] @@ -46960,6 +51430,7 @@ "Eastern Xiangxi Miao" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "hmn", "Comments": [], "Prefix": [] @@ -46971,6 +51442,7 @@ "Murle" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -46981,6 +51453,7 @@ "Creek" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -46991,6 +51464,7 @@ "Western Muria" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -47001,6 +51475,7 @@ "Yaaku" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -47011,6 +51486,7 @@ "Muthuvan" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -47021,6 +51497,7 @@ "Bo-Ung" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -47031,6 +51508,7 @@ "Muyang" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -47041,6 +51519,7 @@ "Mursi" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -47051,6 +51530,7 @@ "Manam" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -47061,6 +51541,7 @@ "Mattole" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -47071,6 +51552,7 @@ "Mamboru" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -47081,6 +51563,7 @@ "Marwari (Pakistan)" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "mwr", "Comments": [], "Prefix": [] @@ -47092,6 +51575,7 @@ "Peripheral Mongolian" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "mn", "Comments": [], "Prefix": [] @@ -47103,6 +51587,7 @@ "Yucua\u00F1e Mixtec" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -47113,6 +51598,7 @@ "Mulgi" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -47123,6 +51609,7 @@ "Miyako" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -47133,6 +51620,7 @@ "Mekmek" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -47143,6 +51631,7 @@ "Mbara (Australia)" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -47153,6 +51642,7 @@ "Muya" ], "Added": "2009-07-29", + "Scope": "None", "Deprecated": "2021-02-20", "Comments": [ "see emq, wmg" @@ -47166,6 +51656,7 @@ "Minaveha" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -47176,6 +51667,7 @@ "Marovo" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -47186,6 +51678,7 @@ "Duri" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -47196,6 +51689,7 @@ "Moere" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -47206,6 +51700,7 @@ "Marau" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -47216,6 +51711,7 @@ "Massep" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -47226,6 +51722,7 @@ "Mpotovoro" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -47236,6 +51733,7 @@ "Marfa" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -47246,6 +51744,7 @@ "Tagal Murut" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -47256,6 +51755,7 @@ "Machinga" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -47266,6 +51766,7 @@ "Meoswar" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -47276,6 +51777,7 @@ "Indus Kohistani" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -47286,6 +51788,7 @@ "Mesqan" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -47296,6 +51799,7 @@ "Mwatebu" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -47306,6 +51810,7 @@ "Juwal" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -47316,6 +51821,7 @@ "Are" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -47326,6 +51832,7 @@ "Mudbura" ], "Added": "2009-07-29", + "Scope": "None", "Deprecated": "2013-09-10", "Comments": [ "see dmw, xrq" @@ -47339,6 +51846,7 @@ "Mwera (Chimwera)" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -47349,6 +51857,7 @@ "Murrinh-Patha" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -47359,6 +51868,7 @@ "Aiklep" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -47369,6 +51879,7 @@ "Mouk-Aria" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -47380,6 +51891,7 @@ "Ninde" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -47390,6 +51902,7 @@ "Maligo" ], "Added": "2009-07-29", + "Scope": "None", "Deprecated": "2015-02-12", "Comments": [], "Prefix": [], @@ -47402,6 +51915,7 @@ "Kita Maninkakan" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "man", "Comments": [], "Prefix": [] @@ -47413,6 +51927,7 @@ "Mirandese" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -47423,6 +51938,7 @@ "Sar" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -47433,6 +51949,7 @@ "Nyamwanga" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -47443,6 +51960,7 @@ "Central Maewo" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -47453,6 +51971,7 @@ "Kala Lagaw Ya" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -47463,6 +51982,7 @@ "M\u00FCn Chin" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -47484,6 +52004,7 @@ "Mwimbi-Muthambi" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -47494,6 +52015,7 @@ "Moken" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -47504,6 +52026,7 @@ "Mittu" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -47514,6 +52037,7 @@ "Mentawai" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -47524,6 +52048,7 @@ "Hmong Daw" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "hmn", "Comments": [], "Prefix": [] @@ -47535,6 +52060,7 @@ "Mediak" ], "Added": "2009-07-29", + "Scope": "None", "Deprecated": "2018-03-08", "Comments": [], "Prefix": [] @@ -47546,6 +52072,7 @@ "Mosiro" ], "Added": "2009-07-29", + "Scope": "None", "Deprecated": "2018-03-08", "Comments": [], "Prefix": [] @@ -47557,6 +52084,7 @@ "Moingi" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -47567,6 +52095,7 @@ "Northwest Oaxaca Mixtec" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -47577,6 +52106,7 @@ "Tezoatl\u00E1n Mixtec" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -47587,6 +52117,7 @@ "Manyika" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -47597,6 +52128,7 @@ "Modang" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -47607,6 +52139,7 @@ "Mele-Fila" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -47617,6 +52150,7 @@ "Malgbe" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -47627,6 +52161,7 @@ "Mbangala" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -47637,6 +52172,7 @@ "Mvuba" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -47647,6 +52183,7 @@ "Mozarabic" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -47658,6 +52195,7 @@ "Geman Deng" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -47668,6 +52206,7 @@ "Monumbo" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -47678,6 +52217,7 @@ "Maxi Gbe" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -47688,6 +52228,7 @@ "Meramera" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -47698,6 +52239,7 @@ "Moi (Indonesia)" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -47708,6 +52250,7 @@ "Mbowe" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -47718,6 +52261,7 @@ "Tlahuitoltepec Mixe" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -47728,6 +52272,7 @@ "Juquila Mixe" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -47738,6 +52283,7 @@ "Murik (Malaysia)" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -47748,6 +52294,7 @@ "Huitepec Mixtec" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -47758,6 +52305,7 @@ "Jamiltepec Mixtec" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -47768,6 +52316,7 @@ "Mada (Cameroon)" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -47778,6 +52327,7 @@ "Metlat\u00F3noc Mixtec" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -47788,6 +52338,7 @@ "Namo" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -47799,6 +52350,7 @@ "Mawukakan" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -47809,6 +52361,7 @@ "Southeastern Nochixtl\u00E1n Mixtec" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -47819,6 +52372,7 @@ "Central Masela" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -47829,6 +52383,7 @@ "Mbay" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -47839,6 +52394,7 @@ "Mayeka" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -47849,6 +52405,7 @@ "Maramba" ], "Added": "2009-07-29", + "Scope": "None", "Deprecated": "2019-04-16", "Comments": [], "Prefix": [], @@ -47861,6 +52418,7 @@ "Myene" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -47871,6 +52429,7 @@ "Bambassi" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -47881,6 +52440,7 @@ "Manta" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -47891,6 +52451,7 @@ "Makah" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -47901,6 +52462,7 @@ "Mina (India)" ], "Added": "2009-07-29", + "Scope": "None", "Deprecated": "2019-04-16", "Comments": [], "Prefix": [] @@ -47912,6 +52474,7 @@ "Mangayat" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -47922,6 +52485,7 @@ "Mamara Senoufo" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -47932,6 +52496,7 @@ "Moma" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -47942,6 +52507,7 @@ "Me\u0027en" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -47963,6 +52529,7 @@ "Anfillo" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -47973,6 +52540,7 @@ "Pirah\u00E3" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -47983,6 +52551,7 @@ "Forest Maninka" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "man", "Deprecated": "2013-09-10", "Comments": [], @@ -47995,6 +52564,7 @@ "Muniche" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -48005,6 +52575,7 @@ "Mesmes" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -48015,6 +52586,7 @@ "Sangab Mandaya" ], "Added": "2009-07-29", + "Scope": "None", "Deprecated": "2010-03-11", "Comments": [], "Prefix": [], @@ -48027,6 +52599,7 @@ "Munduruk\u00FA" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -48037,6 +52610,7 @@ "Erzya" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -48047,6 +52621,7 @@ "Muyuw" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -48057,6 +52632,7 @@ "Masaaba" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -48067,6 +52643,7 @@ "Macuna" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -48077,6 +52654,7 @@ "Classical Mandaic" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -48087,6 +52665,7 @@ "Santa Mar\u00EDa Zacatepec Mixtec" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -48097,6 +52676,7 @@ "Tumzabt" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -48107,6 +52687,7 @@ "Madagascar Sign Language" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -48117,6 +52698,7 @@ "Malimba" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -48127,6 +52709,7 @@ "Morawa" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -48137,6 +52720,7 @@ "Monastic Sign Language" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -48147,6 +52731,7 @@ "Wich\u00ED Lhamt\u00E9s G\u00FCisnay" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -48157,6 +52742,7 @@ "Ixcatl\u00E1n Mazatec" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -48167,6 +52753,7 @@ "Manya" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -48177,6 +52764,7 @@ "Nigeria Mambila" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -48187,6 +52775,7 @@ "Mazatl\u00E1n Mixe" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -48197,6 +52786,7 @@ "Mumuye" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -48207,6 +52797,7 @@ "Mazanderani" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -48217,6 +52808,7 @@ "Matipuhy" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -48227,6 +52819,7 @@ "Movima" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -48237,6 +52830,7 @@ "Mori Atas" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -48247,6 +52841,7 @@ "Mar\u00FAbo" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -48257,6 +52852,7 @@ "Macanese" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -48267,6 +52863,7 @@ "Mintil" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -48277,6 +52874,7 @@ "Inapang" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -48287,6 +52885,7 @@ "Manza" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -48297,6 +52896,7 @@ "Deg" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -48307,6 +52907,7 @@ "Mawayana" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -48317,6 +52918,7 @@ "Mozambican Sign Language" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -48327,6 +52929,7 @@ "Maiadomu" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -48337,6 +52940,7 @@ "Namla" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -48347,6 +52951,7 @@ "Southern Nambiku\u00E1ra" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -48357,6 +52962,7 @@ "Narak" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -48367,6 +52973,7 @@ "Nijadali" ], "Added": "2009-07-29", + "Scope": "None", "Deprecated": "2016-05-30", "Comments": [], "Prefix": [], @@ -48379,6 +52986,7 @@ "Naka\u0027ela" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -48389,6 +52997,7 @@ "Nabak" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -48399,6 +53008,7 @@ "Naga Pidgin" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -48431,6 +53041,7 @@ "Nalu" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -48441,6 +53052,7 @@ "Nakanai" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -48451,6 +53063,7 @@ "Nalik" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -48461,6 +53074,7 @@ "Ngan\u0027gityemerri" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -48471,6 +53085,7 @@ "Min Nan Chinese" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "zh", "Comments": [], "Prefix": [] @@ -48482,6 +53097,7 @@ "Naaba" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -48492,6 +53108,7 @@ "Neapolitan" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -48503,6 +53120,7 @@ "Nama (Namibia)" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -48513,6 +53131,7 @@ "Iguta" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -48523,6 +53142,7 @@ "Naasioi" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -48534,6 +53154,7 @@ "Hungworo" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -48544,6 +53165,7 @@ "Nawuri" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -48554,6 +53176,7 @@ "Nakwi" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -48564,6 +53187,7 @@ "Ngarrindjeri" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -48574,6 +53198,7 @@ "Coatepec Nahuatl" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -48584,6 +53209,7 @@ "Nyemba" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -48594,6 +53220,7 @@ "Ndoe" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -48604,6 +53231,7 @@ "Chang Naga" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -48614,6 +53242,7 @@ "Ngbinda" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -48624,6 +53253,7 @@ "Konyak Naga" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -48634,6 +53264,7 @@ "Naxi" ], "Added": "2009-07-29", + "Scope": "None", "Deprecated": "2011-08-16", "Comments": [ "see nru, nxq" @@ -48647,6 +53278,7 @@ "Nagarchal" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -48657,6 +53289,7 @@ "Ngamo" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -48667,6 +53300,7 @@ "Mao Naga" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -48677,6 +53311,7 @@ "Ngarinyman" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -48687,6 +53322,7 @@ "Nake" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -48697,6 +53333,7 @@ "Ngbaka Ma\u0027bo" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -48707,6 +53344,7 @@ "Kuri" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -48717,6 +53355,7 @@ "Nkukoli" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -48727,6 +53366,7 @@ "Nnam" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -48737,6 +53377,7 @@ "Nggem" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -48747,6 +53388,7 @@ "Numana" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -48757,6 +53399,7 @@ "Namibian Sign Language" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -48767,6 +53410,7 @@ "Na" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -48777,6 +53421,7 @@ "Rongmei Naga" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -48787,6 +53432,7 @@ "Ngamambo" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -48797,6 +53443,7 @@ "Southern Ngbandi" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -48807,6 +53454,7 @@ "Ngura" ], "Added": "2009-07-29", + "Scope": "None", "Deprecated": "2013-09-10", "Comments": [ "see ekc, gll, jbi, xpt, xwk" @@ -48820,6 +53468,7 @@ "Ningera" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -48830,6 +53479,7 @@ "Iyo" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -48840,6 +53490,7 @@ "Central Nicobarese" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -48850,6 +53501,7 @@ "Ponam" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -48860,6 +53512,7 @@ "Nachering" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -48870,6 +53523,7 @@ "Yale" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -48880,6 +53534,7 @@ "Notsi" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -48890,6 +53545,7 @@ "Nisga\u0027a" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -48900,6 +53556,7 @@ "Central Huasteca Nahuatl" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -48910,6 +53567,7 @@ "Classical Nahuatl" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -48920,6 +53578,7 @@ "Northern Puebla Nahuatl" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -48930,6 +53589,7 @@ "Na-kara" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -48940,6 +53600,7 @@ "Michoac\u00E1n Nahuatl" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -48950,6 +53611,7 @@ "Nambo" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -48960,6 +53622,7 @@ "Nauna" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -48970,6 +53633,7 @@ "Sibe" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -48980,6 +53644,7 @@ "Ndaktup" ], "Added": "2009-07-29", + "Scope": "None", "Deprecated": "2018-03-08", "Comments": [], "Prefix": [], @@ -48992,6 +53657,7 @@ "Northern Katang" ], "Added": "2017-02-23", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -49002,6 +53668,7 @@ "Ncane" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -49012,6 +53679,7 @@ "Nicaraguan Sign Language" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -49022,6 +53690,7 @@ "Chothe Naga" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -49032,6 +53701,7 @@ "Chumburung" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -49042,6 +53712,7 @@ "Central Puebla Nahuatl" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -49052,6 +53723,7 @@ "Natchez" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -49062,6 +53734,7 @@ "Ndasa" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -49072,6 +53745,7 @@ "Kenswei Nsei" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -49082,6 +53756,7 @@ "Ndau" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -49092,6 +53767,7 @@ "Nde-Nsele-Nta" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -49102,6 +53778,7 @@ "Nadruvian" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -49112,6 +53789,7 @@ "Ndengereko" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -49122,6 +53800,7 @@ "Ndali" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -49132,6 +53811,7 @@ "Samba Leko" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -49142,6 +53822,7 @@ "Ndamba" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -49152,6 +53833,7 @@ "Ndaka" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -49162,6 +53844,7 @@ "Ndolo" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -49172,6 +53855,7 @@ "Ndam" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -49182,6 +53866,7 @@ "Ngundi" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -49192,6 +53877,7 @@ "Ndo" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -49202,6 +53888,7 @@ "Ndombe" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -49212,6 +53899,7 @@ "Ndoola" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -49224,6 +53912,7 @@ ], "Added": "2005-10-16", "SuppressScript": "Latn", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -49234,6 +53923,7 @@ "Ndunga" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -49244,6 +53934,7 @@ "Dugun" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -49254,6 +53945,7 @@ "Ndut" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -49264,6 +53956,7 @@ "Ndobo" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -49274,6 +53967,7 @@ "Nduga" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -49284,6 +53978,7 @@ "Lutos" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -49294,6 +53989,7 @@ "Ndogo" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -49304,6 +54000,7 @@ "Eastern Ngad\u0027a" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -49314,6 +54011,7 @@ "Toura (C\u00F4te d\u0027Ivoire)" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -49324,6 +54022,7 @@ "Nedebang" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -49334,6 +54033,7 @@ "Nde-Gbite" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -49344,6 +54044,7 @@ "N\u00EAl\u00EAmwa-Nixumwak" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -49354,6 +54055,7 @@ "Nefamese" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -49364,6 +54066,7 @@ "Negidal" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -49374,6 +54077,7 @@ "Nyenkha" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -49384,6 +54088,7 @@ "Neo-Hittite" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -49394,6 +54099,7 @@ "Neko" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -49404,6 +54110,7 @@ "Neku" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -49414,6 +54121,7 @@ "Nemi" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -49424,6 +54132,7 @@ "Nengone" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -49434,6 +54143,7 @@ "N\u00E1-Meo" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -49444,6 +54154,7 @@ "North Central Mixe" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -49454,6 +54165,7 @@ "Yahadian" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -49464,6 +54176,7 @@ "Bhoti Kinnauri" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -49474,6 +54187,7 @@ "Nete" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -49484,6 +54198,7 @@ "Neo" ], "Added": "2012-08-12", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -49494,6 +54209,7 @@ "Nyaheun" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -49506,6 +54222,7 @@ "Newari" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -49516,6 +54233,7 @@ "Neme" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -49526,6 +54244,7 @@ "Neyo" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -49536,6 +54255,7 @@ "Nez Perce" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -49546,6 +54266,7 @@ "Dhao" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -49556,6 +54277,7 @@ "Ahwai" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -49567,6 +54289,7 @@ "\u00C4iwoo" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -49577,6 +54300,7 @@ "Nafaanra" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -49587,6 +54311,7 @@ "Mfumte" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -49597,6 +54322,7 @@ "Ngbaka" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -49607,6 +54333,7 @@ "Northern Ngbandi" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -49617,6 +54344,7 @@ "Ngombe (Democratic Republic of Congo)" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -49627,6 +54355,7 @@ "Ngando (Central African Republic)" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -49637,6 +54366,7 @@ "Ngemba" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -49658,6 +54388,7 @@ "Ngbaka Manza" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -49668,6 +54399,7 @@ "N\u01C1ng" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -49678,6 +54410,7 @@ "Ngizim" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -49688,6 +54421,7 @@ "Ngie" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -49698,6 +54432,7 @@ "Dalabon" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -49708,6 +54443,7 @@ "Lomwe" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -49718,6 +54454,7 @@ "Ngatik Men\u0027s Creole" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -49728,6 +54465,7 @@ "Ngwo" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -49738,6 +54476,7 @@ "Ngoni" ], "Added": "2009-07-29", + "Scope": "None", "Deprecated": "2021-02-20", "Comments": [ "see xnj, xnq" @@ -49751,6 +54490,7 @@ "Ngulu" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -49762,6 +54502,7 @@ "Ngoreme" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -49772,6 +54513,7 @@ "Engdewu" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -49782,6 +54524,7 @@ "Gvoko" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -49793,6 +54536,7 @@ "Ngeq" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -49803,6 +54547,7 @@ "Guerrero Nahuatl" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -49813,6 +54558,7 @@ "Nagumi" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -49823,6 +54569,7 @@ "Ngwaba" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -49833,6 +54580,7 @@ "Nggwahyi" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -49843,6 +54591,7 @@ "Tibea" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -49853,6 +54602,7 @@ "Ngungwel" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -49863,6 +54613,7 @@ "Nhanda" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -49873,6 +54624,7 @@ "Beng" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -49883,6 +54635,7 @@ "Tabasco Nahuatl" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -49894,6 +54647,7 @@ "Ava Guaran\u00ED" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "gn", "Comments": [], "Prefix": [] @@ -49905,6 +54659,7 @@ "Eastern Huasteca Nahuatl" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -49915,6 +54670,7 @@ "Nhuwala" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -49925,6 +54681,7 @@ "Tetelcingo Nahuatl" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -49935,6 +54692,7 @@ "Nahari" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -49945,6 +54703,7 @@ "Zacatl\u00E1n-Ahuacatl\u00E1n-Tepetzintla Nahuatl" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -49955,6 +54714,7 @@ "Isthmus-Cosoleacaque Nahuatl" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -49965,6 +54725,7 @@ "Morelos Nahuatl" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -49975,6 +54736,7 @@ "Central Nahuatl" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -49985,6 +54747,7 @@ "Takuu" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -49995,6 +54758,7 @@ "Isthmus-Pajapan Nahuatl" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -50005,6 +54769,7 @@ "Huaxcaleca Nahuatl" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -50015,6 +54780,7 @@ "Naro" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -50025,6 +54791,7 @@ "Ometepec Nahuatl" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -50035,6 +54802,7 @@ "Noone" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -50045,6 +54813,7 @@ "Temascaltepec Nahuatl" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -50055,6 +54824,7 @@ "Western Huasteca Nahuatl" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -50065,6 +54835,7 @@ "Isthmus-Mecayapan Nahuatl" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -50075,6 +54846,7 @@ "Northern Oaxaca Nahuatl" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -50085,6 +54857,7 @@ "Santa Mar\u00EDa La Alta Nahuatl" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -50095,6 +54868,7 @@ "Nias" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -50105,6 +54879,7 @@ "Nakame" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -50126,6 +54901,7 @@ "Ngandi" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -50136,6 +54912,7 @@ "Niellim" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -50146,6 +54923,7 @@ "Nek" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -50156,6 +54934,7 @@ "Ngalakgan" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -50166,6 +54945,7 @@ "Nyiha (Tanzania)" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -50176,6 +54956,7 @@ "Nii" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -50186,6 +54967,7 @@ "Ngaju" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -50196,6 +54978,7 @@ "Southern Nicobarese" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -50206,6 +54989,7 @@ "Nila" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -50216,6 +55000,7 @@ "Nilamba" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -50226,6 +55011,7 @@ "Ninzo" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -50236,6 +55022,7 @@ "Nganasan" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -50246,6 +55033,7 @@ "Nandi" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "kln", "Comments": [], "Prefix": [] @@ -50257,6 +55045,7 @@ "Nimboran" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -50267,6 +55056,7 @@ "Nimi" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -50277,6 +55067,7 @@ "Southeastern Kolami" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -50288,6 +55079,7 @@ ], "Added": "2005-10-16", "SuppressScript": "Latn", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -50298,6 +55090,7 @@ "Gilyak" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -50308,6 +55101,7 @@ "Nimo" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -50318,6 +55112,7 @@ "Hema" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -50328,6 +55123,7 @@ "Ngiti" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -50338,6 +55134,7 @@ "Ningil" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -50348,6 +55145,7 @@ "Nzanyi" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -50358,6 +55156,7 @@ "Nocte Naga" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -50368,6 +55167,7 @@ "Ndonde Hamba" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -50378,6 +55178,7 @@ "Lotha Naga" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -50388,6 +55189,7 @@ "Gudanji" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -50398,6 +55200,7 @@ "Njen" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -50408,6 +55211,7 @@ "Njalgulgule" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -50418,6 +55222,7 @@ "Angami Naga" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -50428,6 +55233,7 @@ "Liangmai Naga" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -50438,6 +55244,7 @@ "Ao Naga" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -50448,6 +55255,7 @@ "Njerep" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -50458,6 +55266,7 @@ "Nisa" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -50468,6 +55277,7 @@ "Ndyuka-Trio Pidgin" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -50478,6 +55288,7 @@ "Ngadjunmaya" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -50488,6 +55299,7 @@ "Kunyi" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -50498,6 +55310,7 @@ "Njyem" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -50508,6 +55321,7 @@ "Nyishi" ], "Added": "2012-08-12", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -50518,6 +55332,7 @@ "Nkoya" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -50528,6 +55343,7 @@ "Khoibu Naga" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -50538,6 +55354,7 @@ "Nkongho" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -50548,6 +55365,7 @@ "Koireng" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -50558,6 +55376,7 @@ "Duke" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -50568,6 +55387,7 @@ "Inpui Naga" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -50578,6 +55398,7 @@ "Nekgini" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -50588,6 +55409,7 @@ "Khezha Naga" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -50598,6 +55420,7 @@ "Thangal Naga" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -50608,6 +55431,7 @@ "Nakai" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -50618,6 +55442,7 @@ "Nokuku" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -50628,6 +55453,7 @@ "Namat" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -50638,6 +55464,7 @@ "Nkangala" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -50648,6 +55475,7 @@ "Nkonya" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -50658,6 +55486,7 @@ "Niuatoputapu" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -50668,6 +55497,7 @@ "Nkami" ], "Added": "2010-04-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -50678,6 +55508,7 @@ "Nukuoro" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -50688,6 +55519,7 @@ "North Asmat" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -50698,6 +55530,7 @@ "Nyika (Tanzania)" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -50708,6 +55541,7 @@ "Bouna Kulango" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -50718,6 +55552,7 @@ "Nyika (Malawi and Zambia)" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -50728,6 +55563,7 @@ "Nkutu" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -50738,6 +55574,7 @@ "Nkoroo" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -50748,6 +55585,7 @@ "Nkari" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -50758,6 +55596,7 @@ "Ngombale" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -50768,6 +55607,7 @@ "Nalca" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -50778,6 +55618,7 @@ "East Nyala" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "luy", "Comments": [], "Prefix": [] @@ -50789,6 +55630,7 @@ "Gela" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -50799,6 +55641,7 @@ "Grangali" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -50809,6 +55652,7 @@ "Nyali" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -50819,6 +55663,7 @@ "Ninia Yali" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -50829,6 +55674,7 @@ "Nihali" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -50839,6 +55685,7 @@ "Mankiyali" ], "Added": "2018-03-08", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -50849,6 +55696,7 @@ "Durango Nahuatl" ], "Added": "2009-07-29", + "Scope": "None", "Deprecated": "2012-08-12", "Comments": [ "see azd, azn" @@ -50862,6 +55710,7 @@ "Ngul" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -50872,6 +55721,7 @@ "Lao Naga" ], "Added": "2013-09-10", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -50882,6 +55732,7 @@ "Ngarla" ], "Added": "2009-07-29", + "Scope": "None", "Deprecated": "2013-09-10", "Comments": [ "see nrk, ywg" @@ -50895,6 +55746,7 @@ "Nchumbulu" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -50905,6 +55757,7 @@ "Orizaba Nahuatl" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -50915,6 +55768,7 @@ "Walangama" ], "Added": "2013-09-10", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -50925,6 +55779,7 @@ "Nahali" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -50935,6 +55790,7 @@ "Nyamal" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -50945,6 +55801,7 @@ "Nal\u00F6go" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -50955,6 +55812,7 @@ "Maram Naga" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -50966,6 +55824,7 @@ "V\u0027\u00EBnen Taut" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -50976,6 +55835,7 @@ "Ngam" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -50986,6 +55846,7 @@ "Ndumu" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -50996,6 +55857,7 @@ "Mzieme Naga" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -51006,6 +55868,7 @@ "Tangkhul Naga (India)" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [ "see ntx" ], @@ -51018,6 +55881,7 @@ "Kwasio" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -51028,6 +55892,7 @@ "Monsang Naga" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -51038,6 +55903,7 @@ "Nyam" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -51048,6 +55914,7 @@ "Ngombe (Central African Republic)" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -51058,6 +55925,7 @@ "Namakura" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -51068,6 +55936,7 @@ "Ndemli" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -51078,6 +55947,7 @@ "Manangba" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -51088,6 +55958,7 @@ "\u01C3X\u00F3\u00F5" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -51098,6 +55969,7 @@ "Moyon Naga" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -51108,6 +55980,7 @@ "Nimanbur" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -51118,6 +55991,7 @@ "Nambya" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -51128,6 +56002,7 @@ "Nimbari" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -51138,6 +56013,7 @@ "Letemboi" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -51148,6 +56024,7 @@ "Namonuito" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -51158,6 +56035,7 @@ "Northeast Maidu" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -51168,6 +56046,7 @@ "Ngamini" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -51179,6 +56058,7 @@ "Rifao" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -51189,6 +56069,7 @@ "Nama (Papua New Guinea)" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -51199,6 +56080,7 @@ "Namuyi" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -51209,6 +56091,7 @@ "Nawdm" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -51219,6 +56102,7 @@ "Nyangumarta" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -51229,6 +56113,7 @@ "Nande" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -51239,6 +56124,7 @@ "Nancere" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -51249,6 +56135,7 @@ "West Ambae" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -51259,6 +56146,7 @@ "Ngandyera" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -51269,6 +56157,7 @@ "Ngaing" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -51279,6 +56168,7 @@ "Maring Naga" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -51289,6 +56179,7 @@ "Ngiemboon" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -51299,6 +56190,7 @@ "North Nuaulu" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -51309,6 +56201,7 @@ "Nyangatom" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -51319,6 +56212,7 @@ "Nankina" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -51329,6 +56223,7 @@ "Northern Rengma Naga" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -51339,6 +56234,7 @@ "Namia" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -51349,6 +56245,7 @@ "Ngete" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -51359,6 +56256,7 @@ "Wancho Naga" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -51369,6 +56267,7 @@ "Ngindo" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -51379,6 +56278,7 @@ "Narungga" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -51389,6 +56289,7 @@ "Ningye" ], "Added": "2009-07-29", + "Scope": "None", "Deprecated": "2019-04-16", "Comments": [], "Prefix": [], @@ -51401,6 +56302,7 @@ "Nanticoke" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -51411,6 +56313,7 @@ "Dwang" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -51421,6 +56324,7 @@ "Nugunu (Australia)" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -51431,6 +56335,7 @@ "Southern Nuni" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -51441,6 +56346,7 @@ "Ngong" ], "Added": "2009-07-29", + "Scope": "None", "Deprecated": "2015-02-12", "Comments": [], "Prefix": [], @@ -51453,6 +56359,7 @@ "Nyangga" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -51463,6 +56370,7 @@ "Nda\u0027nda\u0027" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -51473,6 +56381,7 @@ "Woun Meu" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -51483,6 +56392,7 @@ "Nuk" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -51493,6 +56403,7 @@ "Northern Thai" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -51503,6 +56414,7 @@ "Nimadi" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -51513,6 +56425,7 @@ "Nomane" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -51523,6 +56436,7 @@ "Nogai" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -51533,6 +56447,7 @@ "Nomu" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -51543,6 +56458,7 @@ "Noiri" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -51553,6 +56469,7 @@ "Nonuya" ], "Added": "2010-03-11", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -51563,6 +56480,7 @@ "Nooksack" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -51573,6 +56491,7 @@ "Nomlaki" ], "Added": "2013-09-10", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -51583,6 +56502,7 @@ "Nocam\u00E1n" ], "Added": "2009-07-29", + "Scope": "None", "Deprecated": "2023-03-17", "Comments": [], "Prefix": [], @@ -51595,6 +56515,7 @@ "Old Norse" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -51605,6 +56526,7 @@ "Nootka" ], "Added": "2009-07-29", + "Scope": "None", "Deprecated": "2011-08-16", "Comments": [ "see dtd, nuk" @@ -51618,6 +56540,7 @@ "Numanggang" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -51628,6 +56551,7 @@ "Ngongo" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -51638,6 +56562,7 @@ "Eastern Nisu" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -51648,6 +56573,7 @@ "Nomatsiguenga" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -51658,6 +56584,7 @@ "Ewage-Notu" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -51668,6 +56595,7 @@ "Novial" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -51678,6 +56606,7 @@ "Nyambo" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -51688,6 +56617,7 @@ "Noy" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -51698,6 +56628,7 @@ "Nayi" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -51708,6 +56639,7 @@ "Nar Phu" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -51718,6 +56650,7 @@ "Nupbikha" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -51728,6 +56661,7 @@ "Ponyo-Gongwang Naga" ], "Added": "2012-08-12", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -51738,6 +56672,7 @@ "Phom Naga" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -51748,6 +56683,7 @@ "Nepali (individual language)" ], "Added": "2012-08-12", + "Scope": "None", "MacroLanguage": "ne", "Comments": [], "Prefix": [] @@ -51759,6 +56695,7 @@ "Southeastern Puebla Nahuatl" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -51769,6 +56706,7 @@ "Mondropolon" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -51779,6 +56717,7 @@ "Pochuri Naga" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -51789,6 +56728,7 @@ "Nipsan" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -51799,6 +56739,7 @@ "Puimei Naga" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -51809,6 +56750,7 @@ "Noipx" ], "Added": "2017-02-23", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -51819,6 +56761,7 @@ "Napu" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -51829,6 +56772,7 @@ "Southern Nago" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -51839,6 +56783,7 @@ "Kura Ede Nago" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -51849,6 +56794,7 @@ "Ngendelengo" ], "Added": "2017-02-23", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -51859,6 +56805,7 @@ "Ndom" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -51869,6 +56816,7 @@ "Nen" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -51881,6 +56829,7 @@ ], "Added": "2006-06-05", "SuppressScript": "Nkoo", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -51891,6 +56840,7 @@ "Kyan-Karyaw Naga" ], "Added": "2013-09-10", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -51901,6 +56851,7 @@ "Nteng" ], "Added": "2021-02-20", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -51911,6 +56862,7 @@ "Akyaung Ari Naga" ], "Added": "2012-08-12", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -51921,6 +56873,7 @@ "Ngom" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -51931,6 +56884,7 @@ "Nara" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -51941,6 +56895,7 @@ "Noric" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -51951,6 +56906,7 @@ "Southern Rengma Naga" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -51963,6 +56919,7 @@ "Sercquiais" ], "Added": "2015-02-12", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -51973,6 +56930,7 @@ "Narango" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -51983,6 +56941,7 @@ "Chokri Naga" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -51993,6 +56952,7 @@ "Ngarla" ], "Added": "2013-09-10", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -52003,6 +56963,7 @@ "Ngarluma" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -52013,6 +56974,7 @@ "Narom" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -52023,6 +56985,7 @@ "Norn" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -52033,6 +56996,7 @@ "North Picene" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -52044,6 +57008,7 @@ "Nora" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -52054,6 +57019,7 @@ "Northern Kalapuya" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -52064,6 +57030,7 @@ "Narua" ], "Added": "2011-08-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -52074,6 +57041,7 @@ "Ngurmbur" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -52084,6 +57052,7 @@ "Lala" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -52094,6 +57063,7 @@ "Sangtam Naga" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -52104,6 +57074,7 @@ "Lower Nossob" ], "Added": "2020-03-28", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -52114,6 +57085,7 @@ "Nshi" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -52124,6 +57096,7 @@ "Southern Nisu" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -52134,6 +57107,7 @@ "Nsenga" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -52144,6 +57118,7 @@ "Northwestern Nisu" ], "Added": "2012-08-12", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -52154,6 +57129,7 @@ "Ngasa" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -52164,6 +57140,7 @@ "Ngoshie" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -52174,6 +57151,7 @@ "Nigerian Sign Language" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -52184,6 +57162,7 @@ "Naskapi" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -52194,6 +57173,7 @@ "Norwegian Sign Language" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -52204,6 +57184,7 @@ "Sumi Naga" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -52214,6 +57195,7 @@ "Nehan" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -52227,6 +57209,7 @@ ], "Added": "2005-10-16", "SuppressScript": "Latn", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -52237,6 +57220,7 @@ "Nepalese Sign Language" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -52247,6 +57231,7 @@ "Northern Sierra Miwok" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -52257,6 +57242,7 @@ "Maritime Sign Language" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -52267,6 +57253,7 @@ "Nali" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -52277,6 +57264,7 @@ "Tase Naga" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -52287,6 +57275,7 @@ "Sierra Negra Nahuatl" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -52297,6 +57286,7 @@ "Southwestern Nisu" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -52307,6 +57297,7 @@ "Navut" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -52317,6 +57308,7 @@ "Nsongo" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -52327,6 +57319,7 @@ "Nasal" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -52337,6 +57330,7 @@ "Nisenan" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -52347,6 +57341,7 @@ "Northern Tidung" ], "Added": "2016-05-30", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -52357,6 +57352,7 @@ "Nathembo" ], "Added": "2009-07-29", + "Scope": "None", "Deprecated": "2024-12-12", "Comments": [], "Prefix": [], @@ -52369,6 +57365,7 @@ "Ngantangarra" ], "Added": "2013-09-10", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -52379,6 +57376,7 @@ "Natioro" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -52389,6 +57387,7 @@ "Ngaanyatjarra" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -52399,6 +57398,7 @@ "Ikoma-Nata-Isenye" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -52409,6 +57409,7 @@ "Nateni" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -52419,6 +57420,7 @@ "Ntomba" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -52429,6 +57431,7 @@ "Northern Tepehuan" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -52439,6 +57442,7 @@ "Delo" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -52449,6 +57453,7 @@ "Natagaimas" ], "Added": "2009-07-29", + "Scope": "None", "Deprecated": "2016-05-30", "Comments": [], "Prefix": [], @@ -52461,6 +57466,7 @@ "Nat\u00FCgu" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -52471,6 +57477,7 @@ "Nottoway" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -52481,6 +57488,7 @@ "Tangkhul Naga (Myanmar)" ], "Added": "2012-08-12", + "Scope": "None", "Comments": [ "see nmf" ], @@ -52493,6 +57501,7 @@ "Mantsi" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -52503,6 +57512,7 @@ "Natanzi" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -52513,6 +57523,7 @@ "Yuanga" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -52534,6 +57545,7 @@ "Nukuini" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -52544,6 +57556,7 @@ "Ngala" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -52554,6 +57567,7 @@ "Ngundu" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -52564,6 +57578,7 @@ "Nusu" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -52574,6 +57589,7 @@ "Nungali" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -52584,6 +57600,7 @@ "Ndunda" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -52594,6 +57611,7 @@ "Ngumbi" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -52604,6 +57622,7 @@ "Nyole" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -52615,6 +57634,7 @@ "Nuuchahnulth" ], "Added": "2011-08-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -52625,6 +57645,7 @@ "Nusa Laut" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -52635,6 +57656,7 @@ "Niuafo\u0027ou" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -52645,6 +57667,7 @@ "Anong" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -52655,6 +57678,7 @@ "Ngu\u00F4n" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -52665,6 +57689,7 @@ "Nupe-Nupe-Tako" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -52675,6 +57700,7 @@ "Nukumanu" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -52685,6 +57711,7 @@ "Nukuria" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -52695,6 +57722,7 @@ "Nuer" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -52705,6 +57733,7 @@ "Nung (Viet Nam)" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -52715,6 +57744,7 @@ "Ngbundu" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -52725,6 +57755,7 @@ "Northern Nuni" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -52735,6 +57766,7 @@ "Nguluwan" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -52745,6 +57777,7 @@ "Mehek" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -52755,6 +57788,7 @@ "Nunggubuyu" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -52765,6 +57799,7 @@ "Tlamacazapa Nahuatl" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -52775,6 +57810,7 @@ "Nasarian" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -52785,6 +57821,7 @@ "Namiae" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -52795,6 +57832,7 @@ "Nyokon" ], "Added": "2012-08-12", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -52805,6 +57843,7 @@ "Nawathinehena" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -52815,6 +57854,7 @@ "Nyabwa" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -52827,6 +57867,7 @@ "Old Newari" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -52837,6 +57878,7 @@ "Ngwe" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -52847,6 +57889,7 @@ "Ngayawung" ], "Added": "2012-08-12", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -52857,6 +57900,7 @@ "Southwest Tanna" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -52867,6 +57911,7 @@ "Nyamusa-Molo" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -52877,6 +57922,7 @@ "Nauo" ], "Added": "2012-08-12", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -52887,6 +57933,7 @@ "Nawaru" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -52897,6 +57944,7 @@ "Ndwewe" ], "Added": "2022-02-25", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -52907,6 +57955,7 @@ "Middle Newar" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -52917,6 +57966,7 @@ "Nottoway-Meherrin" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -52927,6 +57977,7 @@ "Nauete" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -52937,6 +57988,7 @@ "Ngando (Democratic Republic of Congo)" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -52947,6 +57999,7 @@ "Nage" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -52957,6 +58010,7 @@ "Ngad\u0027a" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -52967,6 +58021,7 @@ "Nindi" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -52977,6 +58032,7 @@ "Koki Naga" ], "Added": "2012-08-12", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -52987,6 +58043,7 @@ "South Nuaulu" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -52997,6 +58054,7 @@ "Numidian" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -53007,6 +58065,7 @@ "Ngawun" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -53017,6 +58076,7 @@ "Ndambomo" ], "Added": "2015-02-12", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -53027,6 +58087,7 @@ "Naxi" ], "Added": "2011-08-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -53037,6 +58098,7 @@ "Ninggerum" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -53047,6 +58109,7 @@ "Narau" ], "Added": "2009-07-29", + "Scope": "None", "Deprecated": "2020-03-28", "Comments": [], "Prefix": [], @@ -53059,6 +58122,7 @@ "Nafri" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -53069,6 +58133,7 @@ "Nyangbo" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -53079,6 +58144,7 @@ "Nyanga-li" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -53090,6 +58156,7 @@ "Olunyole" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "luy", "Comments": [], "Prefix": [] @@ -53101,6 +58168,7 @@ "Nyengo" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -53112,6 +58180,7 @@ "Kigiryama" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -53122,6 +58191,7 @@ "Nyindu" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -53132,6 +58202,7 @@ "Nyikina" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -53142,6 +58213,7 @@ "Ama (Sudan)" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -53152,6 +58224,7 @@ "Nyanga" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -53162,6 +58235,7 @@ "Nyaneka" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -53172,6 +58246,7 @@ "Nyeu" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -53182,6 +58257,7 @@ "Nyamwezi" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -53192,6 +58268,7 @@ "Nyankole" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -53202,6 +58279,7 @@ "Nyoro" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -53212,6 +58290,7 @@ "Nyang\u0027i" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -53222,6 +58301,7 @@ "Nayini" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -53232,6 +58312,7 @@ "Nyiha (Malawi)" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -53242,6 +58323,7 @@ "Nyungar" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -53252,6 +58334,7 @@ "Nyawaygi" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -53262,6 +58345,7 @@ "Nyungwe" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -53272,6 +58356,7 @@ "Nyulnyul" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -53282,6 +58367,7 @@ "Nyaw" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -53292,6 +58378,7 @@ "Nganyaywana" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -53302,6 +58389,7 @@ "Nyakyusa-Ngonde" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -53312,6 +58400,7 @@ "Tigon Mbembe" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -53322,6 +58411,7 @@ "Njebi" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -53332,6 +58422,7 @@ "Nzadi" ], "Added": "2018-03-08", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -53342,6 +58433,7 @@ "Nzima" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -53352,6 +58444,7 @@ "Nzakara" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -53362,6 +58455,7 @@ "Zeme Naga" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -53372,6 +58466,7 @@ "Dir-Nyamzak-Mbarimi" ], "Added": "2023-03-17", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -53382,6 +58477,7 @@ "New Zealand Sign Language" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -53392,6 +58488,7 @@ "Teke-Nzikou" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -53402,6 +58499,7 @@ "Nzakambay" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -53412,6 +58510,7 @@ "Nanga Dama Dogon" ], "Added": "2010-03-11", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -53422,6 +58521,7 @@ "Orok" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -53432,6 +58532,7 @@ "Oroch" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -53443,6 +58544,7 @@ "Noakhailla" ], "Added": "2025-05-14", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -53454,6 +58556,7 @@ "Ancient Aramaic (up to 700 BCE)" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -53464,6 +58567,7 @@ "Old Avar" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -53474,6 +58578,7 @@ "Obispe\u00F1o" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -53484,6 +58589,7 @@ "Southern Bontok" ], "Added": "2010-03-11", + "Scope": "None", "MacroLanguage": "bnc", "Comments": [], "Prefix": [] @@ -53495,6 +58601,7 @@ "Oblo" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -53505,6 +58612,7 @@ "Moabite" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -53515,6 +58623,7 @@ "Obo Manobo" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -53525,6 +58634,7 @@ "Old Burmese" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -53535,6 +58645,7 @@ "Old Breton" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -53545,6 +58656,7 @@ "Obulom" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -53555,6 +58667,7 @@ "Ocaina" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -53565,6 +58678,7 @@ "Old Chinese" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -53575,6 +58689,7 @@ "Old Cham" ], "Added": "2021-02-20", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -53585,6 +58700,7 @@ "Old Cornish" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -53595,6 +58711,7 @@ "Atzingo Matlatzinca" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -53605,6 +58722,7 @@ "Odut" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -53615,6 +58733,7 @@ "Od" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -53625,6 +58744,7 @@ "Old Dutch" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -53635,6 +58755,7 @@ "Odual" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -53645,6 +58766,7 @@ "Ofo" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -53655,6 +58777,7 @@ "Old Frisian" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -53665,6 +58788,7 @@ "Efutop" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -53675,6 +58799,7 @@ "Ogbia" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -53685,6 +58810,7 @@ "Ogbah" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -53695,6 +58821,7 @@ "Old Georgian" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -53705,6 +58832,7 @@ "Ogbogolo" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -53715,6 +58843,7 @@ "Khana" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -53725,6 +58854,7 @@ "Ogbronuagum" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -53735,6 +58865,7 @@ "Old Hittite" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -53745,6 +58876,7 @@ "Old Hungarian" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -53755,6 +58887,7 @@ "Oirata" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -53765,6 +58898,7 @@ "Okolie" ], "Added": "2022-02-25", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -53775,6 +58909,7 @@ "Inebu One" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -53785,6 +58920,7 @@ "Northwestern Ojibwa" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "oj", "Comments": [], "Prefix": [] @@ -53796,6 +58932,7 @@ "Central Ojibwa" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "oj", "Comments": [], "Prefix": [] @@ -53807,6 +58944,7 @@ "Eastern Ojibwa" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "oj", "Comments": [], "Prefix": [] @@ -53818,6 +58956,7 @@ "Old Japanese" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -53828,6 +58967,7 @@ "Severn Ojibwa" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "oj", "Comments": [], "Prefix": [] @@ -53839,6 +58979,7 @@ "Ontong Java" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -53849,6 +58990,7 @@ "Western Ojibwa" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "oj", "Comments": [], "Prefix": [] @@ -53860,6 +59002,7 @@ "Okanagan" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -53870,6 +59013,7 @@ "Okobo" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -53880,6 +59024,7 @@ "Kobo" ], "Added": "2021-02-20", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -53890,6 +59035,7 @@ "Okodia" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -53900,6 +59046,7 @@ "Okpe (Southwestern Edo)" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -53910,6 +59057,7 @@ "Koko Babangk" ], "Added": "2012-08-12", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -53920,6 +59068,7 @@ "Koresh-e Rostam" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -53930,6 +59079,7 @@ "Okiek" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "kln", "Comments": [], "Prefix": [] @@ -53941,6 +59091,7 @@ "Oko-Juwoi" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -53951,6 +59102,7 @@ "Kwamtim One" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -53961,6 +59113,7 @@ "Old Kentish Sign Language" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -53971,6 +59124,7 @@ "Middle Korean (10th-16th cent.)" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -53981,6 +59135,7 @@ "Oki-No-Erabu" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -53991,6 +59146,7 @@ "Old Korean (3rd-9th cent.)" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -54001,6 +59157,7 @@ "Kirike" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -54011,6 +59168,7 @@ "Oko-Eni-Osayen" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -54021,6 +59179,7 @@ "Oku" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -54031,6 +59190,7 @@ "Orokaiva" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -54041,6 +59201,7 @@ "Okpe (Northwestern Edo)" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -54051,6 +59212,7 @@ "Old Khmer" ], "Added": "2021-02-20", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -54061,6 +59223,7 @@ "Walungge" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -54071,6 +59234,7 @@ "Mochi" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -54081,6 +59245,7 @@ "Olekha" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -54091,6 +59256,7 @@ "Olkol" ], "Added": "2013-09-10", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -54101,6 +59267,7 @@ "Oloma" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -54111,6 +59278,7 @@ "Livvi" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -54121,6 +59289,7 @@ "Olrat" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -54131,6 +59300,7 @@ "Old Lithuanian" ], "Added": "2014-02-28", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -54141,6 +59311,7 @@ "Kuvale" ], "Added": "2016-05-30", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -54151,6 +59322,7 @@ "Omaha-Ponca" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -54161,6 +59333,7 @@ "East Ambae" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -54171,6 +59344,7 @@ "Mochica" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -54181,6 +59355,7 @@ "Omejes" ], "Added": "2009-07-29", + "Scope": "None", "Deprecated": "2016-05-30", "Comments": [], "Prefix": [] @@ -54192,6 +59367,7 @@ "Omagua" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -54202,6 +59378,7 @@ "Omi" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -54212,6 +59389,7 @@ "Omok" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -54222,6 +59400,7 @@ "Ombo" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -54232,6 +59411,7 @@ "Minoan" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -54242,6 +59422,7 @@ "Utarmbung" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -54252,6 +59433,7 @@ "Old Manipuri" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -54273,6 +59455,7 @@ "Old Marathi" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -54283,6 +59466,7 @@ "Omotik" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -54293,6 +59477,7 @@ "Omurano" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -54314,6 +59499,7 @@ "South Tairora" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -54324,6 +59510,7 @@ "Old Mon" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -54334,6 +59521,7 @@ "Old Malay" ], "Added": "2021-02-20", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -54344,6 +59532,7 @@ "Ona" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -54354,6 +59543,7 @@ "Lingao" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -54364,6 +59554,7 @@ "Oneida" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -54374,6 +59565,7 @@ "Olo" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -54384,6 +59576,7 @@ "Onin" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -54394,6 +59587,7 @@ "Onjob" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -54404,6 +59598,7 @@ "Kabore One" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -54414,6 +59609,7 @@ "Onobasulu" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -54424,6 +59620,7 @@ "Onondaga" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -54434,6 +59631,7 @@ "Sartang" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -54444,6 +59642,7 @@ "Northern One" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -54454,6 +59653,7 @@ "Ono" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -54464,6 +59664,7 @@ "Ontenu" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -54474,6 +59675,7 @@ "Unua" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -54484,6 +59686,7 @@ "Old Nubian" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -54494,6 +59697,7 @@ "Onin Based Pidgin" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -54504,6 +59708,7 @@ "Tohono O\u0027odham" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -54514,6 +59719,7 @@ "Ong" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -54524,6 +59730,7 @@ "\u00D6nge" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -54534,6 +59741,7 @@ "Oorlams" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -54544,6 +59752,7 @@ "Old Ossetic" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -54554,6 +59763,7 @@ "Okpamheri" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -54564,6 +59774,7 @@ "Kopkaka" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -54574,6 +59785,7 @@ "Oksapmin" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -54584,6 +59796,7 @@ "Opao" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -54594,6 +59807,7 @@ "Opata" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -54604,6 +59818,7 @@ "Ofay\u00E9" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -54614,6 +59829,7 @@ "Oroha" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -54624,6 +59840,7 @@ "Orma" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "om", "Comments": [], "Prefix": [] @@ -54635,6 +59852,7 @@ "Orej\u00F3n" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -54645,6 +59863,7 @@ "Oring" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -54655,6 +59874,7 @@ "Oroqen" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -54665,6 +59885,7 @@ "Orang Kanaq" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "ms", "Comments": [], "Prefix": [] @@ -54676,6 +59897,7 @@ "Orokolo" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -54686,6 +59908,7 @@ "Oruma" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -54696,6 +59919,7 @@ "Orang Seletar" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "ms", "Comments": [], "Prefix": [] @@ -54707,6 +59931,7 @@ "Adivasi Oriya" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -54717,6 +59942,7 @@ "Ormuri" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -54727,6 +59953,7 @@ "Old Russian" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -54737,6 +59964,7 @@ "Oro Win" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -54747,6 +59975,7 @@ "Oro" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -54758,6 +59987,7 @@ "Oriya (individual language)" ], "Added": "2012-08-12", + "Scope": "None", "MacroLanguage": "or", "Comments": [], "Prefix": [] @@ -54769,6 +59999,7 @@ "Ormu" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -54779,6 +60010,7 @@ "Osage" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -54789,6 +60021,7 @@ "Oscan" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -54799,6 +60032,7 @@ "Osing" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -54809,6 +60043,7 @@ "Old Sundanese" ], "Added": "2021-02-20", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -54819,6 +60054,7 @@ "Ososo" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -54829,6 +60065,7 @@ "Old Spanish" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -54839,6 +60076,7 @@ "Osatu" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -54849,6 +60087,7 @@ "Southern One" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -54859,6 +60098,7 @@ "Old Saxon" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -54869,6 +60109,7 @@ "Ottoman Turkish (1500-1928)" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -54879,6 +60120,7 @@ "Old Tibetan" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -54889,6 +60131,7 @@ "Ot Danum" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -54899,6 +60142,7 @@ "Mezquital Otomi" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -54909,6 +60153,7 @@ "Oti" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -54919,6 +60164,7 @@ "Old Turkish" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -54929,6 +60175,7 @@ "Tilapa Otomi" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -54939,6 +60186,7 @@ "Eastern Highland Otomi" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -54949,6 +60197,7 @@ "Tenango Otomi" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -54970,6 +60219,7 @@ "Quer\u00E9taro Otomi" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -54980,6 +60230,7 @@ "Otoro" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -54990,6 +60241,7 @@ "Estado de M\u00E9xico Otomi" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -55000,6 +60252,7 @@ "Temoaya Otomi" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -55010,6 +60263,7 @@ "Otuke" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -55020,6 +60274,7 @@ "Ottawa" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "oj", "Comments": [], "Prefix": [] @@ -55031,6 +60286,7 @@ "Texcatepec Otomi" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -55041,6 +60297,7 @@ "Old Tamil" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -55051,6 +60308,7 @@ "Ixtenco Otomi" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -55061,6 +60319,7 @@ "Tagargrent" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -55071,6 +60330,7 @@ "Glio-Oubi" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -55081,6 +60341,7 @@ "Oune" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -55091,6 +60352,7 @@ "Old Uighur" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -55101,6 +60363,7 @@ "Ouma" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -55111,6 +60374,7 @@ "\u01C3O\u01C3ung" ], "Added": "2009-07-29", + "Scope": "None", "Deprecated": "2015-02-12", "Comments": [], "Prefix": [], @@ -55124,6 +60388,7 @@ "\u00D6vdalian" ], "Added": "2016-06-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -55134,6 +60399,7 @@ "Owiniga" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -55144,6 +60410,7 @@ "Old Welsh" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -55154,6 +60421,7 @@ "Oy" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -55164,6 +60432,7 @@ "Oyda" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -55174,6 +60443,7 @@ "Wayampi" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -55184,6 +60454,7 @@ "Oya\u0027oya" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -55194,6 +60465,7 @@ "Koonzime" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -55215,6 +60487,7 @@ "Parec\u00EDs" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -55225,6 +60498,7 @@ "Pacoh" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -55235,6 +60509,7 @@ "Paumar\u00ED" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -55245,6 +60520,7 @@ "Pagibete" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -55255,6 +60531,7 @@ "Paranaw\u00E1t" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -55265,6 +60542,7 @@ "Pangasinan" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -55275,6 +60553,7 @@ "Tenharim" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -55285,6 +60564,7 @@ "Pe" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -55295,6 +60575,7 @@ "Parakan\u00E3" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -55305,6 +60586,7 @@ "Pahlavi" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -55316,6 +60598,7 @@ "Kapampangan" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -55326,6 +60609,7 @@ "Northern Paiute" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -55336,6 +60620,7 @@ "Papiamento" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -55346,6 +60631,7 @@ "Parya" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -55357,6 +60643,7 @@ "Timbisha" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -55367,6 +60654,7 @@ "Papasena" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -55377,6 +60665,7 @@ "Papitalai" ], "Added": "2009-07-29", + "Scope": "None", "Deprecated": "2021-02-20", "Comments": [], "Prefix": [], @@ -55389,6 +60678,7 @@ "Palauan" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -55399,6 +60689,7 @@ "Paka\u00E1snovos" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -55409,6 +60700,7 @@ "Pawnee" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -55419,6 +60711,7 @@ "Pankarar\u00E9" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -55429,6 +60722,7 @@ "Pech" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -55439,6 +60733,7 @@ "Pankarar\u00FA" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -55449,6 +60744,7 @@ "P\u00E1ez" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -55459,6 +60755,7 @@ "Patamona" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -55469,6 +60766,7 @@ "Mezontla Popoloca" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -55479,6 +60777,7 @@ "Coyotepec Popoloca" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -55489,6 +60788,7 @@ "Paraujano" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -55499,6 +60799,7 @@ "E\u0027\u00F1apa Woromaipu" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -55509,6 +60810,7 @@ "Parkwa" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -55519,6 +60821,7 @@ "Mak (Nigeria)" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -55529,6 +60832,7 @@ "Puebla Mazatec" ], "Added": "2018-03-08", + "Scope": "None", "Comments": [ "see also maa" ], @@ -55541,6 +60845,7 @@ "Kpasam" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -55551,6 +60856,7 @@ "Papel" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -55561,6 +60867,7 @@ "Badyara" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -55571,6 +60878,7 @@ "Pangwa" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -55581,6 +60889,7 @@ "Central Pame" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -55591,6 +60900,7 @@ "Southern Pashto" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "ps", "Comments": [], "Prefix": [] @@ -55602,6 +60912,7 @@ "Northern Pashto" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "ps", "Comments": [], "Prefix": [] @@ -55613,6 +60924,7 @@ "Pnar" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -55623,6 +60935,7 @@ "Pyu (Papua New Guinea)" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -55633,6 +60946,7 @@ "Palu" ], "Added": "2009-07-29", + "Scope": "None", "Deprecated": "2012-08-12", "Comments": [], "Prefix": [] @@ -55644,6 +60958,7 @@ "Santa In\u00E9s Ahuatempan Popoloca" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -55654,6 +60969,7 @@ "Pear" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -55664,6 +60980,7 @@ "Bouyei" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -55674,6 +60991,7 @@ "Picard" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -55684,6 +61002,7 @@ "Ruching Palaung" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -55694,6 +61013,7 @@ "Paliyan" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -55704,6 +61024,7 @@ "Paniya" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -55714,6 +61035,7 @@ "Pardhan" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -55724,6 +61046,7 @@ "Duruwa" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -55734,6 +61057,7 @@ "Parenga" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -55744,6 +61068,7 @@ "Paite Chin" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -55754,6 +61079,7 @@ "Pardhi" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -55764,6 +61090,7 @@ "Nigerian Pidgin" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -55774,6 +61101,7 @@ "Piti" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -55784,6 +61112,7 @@ "Pacahuara" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -55794,6 +61123,7 @@ "Panang" ], "Added": "2009-07-29", + "Scope": "None", "Deprecated": "2013-09-10", "Comments": [], "Prefix": [], @@ -55806,6 +61136,7 @@ "Pyapun" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -55816,6 +61147,7 @@ "Anam" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -55826,6 +61158,7 @@ "Pennsylvania German" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -55836,6 +61169,7 @@ "Pa Di" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -55847,6 +61181,7 @@ "Fedan" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -55857,6 +61192,7 @@ "Padoe" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -55867,6 +61203,7 @@ "Plautdietsch" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -55877,6 +61214,7 @@ "Kayan" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -55887,6 +61225,7 @@ "Peranakan Indonesian" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -55897,6 +61236,7 @@ "Eastern Pomo" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -55907,6 +61247,7 @@ "Mala (Papua New Guinea)" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -55917,6 +61258,7 @@ "Taje" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -55927,6 +61269,7 @@ "Northeastern Pomo" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -55937,6 +61280,7 @@ "Pengo" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -55947,6 +61291,7 @@ "Bonan" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -55957,6 +61302,7 @@ "Chichimeca-Jonaz" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -55967,6 +61313,7 @@ "Northern Pomo" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -55977,6 +61324,7 @@ "Penchal" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -55987,6 +61335,7 @@ "Pekal" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "ms", "Comments": [], "Prefix": [] @@ -55998,6 +61347,7 @@ "Phende" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -56008,6 +61358,7 @@ "Old Persian (ca. 600-400 B.C.)" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -56018,6 +61369,7 @@ "Kunja" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -56028,6 +61380,7 @@ "Southern Pomo" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -56038,6 +61391,7 @@ "Iranian Persian" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "fa", "Comments": [], "Prefix": [] @@ -56049,6 +61403,7 @@ "P\u00E9mono" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -56059,6 +61414,7 @@ "Petats" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -56069,6 +61425,7 @@ "Petjo" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -56079,6 +61436,7 @@ "Eastern Penan" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -56089,6 +61447,7 @@ "P\u00E1\u00E1fang" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -56099,6 +61458,7 @@ "Pere" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -56109,6 +61469,7 @@ "Pfaelzisch" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -56119,6 +61480,7 @@ "Sudanese Creole Arabic" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "ar", "Comments": [], "Prefix": [] @@ -56130,6 +61492,7 @@ "G\u0101ndh\u0101r\u012B" ], "Added": "2015-02-12", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -56140,6 +61503,7 @@ "Pangwali" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -56150,6 +61514,7 @@ "Pagi" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -56160,6 +61525,7 @@ "Rerep" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -56170,6 +61536,7 @@ "Primitive Irish" ], "Added": "2011-08-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -56180,6 +61547,7 @@ "Paelignian" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -56190,6 +61558,7 @@ "Pangseng" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -56200,6 +61569,7 @@ "Pagu" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -56210,6 +61580,7 @@ "Pongyong" ], "Added": "2009-07-29", + "Scope": "None", "Deprecated": "2012-08-12", "Comments": [], "Prefix": [] @@ -56221,6 +61592,7 @@ "Papua New Guinean Sign Language" ], "Added": "2016-05-30", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -56231,6 +61603,7 @@ "Pa-Hng" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -56241,6 +61614,7 @@ "Phudagi" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -56251,6 +61625,7 @@ "Phuong" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -56261,6 +61636,7 @@ "Phukha" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -56282,6 +61658,7 @@ "Pahari" ], "Added": "2022-02-25", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -56292,6 +61669,7 @@ "Phake" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -56303,6 +61681,7 @@ "Palula" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -56313,6 +61692,7 @@ "Phimbi" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -56323,6 +61703,7 @@ "Phoenician" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -56333,6 +61714,7 @@ "Phunoi" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -56343,6 +61725,7 @@ "Phana\u0027" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -56353,6 +61736,7 @@ "Pahari-Potwari" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "lah", "Comments": [], "Prefix": [] @@ -56364,6 +61748,7 @@ "Phu Thai" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -56374,6 +61759,7 @@ "Phuan" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -56384,6 +61770,7 @@ "Pahlavani" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -56394,6 +61781,7 @@ "Phangduwali" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -56404,6 +61792,7 @@ "Pima Bajo" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -56414,6 +61803,7 @@ "Yine" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -56424,6 +61814,7 @@ "Pinji" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -56434,6 +61825,7 @@ "Piaroa" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -56444,6 +61836,7 @@ "Piro" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -56454,6 +61847,7 @@ "Pingelapese" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -56464,6 +61858,7 @@ "Pisabo" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -56474,6 +61869,7 @@ "Pitcairn-Norfolk" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -56484,6 +61880,7 @@ "Pini" ], "Added": "2009-07-29", + "Scope": "None", "Deprecated": "2022-02-25", "Comments": [], "Prefix": [] @@ -56495,6 +61892,7 @@ "Pijao" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -56505,6 +61903,7 @@ "Yom" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -56515,6 +61914,7 @@ "Powhatan" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -56525,6 +61925,7 @@ "Piame" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -56535,6 +61936,7 @@ "Piapoco" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -56545,6 +61947,7 @@ "Pero" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -56555,6 +61958,7 @@ "Piratapuyo" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -56565,6 +61969,7 @@ "Pijin" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -56575,6 +61980,7 @@ "Pitta Pitta" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -56585,6 +61991,7 @@ "Pintupi-Luritja" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -56596,6 +62003,7 @@ "Vaeakau-Taumako" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -56606,6 +62014,7 @@ "Pimbwe" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -56616,6 +62025,7 @@ "Piu" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -56626,6 +62036,7 @@ "Piya-Kwonci" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -56636,6 +62047,7 @@ "Pije" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -56646,6 +62058,7 @@ "Pitjantjatjara" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -56656,6 +62069,7 @@ "Ardham\u0101gadh\u012B Pr\u0101krit" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -56667,6 +62081,7 @@ "Kipfokomo" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -56677,6 +62092,7 @@ "Paekche" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -56687,6 +62103,7 @@ "Pak-Tong" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -56697,6 +62114,7 @@ "Pankhu" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -56707,6 +62125,7 @@ "Pakanha" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -56717,6 +62136,7 @@ "P\u00F6koot" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "kln", "Comments": [], "Prefix": [] @@ -56728,6 +62148,7 @@ "Pukapuka" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -56738,6 +62159,7 @@ "Attapady Kurumba" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -56748,6 +62170,7 @@ "Pakistan Sign Language" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -56758,6 +62181,7 @@ "Maleng" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -56768,6 +62192,7 @@ "Paku" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -56778,6 +62203,7 @@ "Miani" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -56788,6 +62214,7 @@ "Polonombauk" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -56798,6 +62225,7 @@ "Central Palawano" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -56808,6 +62236,7 @@ "Polari" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -56818,6 +62247,7 @@ "Palu\u0027e" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -56839,6 +62269,7 @@ "Pilag\u00E1" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -56849,6 +62280,7 @@ "Paulohi" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -56859,6 +62291,7 @@ "Polci" ], "Added": "2009-07-29", + "Scope": "None", "Deprecated": "2023-03-17", "Comments": [ "see nzr, pze, uly, zlu" @@ -56872,6 +62305,7 @@ "Kohistani Shina" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -56882,6 +62316,7 @@ "Shwe Palaung" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -56892,6 +62327,7 @@ "Palenquero" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -56902,6 +62338,7 @@ "Oluta Popoluca" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -56912,6 +62349,7 @@ "Palpa" ], "Added": "2009-07-29", + "Scope": "None", "Deprecated": "2020-03-28", "Comments": [], "Prefix": [] @@ -56923,6 +62361,7 @@ "Palaic" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -56933,6 +62372,7 @@ "Palaka Senoufo" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -56944,6 +62384,7 @@ "San Marcos Tlalcoyalco Popoloca" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -56954,6 +62395,7 @@ "Plateau Malagasy" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "mg", "Comments": [], "Prefix": [] @@ -56965,6 +62407,7 @@ "Palik\u00FAr" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -56975,6 +62418,7 @@ "Southwest Palawano" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -56985,6 +62429,7 @@ "Brooke\u0027s Point Palawano" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -56995,6 +62440,7 @@ "Bolyu" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -57005,6 +62451,7 @@ "Paluan" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -57015,6 +62462,7 @@ "Paama" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -57025,6 +62473,7 @@ "Pambia" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -57035,6 +62484,7 @@ "Palumata" ], "Added": "2009-07-29", + "Scope": "None", "Deprecated": "2016-05-30", "Comments": [], "Prefix": [], @@ -57047,6 +62497,7 @@ "Pallanganmiddang" ], "Added": "2012-08-12", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -57057,6 +62508,7 @@ "Pwaamei" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -57067,6 +62519,7 @@ "Pamona" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -57077,6 +62530,7 @@ "M\u0101h\u0101r\u0101\u1E63\u1E6Dri Pr\u0101krit" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -57087,6 +62541,7 @@ "Northern Pumi" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -57097,6 +62552,7 @@ "Southern Pumi" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -57107,6 +62563,7 @@ "Pamlico" ], "Added": "2009-07-29", + "Scope": "None", "Deprecated": "2023-03-17", "Comments": [], "Prefix": [], @@ -57119,6 +62576,7 @@ "Lingua Franca" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -57129,6 +62587,7 @@ "Pomo" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -57139,6 +62598,7 @@ "Pam" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -57149,6 +62609,7 @@ "Pom" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -57159,6 +62620,7 @@ "Northern Pame" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -57169,6 +62631,7 @@ "Paynamar" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -57179,6 +62642,7 @@ "Piemontese" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -57189,6 +62653,7 @@ "Tuamotuan" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -57199,6 +62664,7 @@ "Mirpur Panjabi" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "lah", "Deprecated": "2015-02-12", "Comments": [], @@ -57212,6 +62678,7 @@ "Plains Miwok" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -57222,6 +62689,7 @@ "Poumei Naga" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -57232,6 +62700,7 @@ "Papuan Malay" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -57242,6 +62711,7 @@ "Southern Pame" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -57252,6 +62722,7 @@ "Punan Bah-Biau" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -57262,6 +62733,7 @@ "Western Panjabi" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "lah", "Comments": [], "Prefix": [] @@ -57273,6 +62745,7 @@ "Pannei" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -57283,6 +62756,7 @@ "Mpinda" ], "Added": "2019-04-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -57293,6 +62767,7 @@ "Western Penan" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -57304,6 +62779,7 @@ "Pongu" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -57314,6 +62790,7 @@ "Penrhyn" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -57324,6 +62801,7 @@ "Aoheng" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -57334,6 +62812,7 @@ "Pinjarup" ], "Added": "2013-09-10", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -57344,6 +62823,7 @@ "Paunaka" ], "Added": "2012-08-12", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -57354,6 +62834,7 @@ "Paleni" ], "Added": "2013-09-10", + "Scope": "None", "Comments": [ "see also wbf" ], @@ -57366,6 +62847,7 @@ "Punan Batu 1" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -57376,6 +62858,7 @@ "Pinai-Hagahai" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -57386,6 +62869,7 @@ "Panobo" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -57396,6 +62880,7 @@ "Pancana" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -57406,6 +62891,7 @@ "Pana (Burkina Faso)" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -57416,6 +62902,7 @@ "Panim" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -57426,6 +62913,7 @@ "Ponosakan" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -57436,6 +62924,7 @@ "Pontic" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -57446,6 +62935,7 @@ "Jiongnai Bunu" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -57456,6 +62946,7 @@ "Pinigura" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -57467,6 +62958,7 @@ "Panytyima" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -57477,6 +62969,7 @@ "Phong-Kniang" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -57487,6 +62980,7 @@ "Pinyin" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [ "a Niger-Congo language spoken in Cameroon; not to be confused with the Pinyin romanization systems used for Chinese and Tibetan" ], @@ -57499,6 +62993,7 @@ "Pana (Central African Republic)" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -57509,6 +63004,7 @@ "Poqomam" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -57519,6 +63015,7 @@ "Ponares" ], "Added": "2009-07-29", + "Scope": "None", "Deprecated": "2016-05-30", "Comments": [], "Prefix": [] @@ -57530,6 +63027,7 @@ "San Juan Atzingo Popoloca" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -57540,6 +63038,7 @@ "Poke" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -57550,6 +63049,7 @@ "Potigu\u00E1ra" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -57560,6 +63060,7 @@ "Poqomchi\u0027" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -57570,6 +63071,7 @@ "Highland Popoluca" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -57580,6 +63082,7 @@ "Pokang\u00E1" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -57590,6 +63093,7 @@ "Southeastern Pomo" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -57600,6 +63104,7 @@ "Pohnpeian" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -57610,6 +63115,7 @@ "Central Pomo" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -57620,6 +63126,7 @@ "Pwapw\u00E2" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -57630,6 +63137,7 @@ "Texistepec Popoluca" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -57640,6 +63148,7 @@ "Sayula Popoluca" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -57650,6 +63159,7 @@ "Potawatomi" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -57660,6 +63170,7 @@ "Upper Guinea Crioulo" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -57670,6 +63181,7 @@ "San Felipe Otlaltepec Popoloca" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -57680,6 +63192,7 @@ "Polabian" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -57690,6 +63203,7 @@ "Pogolo" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -57711,6 +63225,7 @@ "Pao" ], "Added": "2009-07-29", + "Scope": "None", "Deprecated": "2016-05-30", "Comments": [], "Prefix": [], @@ -57723,6 +63238,7 @@ "Papi" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -57733,6 +63249,7 @@ "Paipai" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -57743,6 +63260,7 @@ "Uma" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -57754,6 +63272,7 @@ "Nicarao" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -57764,6 +63283,7 @@ "Papuma" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -57774,6 +63294,7 @@ "Papapana" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -57784,6 +63305,7 @@ "Folopa" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -57794,6 +63316,7 @@ "Pelende" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -57804,6 +63327,7 @@ "Pei" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -57814,6 +63338,7 @@ "Piru" ], "Added": "2009-07-29", + "Scope": "None", "Deprecated": "2013-09-10", "Comments": [], "Prefix": [], @@ -57826,6 +63351,7 @@ "San Lu\u00EDs Temalacayuca Popoloca" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -57836,6 +63362,7 @@ "Pare" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -57846,6 +63373,7 @@ "Papora" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -57856,6 +63384,7 @@ "Pa\u0027a" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -57877,6 +63406,7 @@ "Malecite-Passamaquoddy" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -57909,6 +63439,7 @@ "Lua\u0027" ], "Added": "2009-07-29", + "Scope": "None", "Deprecated": "2017-02-23", "Comments": [], "Prefix": [] @@ -57920,6 +63451,7 @@ "Parachi" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -57930,6 +63462,7 @@ "Parsi-Dari" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -57940,6 +63473,7 @@ "Principense" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -57950,6 +63484,7 @@ "Paranan" ], "Added": "2010-03-11", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -57960,6 +63495,7 @@ "Prussian" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -57970,6 +63506,7 @@ "Porohanon" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -57980,6 +63517,7 @@ "Paic\u00EE" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -57990,6 +63528,7 @@ "Parauk" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -58000,6 +63539,7 @@ "Peruvian Sign Language" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -58010,6 +63550,7 @@ "Kibiri" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -58020,6 +63561,7 @@ "Prasuni" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -58031,6 +63573,7 @@ "Old Occitan (to 1500)" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -58041,6 +63584,7 @@ "Parsi" ], "Added": "2009-07-29", + "Scope": "None", "Deprecated": "2023-03-17", "Comments": [], "Prefix": [], @@ -58053,6 +63597,7 @@ "Ash\u00E9ninka Peren\u00E9" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -58063,6 +63608,7 @@ "Puri" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -58074,6 +63620,7 @@ "Afghan Persian" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "fa", "Comments": [], "Prefix": [] @@ -58085,6 +63632,7 @@ "Phai" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -58095,6 +63643,7 @@ "Puragi" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -58105,6 +63654,7 @@ "Parawen" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -58115,6 +63665,7 @@ "Purik" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -58125,6 +63676,7 @@ "Pray 3" ], "Added": "2009-07-29", + "Scope": "None", "Deprecated": "2016-05-30", "Comments": [], "Prefix": [], @@ -58137,6 +63689,7 @@ "Providencia Sign Language" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -58147,6 +63700,7 @@ "Asue Awyu" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -58158,6 +63712,7 @@ "Persian Sign Language" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -58168,6 +63723,7 @@ "Plains Indian Sign Language" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -58178,6 +63734,7 @@ "Central Malay" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "ms", "Comments": [], "Prefix": [] @@ -58189,6 +63746,7 @@ "Penang Sign Language" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -58200,6 +63758,7 @@ "Southwest Pashayi" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -58211,6 +63770,7 @@ "Southeast Pashayi" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -58221,6 +63781,7 @@ "Puerto Rican Sign Language" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -58231,6 +63792,7 @@ "Pauserna" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -58241,6 +63803,7 @@ "Panasuan" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -58251,6 +63814,7 @@ "Polish Sign Language" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -58261,6 +63825,7 @@ "Philippine Sign Language" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -58271,6 +63836,7 @@ "Pasi" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -58281,6 +63847,7 @@ "Portuguese Sign Language" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -58291,6 +63858,7 @@ "Kaulong" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -58301,6 +63869,7 @@ "Central Pashto" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "ps", "Comments": [], "Prefix": [] @@ -58312,6 +63881,7 @@ "Sauraseni Pr\u0101krit" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -58322,6 +63892,7 @@ "Port Sandwich" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -58332,6 +63903,7 @@ "Piscataway" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -58342,6 +63914,7 @@ "Pai Tavytera" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -58352,6 +63925,7 @@ "Patax\u00F3 H\u00E3-Ha-H\u00E3e" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -58363,6 +63937,7 @@ "Wangkatha" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -58373,6 +63948,7 @@ "Patani" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -58383,6 +63959,7 @@ "Zo\u0027\u00E9" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -58393,6 +63970,7 @@ "Patep" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -58403,6 +63981,7 @@ "Pattapu" ], "Added": "2014-04-06", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -58413,6 +63992,7 @@ "Piamatsina" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -58423,6 +64003,7 @@ "Enrekang" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -58433,6 +64014,7 @@ "Bambam" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -58443,6 +64025,7 @@ "Port Vato" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -58453,6 +64036,7 @@ "Pentlatch" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -58463,6 +64047,7 @@ "Pathiya" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -58473,6 +64058,7 @@ "Western Highland Purepecha" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -58483,6 +64069,7 @@ "Purum" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -58493,6 +64080,7 @@ "Punan Merap" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -58503,6 +64091,7 @@ "Punan Aput" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -58513,6 +64102,7 @@ "Puelche" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -58523,6 +64113,7 @@ "Punan Merah" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -58533,6 +64124,7 @@ "Phuie" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -58543,6 +64135,7 @@ "Puinave" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -58553,6 +64146,7 @@ "Punan Tubu" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -58563,6 +64157,7 @@ "Pu Ko" ], "Added": "2009-07-29", + "Scope": "None", "Deprecated": "2017-02-23", "Comments": [], "Prefix": [] @@ -58574,6 +64169,7 @@ "Puma" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -58584,6 +64180,7 @@ "Puoc" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -58594,6 +64191,7 @@ "Pulabu" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -58604,6 +64202,7 @@ "Puquina" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -58614,6 +64213,7 @@ "Purubor\u00E1" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -58624,6 +64224,7 @@ "Putoh" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -58634,6 +64235,7 @@ "Punu" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -58644,6 +64246,7 @@ "Puluwatese" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -58654,6 +64257,7 @@ "Puare" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -58664,6 +64268,7 @@ "Purisime\u00F1o" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -58674,6 +64279,7 @@ "Purum Naga" ], "Added": "2009-07-29", + "Scope": "None", "Deprecated": "2014-02-28", "Comments": [], "Prefix": [], @@ -58686,6 +64292,7 @@ "Pawaia" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -58696,6 +64303,7 @@ "Panawa" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -58706,6 +64314,7 @@ "Gapapaiwa" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -58716,6 +64325,7 @@ "Patwin" ], "Added": "2013-09-10", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -58726,6 +64336,7 @@ "Molbog" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -58736,6 +64347,7 @@ "Paiwan" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -58746,6 +64358,7 @@ "Pwo Western Karen" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -58756,6 +64369,7 @@ "Powari" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -58766,6 +64380,7 @@ "Pwo Northern Karen" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -58776,6 +64391,7 @@ "Quetzaltepec Mixe" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -58786,6 +64402,7 @@ "Pye Krumen" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -58796,6 +64413,7 @@ "Fyam" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -58806,6 +64424,7 @@ "Poyan\u00E1wa" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -58817,6 +64436,7 @@ "Lengua de Se\u00F1as del Paraguay" ], "Added": "2010-03-11", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -58827,6 +64447,7 @@ "Puyuma" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -58837,6 +64458,7 @@ "Pyu (Myanmar)" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -58847,6 +64469,7 @@ "Pyen" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -58857,6 +64480,7 @@ "Pesse" ], "Added": "2023-03-17", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -58867,6 +64491,7 @@ "Pazeh" ], "Added": "2022-02-25", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -58878,6 +64503,7 @@ "Para Naga" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -58899,6 +64525,7 @@ "Quapaw" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -58909,6 +64536,7 @@ "Huallaga Hu\u00E1nuco Quechua" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "qu", "Comments": [], "Prefix": [] @@ -58921,6 +64549,7 @@ "Quich\u00E9" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -58931,6 +64560,7 @@ "Calder\u00F3n Highland Quichua" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "qu", "Comments": [], "Prefix": [] @@ -58942,6 +64572,7 @@ "Lambayeque Quechua" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "qu", "Comments": [], "Prefix": [] @@ -58953,6 +64584,7 @@ "Chimborazo Highland Quichua" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "qu", "Comments": [], "Prefix": [] @@ -58964,6 +64596,7 @@ "South Bolivian Quechua" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "qu", "Comments": [], "Prefix": [] @@ -58975,6 +64608,7 @@ "Quileute" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -58985,6 +64619,7 @@ "Chachapoyas Quechua" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "qu", "Comments": [], "Prefix": [] @@ -58996,6 +64631,7 @@ "North Bolivian Quechua" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "qu", "Comments": [], "Prefix": [] @@ -59007,6 +64643,7 @@ "Sipacapense" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -59017,6 +64654,7 @@ "Quinault" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -59027,6 +64665,7 @@ "Southern Pastaza Quechua" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "qu", "Comments": [], "Prefix": [] @@ -59038,6 +64677,7 @@ "Quinqui" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -59048,6 +64688,7 @@ "Yanahuanca Pasco Quechua" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "qu", "Comments": [], "Prefix": [] @@ -59059,6 +64700,7 @@ "Santiago del Estero Quichua" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "qu", "Comments": [], "Prefix": [] @@ -59070,6 +64712,7 @@ "Sacapulteco" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -59080,6 +64723,7 @@ "Tena Lowland Quichua" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "qu", "Comments": [], "Prefix": [] @@ -59091,6 +64735,7 @@ "Yauyos Quechua" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "qu", "Comments": [], "Prefix": [] @@ -59102,6 +64747,7 @@ "Ayacucho Quechua" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "qu", "Comments": [], "Prefix": [] @@ -59113,6 +64759,7 @@ "Cusco Quechua" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "qu", "Comments": [], "Prefix": [] @@ -59124,6 +64771,7 @@ "Ambo-Pasco Quechua" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "qu", "Comments": [], "Prefix": [] @@ -59135,6 +64783,7 @@ "Cajamarca Quechua" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "qu", "Comments": [], "Prefix": [] @@ -59146,6 +64795,7 @@ "Eastern Apur\u00EDmac Quechua" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "qu", "Comments": [], "Prefix": [] @@ -59157,6 +64807,7 @@ "Huamal\u00EDes-Dos de Mayo Hu\u00E1nuco Quechua" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "qu", "Comments": [], "Prefix": [] @@ -59168,6 +64819,7 @@ "Imbabura Highland Quichua" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "qu", "Comments": [], "Prefix": [] @@ -59179,6 +64831,7 @@ "Loja Highland Quichua" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "qu", "Comments": [], "Prefix": [] @@ -59190,6 +64843,7 @@ "Cajatambo North Lima Quechua" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "qu", "Comments": [], "Prefix": [] @@ -59201,6 +64855,7 @@ "Margos-Yarowilca-Lauricocha Quechua" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "qu", "Comments": [], "Prefix": [] @@ -59212,6 +64867,7 @@ "North Jun\u00EDn Quechua" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "qu", "Comments": [], "Prefix": [] @@ -59223,6 +64879,7 @@ "Napo Lowland Quechua" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "qu", "Comments": [], "Prefix": [] @@ -59234,6 +64891,7 @@ "Pacaraos Quechua" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "qu", "Comments": [], "Prefix": [] @@ -59245,6 +64903,7 @@ "San Mart\u00EDn Quechua" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "qu", "Comments": [], "Prefix": [] @@ -59256,6 +64915,7 @@ "Huaylla Wanca Quechua" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "qu", "Comments": [], "Prefix": [] @@ -59267,6 +64927,7 @@ "Queyu" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -59277,6 +64938,7 @@ "Northern Pastaza Quichua" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "qu", "Comments": [], "Prefix": [] @@ -59288,6 +64950,7 @@ "Corongo Ancash Quechua" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "qu", "Comments": [], "Prefix": [] @@ -59299,6 +64962,7 @@ "Classical Quechua" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "qu", "Comments": [], "Prefix": [] @@ -59321,6 +64985,7 @@ "Huaylas Ancash Quechua" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "qu", "Comments": [], "Prefix": [] @@ -59332,6 +64997,7 @@ "Kuman (Russia)" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -59342,6 +65008,7 @@ "Sihuas Ancash Quechua" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "qu", "Comments": [], "Prefix": [] @@ -59353,6 +65020,7 @@ "Kwalhioqua-Tlatskanai" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -59363,6 +65031,7 @@ "Chiqui\u00E1n Ancash Quechua" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "qu", "Comments": [], "Prefix": [] @@ -59374,6 +65043,7 @@ "Chincha Quechua" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "qu", "Comments": [], "Prefix": [] @@ -59385,6 +65055,7 @@ "Panao Hu\u00E1nuco Quechua" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "qu", "Comments": [], "Prefix": [] @@ -59396,6 +65067,7 @@ "Salasaca Highland Quichua" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "qu", "Comments": [], "Prefix": [] @@ -59407,6 +65079,7 @@ "Northern Conchucos Ancash Quechua" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "qu", "Comments": [], "Prefix": [] @@ -59418,6 +65091,7 @@ "Southern Conchucos Ancash Quechua" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "qu", "Comments": [], "Prefix": [] @@ -59429,6 +65103,7 @@ "Puno Quechua" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "qu", "Comments": [], "Prefix": [] @@ -59440,6 +65115,7 @@ "Qashqa\u0027i" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -59450,6 +65126,7 @@ "Ca\u00F1ar Highland Quichua" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "qu", "Comments": [], "Prefix": [] @@ -59461,6 +65138,7 @@ "Southern Qiang" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -59471,6 +65149,7 @@ "Santa Ana de Tusi Pasco Quechua" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "qu", "Comments": [], "Prefix": [] @@ -59482,6 +65161,7 @@ "Arequipa-La Uni\u00F3n Quechua" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "qu", "Comments": [], "Prefix": [] @@ -59493,6 +65173,7 @@ "Jauja Wanca Quechua" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "qu", "Comments": [], "Prefix": [] @@ -59504,6 +65185,7 @@ "Quenya" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -59514,6 +65196,7 @@ "Quiripi" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -59524,6 +65207,7 @@ "Dungmali" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -59534,6 +65218,7 @@ "Camling" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -59544,6 +65229,7 @@ "Rasawa" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -59554,6 +65240,7 @@ "Rade" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -59564,6 +65251,7 @@ "Western Meohang" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -59575,6 +65263,7 @@ "Lulogooli" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "luy", "Comments": [], "Prefix": [] @@ -59586,6 +65275,7 @@ "Rabha" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -59596,6 +65286,7 @@ "Ramoaaina" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -59617,6 +65308,7 @@ "Tulu-Bohuai" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -59627,6 +65319,7 @@ "Ralte" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -59637,6 +65330,7 @@ "Canela" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -59647,6 +65341,7 @@ "Riantana" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -59657,6 +65352,7 @@ "Rao" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -59667,6 +65363,7 @@ "Rapanui" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -59677,6 +65374,7 @@ "Saam" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -59688,6 +65386,7 @@ "Cook Islands Maori" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -59698,6 +65397,7 @@ "Tegali" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -59708,6 +65408,7 @@ "Razajerdi" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -59718,6 +65419,7 @@ "Raute" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -59728,6 +65430,7 @@ "Sampang" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -59738,6 +65441,7 @@ "Rawang" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -59748,6 +65452,7 @@ "Rang" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -59758,6 +65463,7 @@ "Rapa" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -59768,6 +65474,7 @@ "Rahambuu" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -59778,6 +65485,7 @@ "Rumai Palaung" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -59788,6 +65496,7 @@ "Northern Bontok" ], "Added": "2010-03-11", + "Scope": "None", "MacroLanguage": "bnc", "Comments": [], "Prefix": [] @@ -59799,6 +65508,7 @@ "Miraya Bikol" ], "Added": "2010-03-11", + "Scope": "None", "MacroLanguage": "bik", "Comments": [], "Prefix": [] @@ -59810,6 +65520,7 @@ "Barababaraba" ], "Added": "2012-08-12", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -59820,6 +65531,7 @@ "R\u00E9union Creole French" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -59830,6 +65542,7 @@ "Rudbari" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -59840,6 +65553,7 @@ "Rerau" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -59850,6 +65564,7 @@ "Rembong" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -59860,6 +65575,7 @@ "Rejang Kayan" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -59870,6 +65586,7 @@ "Kara (Tanzania)" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -59880,6 +65597,7 @@ "Reli" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -59890,6 +65608,7 @@ "Rejang" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -59900,6 +65619,7 @@ "Rendille" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -59910,6 +65630,7 @@ "Remo" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -59920,6 +65641,7 @@ "Rengao" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -59930,6 +65652,7 @@ "Rer Bare" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -59940,6 +65663,7 @@ "Reshe" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -59950,6 +65674,7 @@ "Retta" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -59960,6 +65685,7 @@ "Reyesano" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -59970,6 +65696,7 @@ "Roria" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -59980,6 +65707,7 @@ "Romano-Greek" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -59990,6 +65718,7 @@ "Rangkas" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -60000,6 +65729,7 @@ "Romagnol" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -60010,6 +65740,7 @@ "Res\u00EDgaro" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -60020,6 +65751,7 @@ "Southern Roglai" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -60030,6 +65762,7 @@ "Ringgou" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -60040,6 +65773,7 @@ "Rohingya" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -60050,6 +65784,7 @@ "Yahang" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -60060,6 +65795,7 @@ "Riang (India)" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -60070,6 +65806,7 @@ "Bribri Sign Language" ], "Added": "2022-02-25", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -60080,6 +65817,7 @@ "Rien" ], "Added": "2009-07-29", + "Scope": "None", "Deprecated": "2017-02-23", "Comments": [], "Prefix": [] @@ -60091,6 +65829,7 @@ "Tarifit" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -60102,6 +65841,7 @@ "Riang (Myanmar)" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -60112,6 +65852,7 @@ "Nyaturu" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -60122,6 +65863,7 @@ "Nungu" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -60132,6 +65874,7 @@ "Ribun" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -60142,6 +65885,7 @@ "Ritharrngu" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -60152,6 +65896,7 @@ "Riung" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -60162,6 +65907,7 @@ "Rajong" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -60172,6 +65918,7 @@ "Raji" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -60182,6 +65929,7 @@ "Rajbanshi" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -60192,6 +65940,7 @@ "Kraol" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -60202,6 +65951,7 @@ "Rikbaktsa" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -60212,6 +65962,7 @@ "Rakahanga-Manihiki" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -60222,6 +65973,7 @@ "Rakhine" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -60232,6 +65984,7 @@ "Marka" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -60243,6 +65996,7 @@ "Kamta" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -60253,6 +66007,7 @@ "Arakwal" ], "Added": "2013-09-10", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -60263,6 +66018,7 @@ "Rama" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -60273,6 +66029,7 @@ "Rembarrnga" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -60283,6 +66040,7 @@ "Carpathian Romani" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "rom", "Comments": [], "Prefix": [] @@ -60294,6 +66052,7 @@ "Traveller Danish" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -60304,6 +66063,7 @@ "Angloromani" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -60314,6 +66074,7 @@ "Kalo Finnish Romani" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "rom", "Comments": [], "Prefix": [] @@ -60325,6 +66086,7 @@ "Traveller Norwegian" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -60335,6 +66097,7 @@ "Murkim" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -60345,6 +66108,7 @@ "Lomavren" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -60355,6 +66119,7 @@ "Romkun" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -60365,6 +66130,7 @@ "Baltic Romani" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "rom", "Comments": [], "Prefix": [] @@ -60376,6 +66142,7 @@ "Roma" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -60386,6 +66153,7 @@ "Balkan Romani" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "rom", "Comments": [], "Prefix": [] @@ -60397,6 +66165,7 @@ "Sinte Romani" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "rom", "Comments": [], "Prefix": [] @@ -60408,6 +66177,7 @@ "Rempi" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -60418,6 +66188,7 @@ "Cal\u00F3" ], "Added": "2010-03-11", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -60428,6 +66199,7 @@ "Cal\u00F3" ], "Added": "2009-07-29", + "Scope": "None", "Deprecated": "2010-03-11", "Comments": [ "see emx, rmq" @@ -60441,6 +66213,7 @@ "Romanian Sign Language" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -60451,6 +66224,7 @@ "Domari" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -60461,6 +66235,7 @@ "Tavringer Romani" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -60471,6 +66246,7 @@ "Romanova" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -60481,6 +66257,7 @@ "Welsh Romani" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "rom", "Comments": [], "Prefix": [] @@ -60492,6 +66269,7 @@ "Romam" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -60502,6 +66280,7 @@ "Vlax Romani" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "rom", "Comments": [], "Prefix": [] @@ -60513,6 +66292,7 @@ "Marma" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -60523,6 +66303,7 @@ "Runa" ], "Added": "2009-07-29", + "Scope": "None", "Deprecated": "2016-05-30", "Comments": [], "Prefix": [] @@ -60534,6 +66315,7 @@ "Brunca Sign Language" ], "Added": "2022-02-25", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -60544,6 +66326,7 @@ "Ruund" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -60554,6 +66337,7 @@ "Ronga" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -60564,6 +66348,7 @@ "Ranglong" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -60574,6 +66359,7 @@ "Roon" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -60584,6 +66370,7 @@ "Rongpo" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -60594,6 +66381,7 @@ "Nari Nari" ], "Added": "2012-08-20", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -60604,6 +66392,7 @@ "Rungwa" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -60625,6 +66414,7 @@ "Tae\u0027" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -60635,6 +66425,7 @@ "Cacgia Roglai" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -60645,6 +66436,7 @@ "Rogo" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -60655,6 +66447,7 @@ "Ronji" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -60665,6 +66458,7 @@ "Rombo" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -60675,6 +66469,7 @@ "Northern Roglai" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -60685,6 +66480,7 @@ "Romblomanon" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -60706,6 +66502,7 @@ "Rotokas" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -60716,6 +66513,7 @@ "Kriol" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -60726,6 +66524,7 @@ "Rongga" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -60736,6 +66535,7 @@ "Runga" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -60746,6 +66546,7 @@ "Dela-Oenale" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -60756,6 +66557,7 @@ "Repanbitip" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -60766,6 +66568,7 @@ "Rapting" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -60776,6 +66579,7 @@ "Ririo" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -60786,6 +66590,7 @@ "Moriori" ], "Added": "2024-03-04", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -60796,6 +66601,7 @@ "Waima" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -60806,6 +66612,7 @@ "Arritinngithigh" ], "Added": "2012-08-12", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -60816,6 +66623,7 @@ "Romano-Serbian" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -60826,6 +66634,7 @@ "Rennellese Sign Language" ], "Added": "2009-07-29", + "Scope": "None", "Deprecated": "2017-02-23", "Comments": [], "Prefix": [] @@ -60838,6 +66647,7 @@ "Rusnak" ], "Added": "2022-02-25", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -60848,6 +66658,7 @@ "Russian Sign Language" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -60858,6 +66669,7 @@ "Miriwoong Sign Language" ], "Added": "2016-05-30", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -60868,6 +66680,7 @@ "Rwandan Sign Language" ], "Added": "2022-02-25", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -60878,6 +66691,7 @@ "Rishiwa" ], "Added": "2023-03-17", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -60888,6 +66702,7 @@ "Rungtu Chin" ], "Added": "2012-08-12", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -60898,6 +66713,7 @@ "Ratahan" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -60908,6 +66724,7 @@ "Rotuman" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -60918,6 +66735,7 @@ "Yurats" ], "Added": "2015-02-12", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -60928,6 +66746,7 @@ "Rathawi" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -60938,6 +66757,7 @@ "Gungu" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -60948,6 +66768,7 @@ "Ruuli" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -60958,6 +66779,7 @@ "Rusyn" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -60968,6 +66790,7 @@ "Luguru" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -60978,6 +66801,7 @@ "Roviana" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -60988,6 +66812,7 @@ "Ruga" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -60998,6 +66823,7 @@ "Rufiji" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -61008,6 +66834,7 @@ "Che" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -61018,6 +66845,7 @@ "Istro Romanian" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -61030,6 +66858,7 @@ "Arumanian" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -61040,6 +66869,7 @@ "Megleno Romanian" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -61050,6 +66880,7 @@ "Rutul" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -61060,6 +66891,7 @@ "Lanas Lobu" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -61070,6 +66902,7 @@ "Mala (Nigeria)" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -61080,6 +66913,7 @@ "Ruma" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -61090,6 +66924,7 @@ "Rawo" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -61100,6 +66935,7 @@ "Rwa" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -61110,6 +66946,7 @@ "Ruwila" ], "Added": "2021-02-20", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -61120,6 +66957,7 @@ "Amba (Uganda)" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -61130,6 +66968,7 @@ "Rawa" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -61140,6 +66979,7 @@ "Marwari (India)" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "mwr", "Comments": [], "Prefix": [] @@ -61151,6 +66991,7 @@ "Ngardi" ], "Added": "2013-09-10", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -61162,6 +67003,7 @@ "Garuwali" ], "Added": "2013-09-10", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -61172,6 +67014,7 @@ "Northern Amami-Oshima" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -61182,6 +67025,7 @@ "Yaeyama" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -61192,6 +67036,7 @@ "Central Okinawan" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -61202,6 +67047,7 @@ "R\u0101zi\u1E25\u012B" ], "Added": "2016-05-30", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -61212,6 +67058,7 @@ "Saba" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -61222,6 +67069,7 @@ "Buglere" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -61232,6 +67080,7 @@ "Meskwaki" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -61242,6 +67091,7 @@ "Sandawe" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -61252,6 +67102,7 @@ "Saban\u00EA" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -61262,6 +67113,7 @@ "Safaliba" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -61272,6 +67124,7 @@ "Yakut" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -61293,6 +67146,7 @@ "Sahu" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -61303,6 +67157,7 @@ "Sake" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -61324,6 +67179,7 @@ "Samaritan Aramaic" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -61334,6 +67190,7 @@ "Sause" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -61344,6 +67201,7 @@ "Sanapan\u00E1" ], "Added": "2009-07-29", + "Scope": "None", "Deprecated": "2014-02-28", "Comments": [ "see aqt, spn" @@ -61357,6 +67215,7 @@ "Samburu" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -61367,6 +67226,7 @@ "Saraveca" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -61377,6 +67237,7 @@ "Sasak" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -61387,6 +67248,7 @@ "Santali" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -61397,6 +67259,7 @@ "Saleman" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -61407,6 +67270,7 @@ "Saafi-Saafi" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -61417,6 +67281,7 @@ "Sawi" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -61427,6 +67292,7 @@ "Sa" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -61437,6 +67303,7 @@ "Saya" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -61447,6 +67314,7 @@ "Saurashtra" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -61457,6 +67325,7 @@ "Ngambay" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -61467,6 +67336,7 @@ "Simbo" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -61477,6 +67347,7 @@ "Kele (Papua New Guinea)" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -61487,6 +67358,7 @@ "Southern Samo" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -61497,6 +67369,7 @@ "Saliba" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -61508,6 +67381,7 @@ "Shabo" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -61518,6 +67392,7 @@ "Seget" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -61528,6 +67403,7 @@ "Sori-Harengan" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -61538,6 +67414,7 @@ "Seti" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -61548,6 +67425,7 @@ "Surbakhal" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -61558,6 +67436,7 @@ "Safwa" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -61568,6 +67447,7 @@ "Botolan Sambal" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -61578,6 +67458,7 @@ "Sagala" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -61588,6 +67469,7 @@ "Sindhi Bhil" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -61598,6 +67480,7 @@ "Sab\u00FCm" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -61608,6 +67491,7 @@ "Sangu (Tanzania)" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -61618,6 +67502,7 @@ "Sileibi" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -61628,6 +67513,7 @@ "Sembakung Murut" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -61638,6 +67524,7 @@ "Subiya" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -61648,6 +67535,7 @@ "Kimki" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -61658,6 +67546,7 @@ "Stod Bhoti" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -61668,6 +67557,7 @@ "Sabine" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -61678,6 +67568,7 @@ "Simba" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -61688,6 +67579,7 @@ "Seberuang" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -61698,6 +67590,7 @@ "Soli" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -61708,6 +67601,7 @@ "Sara Kaba" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -61718,6 +67612,7 @@ "Sansu" ], "Added": "2009-07-29", + "Scope": "None", "Deprecated": "2012-08-12", "Comments": [], "Prefix": [], @@ -61730,6 +67625,7 @@ "Chut" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -61740,6 +67636,7 @@ "Dongxiang" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -61750,6 +67647,7 @@ "San Miguel Creole French" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -61760,6 +67658,7 @@ "Sanggau" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -61770,6 +67669,7 @@ "Sakachep" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -61780,6 +67680,7 @@ "Sri Lankan Creole Malay" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -61790,6 +67691,7 @@ "Sadri" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -61800,6 +67702,7 @@ "Shina" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -61810,6 +67713,7 @@ "Sicilian" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -61820,6 +67724,7 @@ "Scots" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -61831,6 +67736,7 @@ "Helambu Sherpa" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -61841,6 +67747,7 @@ "Sa\u0027och" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -61851,6 +67758,7 @@ "North Slavey" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "den", "Comments": [], "Prefix": [] @@ -61862,6 +67770,7 @@ "Southern Katang" ], "Added": "2017-02-23", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -61872,6 +67781,7 @@ "Shumcho" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -61882,6 +67792,7 @@ "Sheni" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -61892,6 +67803,7 @@ "Sha" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -61902,6 +67814,7 @@ "Sicel" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -61912,6 +67825,7 @@ "Toraja-Sa\u0027dan" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -61922,6 +67836,7 @@ "Shabak" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -61932,6 +67847,7 @@ "Sassarese Sardinian" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "sc", "Comments": [], "Prefix": [] @@ -61943,6 +67859,7 @@ "Surubu" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -61953,6 +67870,7 @@ "Sarli" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -61963,6 +67881,7 @@ "Savi" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -61973,6 +67892,7 @@ "Southern Kurdish" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "ku", "Comments": [], "Prefix": [] @@ -61984,6 +67904,7 @@ "Suundi" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -61994,6 +67915,7 @@ "Sos Kundi" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -62004,6 +67926,7 @@ "Saudi Arabian Sign Language" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -62014,6 +67937,7 @@ "Semandang" ], "Added": "2009-07-29", + "Scope": "None", "Deprecated": "2020-03-28", "Comments": [ "see ebc, gef, sdq" @@ -62027,6 +67951,7 @@ "Gallurese Sardinian" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "sc", "Comments": [], "Prefix": [] @@ -62038,6 +67963,7 @@ "Bukar-Sadung Bidayuh" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -62048,6 +67974,7 @@ "Sherdukpen" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -62058,6 +67985,7 @@ "Semandang" ], "Added": "2020-03-28", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -62068,6 +67996,7 @@ "Oraon Sadri" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -62078,6 +68007,7 @@ "Sened" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -62088,6 +68018,7 @@ "Shuadit" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -62098,6 +68029,7 @@ "Sarudu" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -62119,6 +68051,7 @@ "Sibu Melanau" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -62129,6 +68062,7 @@ "Sallands" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -62139,6 +68073,7 @@ "Semai" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -62149,6 +68084,7 @@ "Shempire Senoufo" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -62160,6 +68096,7 @@ "She shashishalhem" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -62170,6 +68107,7 @@ "Sedang" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -62180,6 +68118,7 @@ "Seneca" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -62190,6 +68129,7 @@ "Cebaara Senoufo" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -62200,6 +68140,7 @@ "Segeju" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -62210,6 +68151,7 @@ "Sena" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -62220,6 +68162,7 @@ "Seri" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -62230,6 +68173,7 @@ "Sene" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -62240,6 +68184,7 @@ "Sekani" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -62250,6 +68195,7 @@ "Selkup" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -62271,6 +68217,7 @@ "Nanerig\u00E9 S\u00E9noufo" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -62281,6 +68228,7 @@ "Suarmin" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -62291,6 +68239,7 @@ "S\u00ECc\u00ECt\u00E9 S\u00E9noufo" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -62301,6 +68250,7 @@ "Senara S\u00E9noufo" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -62311,6 +68261,7 @@ "Serrano" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -62321,6 +68272,7 @@ "Koyraboro Senni Songhai" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -62331,6 +68283,7 @@ "Sentani" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -62341,6 +68294,7 @@ "Serui-Laut" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -62351,6 +68305,7 @@ "Nyarafolo Senoufo" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -62361,6 +68316,7 @@ "Sewa Bay" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -62371,6 +68327,7 @@ "Secoya" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -62381,6 +68338,7 @@ "Senthang Chin" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -62392,6 +68350,7 @@ "French Belgian Sign Language" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -62402,6 +68361,7 @@ "Eastern Subanen" ], "Added": "2012-08-12", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -62412,6 +68372,7 @@ "Small Flowery Miao" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "hmn", "Comments": [], "Prefix": [] @@ -62423,6 +68384,7 @@ "South African Sign Language" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -62433,6 +68395,7 @@ "Sehwi" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -62443,6 +68406,7 @@ "Old Irish (to 900)" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -62453,6 +68417,7 @@ "Mag-antsi Ayta" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -62463,6 +68428,7 @@ "Kipsigis" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "kln", "Comments": [], "Prefix": [] @@ -62474,6 +68440,7 @@ "Surigaonon" ], "Added": "2010-03-11", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -62484,6 +68451,7 @@ "Segai" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -62494,6 +68462,7 @@ "Swiss-German Sign Language" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -62504,6 +68473,7 @@ "Shughni" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -62514,6 +68484,7 @@ "Suga" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -62524,6 +68495,7 @@ "Surgujia" ], "Added": "2012-08-12", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -62534,6 +68506,7 @@ "Sangkong" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -62544,6 +68517,7 @@ "Sanglechi-Ishkashimi" ], "Added": "2009-07-29", + "Scope": "None", "Deprecated": "2010-03-11", "Comments": [ "see isk, sgy" @@ -62557,6 +68531,7 @@ "Singa" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -62578,6 +68553,7 @@ "Songa" ], "Added": "2009-07-29", + "Scope": "None", "Deprecated": "2015-02-12", "Comments": [], "Prefix": [] @@ -62589,6 +68565,7 @@ "Singpho" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -62599,6 +68576,7 @@ "Sangisari" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -62609,6 +68587,7 @@ "Samogitian" ], "Added": "2010-07-26", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -62619,6 +68598,7 @@ "Brokpake" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -62629,6 +68609,7 @@ "Salas" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -62639,6 +68620,7 @@ "Sebat Bet Gurage" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -62649,6 +68631,7 @@ "Sierra Leone Sign Language" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -62659,6 +68642,7 @@ "Sanglechi" ], "Added": "2010-03-11", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -62669,6 +68653,7 @@ "Sursurunga" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -62679,6 +68664,7 @@ "Shall-Zwall" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -62689,6 +68675,7 @@ "Ninam" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -62699,6 +68686,7 @@ "Sonde" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -62709,6 +68697,7 @@ "Kundal Shahi" ], "Added": "2010-03-11", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -62719,6 +68708,7 @@ "Sheko" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -62729,6 +68719,7 @@ "Shua" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -62739,6 +68730,7 @@ "Shoshoni" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -62749,6 +68741,7 @@ "Tachelhit" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -62759,6 +68752,7 @@ "Shatt" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -62769,6 +68763,7 @@ "Shilluk" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -62779,6 +68774,7 @@ "Shendu" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -62789,6 +68785,7 @@ "Shahrudi" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -62799,6 +68796,7 @@ "Shan" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -62809,6 +68807,7 @@ "Shanga" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -62819,6 +68818,7 @@ "Shipibo-Conibo" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -62829,6 +68829,7 @@ "Sala" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -62839,6 +68840,7 @@ "Shi" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -62850,6 +68852,7 @@ "Secwepemcts\u00EDn" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -62860,6 +68863,7 @@ "Shasta" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -62870,6 +68874,7 @@ "Chadian Arabic" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "ar", "Comments": [], "Prefix": [] @@ -62881,6 +68886,7 @@ "Shehri" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -62891,6 +68897,7 @@ "Shwai" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -62901,6 +68908,7 @@ "She" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -62911,6 +68919,7 @@ "Tachawit" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -62921,6 +68930,7 @@ "Syenara Senoufo" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -62931,6 +68941,7 @@ "Akkala Sami" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -62941,6 +68952,7 @@ "Sebop" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -62951,6 +68963,7 @@ "Sidamo" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -62961,6 +68974,7 @@ "Simaa" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -62971,6 +68985,7 @@ "Siamou" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -62981,6 +68996,7 @@ "Paasaal" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -62992,6 +69008,7 @@ "S\u00EEsh\u00EB\u00EB" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -63002,6 +69019,7 @@ "Shom Peng" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -63012,6 +69030,7 @@ "Numbami" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -63022,6 +69041,7 @@ "Sikiana" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -63032,6 +69052,7 @@ "Tumulung Sisaala" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -63042,6 +69063,7 @@ "Mende (Papua New Guinea)" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -63063,6 +69085,7 @@ "Sikkimese" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -63073,6 +69096,7 @@ "Sonia" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -63083,6 +69107,7 @@ "Siri" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -63093,6 +69118,7 @@ "Siuslaw" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -63114,6 +69140,7 @@ "Sinagen" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -63124,6 +69151,7 @@ "Sumariup" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -63134,6 +69162,7 @@ "Siwai" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -63144,6 +69173,7 @@ "Sumau" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -63154,6 +69184,7 @@ "Sivandi" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -63164,6 +69195,7 @@ "Siwi" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -63174,6 +69206,7 @@ "Epena" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -63184,6 +69217,7 @@ "Sajau Basap" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -63194,6 +69228,7 @@ "Shaojiang Chinese" ], "Added": "2024-12-12", + "Scope": "None", "MacroLanguage": "zh", "Comments": [], "Prefix": [] @@ -63205,6 +69240,7 @@ "Kildin Sami" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -63215,6 +69251,7 @@ "Pite Sami" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -63225,6 +69262,7 @@ "Assangori" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -63235,6 +69273,7 @@ "Kemi Sami" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -63246,6 +69285,7 @@ "Miji" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -63256,6 +69296,7 @@ "Mapun" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -63266,6 +69307,7 @@ "Sindarin" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -63276,6 +69318,7 @@ "Xibe" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -63286,6 +69329,7 @@ "Surjapuri" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -63296,6 +69340,7 @@ "Siar-Lak" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -63306,6 +69351,7 @@ "Senhaja De Srair" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -63316,6 +69362,7 @@ "Ter Sami" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -63326,6 +69373,7 @@ "Ume Sami" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -63336,6 +69384,7 @@ "Shawnee" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -63346,6 +69395,7 @@ "Skagit" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -63356,6 +69406,7 @@ "Saek" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -63366,6 +69417,7 @@ "Ma Manda" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -63376,6 +69428,7 @@ "Southern Sierra Miwok" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -63386,6 +69439,7 @@ "Seke (Vanuatu)" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -63396,6 +69450,7 @@ "Sakirabi\u00E1" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -63406,6 +69461,7 @@ "Sakalava Malagasy" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "mg", "Comments": [], "Prefix": [] @@ -63417,6 +69473,7 @@ "Sikule" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -63427,6 +69484,7 @@ "Sika" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -63437,6 +69495,7 @@ "Seke (Nepal)" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -63447,6 +69506,7 @@ "Sok" ], "Added": "2009-07-29", + "Scope": "None", "Deprecated": "2017-02-23", "Comments": [], "Prefix": [], @@ -63459,6 +69519,7 @@ "Kutong" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -63469,6 +69530,7 @@ "Kolibugan Subanon" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -63479,6 +69541,7 @@ "Seko Tengah" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -63489,6 +69552,7 @@ "Sekapan" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -63499,6 +69563,7 @@ "Sininkere" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -63510,6 +69575,7 @@ "Seraiki" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "lah", "Comments": [], "Prefix": [] @@ -63521,6 +69587,7 @@ "Maia" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -63531,6 +69598,7 @@ "Sakata" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -63541,6 +69609,7 @@ "Sakao" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -63551,6 +69620,7 @@ "Skou" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -63561,6 +69631,7 @@ "Skepi Creole Dutch" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -63571,6 +69642,7 @@ "Seko Padang" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -63581,6 +69653,7 @@ "Sikaiana" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -63591,6 +69664,7 @@ "Sekar" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -63612,6 +69686,7 @@ "S\u00E1liba" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -63622,6 +69697,7 @@ "Sissala" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -63632,6 +69708,7 @@ "Sholaga" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -63642,6 +69719,7 @@ "Swiss-Italian Sign Language" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -63652,6 +69730,7 @@ "Selungai Murut" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -63662,6 +69741,7 @@ "Southern Puget Sound Salish" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -63672,6 +69752,7 @@ "Lower Silesian" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -63682,6 +69763,7 @@ "Salum\u00E1" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -63692,6 +69774,7 @@ "Salt-Yui" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -63702,6 +69785,7 @@ "Pangutaran Sama" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -63712,6 +69796,7 @@ "Salinan" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -63722,6 +69807,7 @@ "Lamaholot" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -63732,6 +69818,7 @@ "Salchuq" ], "Added": "2009-07-29", + "Scope": "None", "Deprecated": "2023-03-17", "Comments": [], "Prefix": [] @@ -63743,6 +69830,7 @@ "Salar" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -63753,6 +69841,7 @@ "Singapore Sign Language" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -63763,6 +69852,7 @@ "Sila" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -63773,6 +69863,7 @@ "Selaru" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -63783,6 +69874,7 @@ "Sialum" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -63793,6 +69885,7 @@ "Salampasu" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -63803,6 +69896,7 @@ "Selayar" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -63813,6 +69907,7 @@ "Ma\u0027ya" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -63823,6 +69918,7 @@ "Southern Sami" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -63833,6 +69929,7 @@ "Simbari" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -63843,6 +69940,7 @@ "Som" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -63853,6 +69951,7 @@ "Sama" ], "Added": "2009-07-29", + "Scope": "None", "Deprecated": "2022-02-25", "Comments": [], "Prefix": [], @@ -63865,6 +69964,7 @@ "Auwe" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -63875,6 +69975,7 @@ "Simbali" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -63885,6 +69986,7 @@ "Samei" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -63906,6 +70008,7 @@ "Lule Sami" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -63916,6 +70019,7 @@ "Bolinao" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -63926,6 +70030,7 @@ "Central Sama" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -63936,6 +70041,7 @@ "Musasa" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -63946,6 +70052,7 @@ "Inari Sami" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -63956,6 +70063,7 @@ "Samaritan" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -63966,6 +70074,7 @@ "Samo" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -63976,6 +70085,7 @@ "Simeulue" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -63986,6 +70096,7 @@ "Skolt Sami" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -63996,6 +70107,7 @@ "Simte" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -64006,6 +70118,7 @@ "Somray" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -64016,6 +70129,7 @@ "Samvedi" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -64026,6 +70140,7 @@ "Sumbawa" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -64036,6 +70151,7 @@ "Samba" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -64046,6 +70162,7 @@ "Semnani" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -64056,6 +70173,7 @@ "Simeku" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -64066,6 +70184,7 @@ "Sebuyau" ], "Added": "2009-07-29", + "Scope": "None", "Deprecated": "2022-02-25", "Comments": [], "Prefix": [], @@ -64078,6 +70197,7 @@ "Sinaugoro" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -64088,6 +70208,7 @@ "Bau Bidayuh" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -64098,6 +70219,7 @@ "Noon" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -64108,6 +70230,7 @@ "Sanga (Democratic Republic of Congo)" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -64118,6 +70241,7 @@ "Shinabo" ], "Added": "2009-07-29", + "Scope": "None", "Deprecated": "2017-02-23", "Comments": [], "Prefix": [] @@ -64129,6 +70253,7 @@ "Sensi" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -64139,6 +70264,7 @@ "Riverain Sango" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -64149,6 +70275,7 @@ "Soninke" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -64159,6 +70286,7 @@ "Sangil" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -64169,6 +70297,7 @@ "Southern Ma\u0027di" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -64179,6 +70308,7 @@ "Siona" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -64189,6 +70319,7 @@ "Snohomish" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -64199,6 +70330,7 @@ "Siane" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -64209,6 +70341,7 @@ "Sangu (Gabon)" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -64219,6 +70352,7 @@ "Sihan" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -64230,6 +70364,7 @@ "Nahavaq" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -64241,6 +70376,7 @@ "Viid" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -64251,6 +70387,7 @@ "Sa\u0027ban" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -64261,6 +70398,7 @@ "Selee" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -64271,6 +70409,7 @@ "Sam" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -64281,6 +70420,7 @@ "Saniyo-Hiyewe" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -64291,6 +70431,7 @@ "Kou" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -64301,6 +70442,7 @@ "Thai Song" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -64311,6 +70453,7 @@ "Sobei" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -64321,6 +70464,7 @@ "So (Democratic Republic of Congo)" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -64331,6 +70475,7 @@ "Songoora" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -64341,6 +70486,7 @@ "Songomeno" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -64351,6 +70497,7 @@ "Sogdian" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -64361,6 +70508,7 @@ "Aka" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -64371,6 +70519,7 @@ "Sonha" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -64381,6 +70530,7 @@ "Soi" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -64391,6 +70541,7 @@ "Sokoro" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -64401,6 +70552,7 @@ "Solos" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -64422,6 +70574,7 @@ "Songo" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -64432,6 +70585,7 @@ "Songe" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -64442,6 +70596,7 @@ "Kanasi" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -64452,6 +70607,7 @@ "Somrai" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -64462,6 +70618,7 @@ "Seeku" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -64472,6 +70629,7 @@ "Southern Thai" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -64482,6 +70640,7 @@ "Sonsorol" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -64492,6 +70651,7 @@ "Sowanda" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -64502,6 +70662,7 @@ "Swo" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -64512,6 +70673,7 @@ "Miyobe" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -64522,6 +70684,7 @@ "Temi" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -64532,6 +70695,7 @@ "Sepa (Indonesia)" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -64542,6 +70706,7 @@ "Sap\u00E9" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -64552,6 +70717,7 @@ "Saep" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -64562,6 +70728,7 @@ "Sepa (Papua New Guinea)" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -64572,6 +70739,7 @@ "Sian" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -64582,6 +70750,7 @@ "Saponi" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -64592,6 +70761,7 @@ "Sengo" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -64602,6 +70772,7 @@ "Selepet" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -64612,6 +70783,7 @@ "Akukem" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -64622,6 +70794,7 @@ "Sanapan\u00E1" ], "Added": "2014-02-28", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -64632,6 +70805,7 @@ "Spokane" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -64642,6 +70816,7 @@ "Supyire Senoufo" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -64652,6 +70827,7 @@ "Loreto-Ucayali Spanish" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -64662,6 +70838,7 @@ "Saparua" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -64672,6 +70849,7 @@ "Saposa" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -64682,6 +70860,7 @@ "Spiti Bhoti" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -64692,6 +70871,7 @@ "Sapuan" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -64703,6 +70883,7 @@ "Kosli" ], "Added": "2012-08-12", + "Scope": "None", "MacroLanguage": "or", "Comments": [], "Prefix": [] @@ -64714,6 +70895,7 @@ "South Picene" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -64724,6 +70906,7 @@ "Sabaot" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "kln", "Comments": [], "Prefix": [] @@ -64735,6 +70918,7 @@ "Shama-Sambuga" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -64745,6 +70929,7 @@ "Shau" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -64766,6 +70951,7 @@ "Albanian Sign Language" ], "Added": "2012-08-12", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -64776,6 +70962,7 @@ "Suma" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -64786,6 +70973,7 @@ "Susquehannock" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -64796,6 +70984,7 @@ "Sorkhei" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -64806,6 +70995,7 @@ "Sou" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -64816,6 +71006,7 @@ "Siculo Arabic" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -64826,6 +71017,7 @@ "Sri Lankan Sign Language" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -64836,6 +71028,7 @@ "Soqotri" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -64847,6 +71040,7 @@ "S\u1E35wx\u0331w\u00FA7mesh sn\u00EDchim" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -64857,6 +71051,7 @@ "Kufr Qassem Sign Language (KQSL)" ], "Added": "2021-02-20", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -64867,6 +71062,7 @@ "Saruga" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -64877,6 +71073,7 @@ "Sora" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -64887,6 +71084,7 @@ "Logudorese Sardinian" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "sc", "Comments": [], "Prefix": [] @@ -64898,6 +71096,7 @@ "Sara" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -64908,6 +71107,7 @@ "Nafi" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -64918,6 +71118,7 @@ "Sulod" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -64928,6 +71129,7 @@ "Sarikoli" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -64938,6 +71140,7 @@ "Siriano" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -64948,6 +71151,7 @@ "Serudung Murut" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -64958,6 +71162,7 @@ "Isirawa" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -64968,6 +71173,7 @@ "Saramaccan" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -64978,6 +71184,7 @@ "Sranan Tongo" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -64988,6 +71195,7 @@ "Campidanese Sardinian" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "sc", "Comments": [], "Prefix": [] @@ -64999,6 +71207,7 @@ "Sirion\u00F3" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -65009,6 +71218,7 @@ "Serer" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -65019,6 +71229,7 @@ "Sarsi" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -65029,6 +71240,7 @@ "Sauri" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -65039,6 +71251,7 @@ "Suru\u00ED" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -65049,6 +71262,7 @@ "Southern Sorsoganon" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -65059,6 +71273,7 @@ "Serua" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -65069,6 +71284,7 @@ "Sirmauri" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -65079,6 +71295,7 @@ "Sera" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -65089,6 +71306,7 @@ "Shahmirzadi" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -65110,6 +71328,7 @@ "Southern Sama" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -65120,6 +71339,7 @@ "Suba-Simbiti" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -65130,6 +71350,7 @@ "Siroi" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -65141,6 +71362,7 @@ "Bangingih Sama" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -65151,6 +71373,7 @@ "Thao" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -65161,6 +71384,7 @@ "Seimat" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -65171,6 +71395,7 @@ "Shihhi Arabic" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "ar", "Comments": [], "Prefix": [] @@ -65182,6 +71407,7 @@ "Sansi" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -65192,6 +71418,7 @@ "Sausi" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -65202,6 +71429,7 @@ "Sunam" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -65212,6 +71440,7 @@ "Western Sisaala" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -65222,6 +71451,7 @@ "Semnam" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -65232,6 +71462,7 @@ "Waata" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -65242,6 +71473,7 @@ "Sissano" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -65252,6 +71484,7 @@ "Spanish Sign Language" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -65262,6 +71495,7 @@ "So\u0027a" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -65272,6 +71506,7 @@ "Swiss-French Sign Language" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -65282,6 +71517,7 @@ "S\u00F4" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -65292,6 +71528,7 @@ "Sinasina" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -65302,6 +71539,7 @@ "Susuami" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -65312,6 +71550,7 @@ "Shark Bay" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -65322,6 +71561,7 @@ "Samberigi" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -65332,6 +71572,7 @@ "Saho" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -65342,6 +71583,7 @@ "Sengseng" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -65352,6 +71594,7 @@ "Settla" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -65362,6 +71605,7 @@ "Northern Subanen" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -65372,6 +71616,7 @@ "Sentinel" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -65382,6 +71627,7 @@ "Liana-Seti" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -65392,6 +71638,7 @@ "Seta" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -65402,6 +71649,7 @@ "Trieng" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -65412,6 +71660,7 @@ "Shelta" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -65422,6 +71671,7 @@ "Bulo Stieng" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -65432,6 +71682,7 @@ "Matya Samo" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -65442,6 +71693,7 @@ "Arammba" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -65452,6 +71704,7 @@ "Stellingwerfs" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -65462,6 +71715,7 @@ "Setaman" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -65472,6 +71726,7 @@ "Owa" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -65482,6 +71737,7 @@ "Stoney" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -65492,6 +71748,7 @@ "Southeastern Tepehuan" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -65502,6 +71759,7 @@ "Saterfriesisch" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -65512,6 +71770,7 @@ "Straits Salish" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -65522,6 +71781,7 @@ "Shumashti" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -65532,6 +71792,7 @@ "Budeh Stieng" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -65542,6 +71803,7 @@ "Samtao" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -65552,6 +71814,7 @@ "Silt\u0027e" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -65562,6 +71825,7 @@ "Satawalese" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -65572,6 +71836,7 @@ "Siberian Tatar" ], "Added": "2013-09-10", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -65582,6 +71847,7 @@ "Sulka" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -65592,6 +71858,7 @@ "Suku" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -65602,6 +71869,7 @@ "Western Subanon" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -65612,6 +71880,7 @@ "Suena" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -65622,6 +71891,7 @@ "Suganga" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -65632,6 +71902,7 @@ "Suki" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -65642,6 +71913,7 @@ "Shubi" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [ "see also xsj" ], @@ -65654,6 +71926,7 @@ "Sukuma" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -65664,6 +71937,7 @@ "Surigaonon" ], "Added": "2009-07-29", + "Scope": "None", "Deprecated": "2010-03-11", "Comments": [ "see sgd, tgn" @@ -65677,6 +71951,7 @@ "Sumo-Mayangna" ], "Added": "2009-07-29", + "Scope": "None", "Deprecated": "2010-03-11", "Comments": [ "see ulw, yan" @@ -65690,6 +71965,7 @@ "Bouni" ], "Added": "2021-02-20", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -65701,6 +71977,7 @@ "Suri" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -65711,6 +71988,7 @@ "Mwaghavul" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -65721,6 +71999,7 @@ "Susu" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -65731,6 +72010,7 @@ "Subtiaba" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -65741,6 +72021,7 @@ "Puroik" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -65751,6 +72032,7 @@ "Sumbwa" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -65761,6 +72043,7 @@ "Sumerian" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -65771,6 +72054,7 @@ "Suy\u00E1" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -65781,6 +72065,7 @@ "Sunwar" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -65791,6 +72076,7 @@ "Svan" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -65801,6 +72087,7 @@ "Ulau-Suain" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -65811,6 +72098,7 @@ "Vincentian Creole English" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -65821,6 +72109,7 @@ "Serili" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -65831,6 +72120,7 @@ "Slovakian Sign Language" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -65841,6 +72131,7 @@ "Slavomolisano" ], "Added": "2013-09-10", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -65851,6 +72142,7 @@ "Savara" ], "Added": "2009-07-29", + "Scope": "None", "Deprecated": "2016-05-30", "Comments": [], "Prefix": [] @@ -65862,6 +72154,7 @@ "Savosavo" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -65872,6 +72165,7 @@ "Skalvian" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -65882,6 +72176,7 @@ "Maore Comorian" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -65892,6 +72187,7 @@ "Congo Swahili" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "sw", "Comments": [], "Prefix": [] @@ -65903,6 +72199,7 @@ "Sere" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -65913,6 +72210,7 @@ "Swabian" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -65924,6 +72222,7 @@ "Kiswahili" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "sw", "Comments": [], "Prefix": [] @@ -65935,6 +72234,7 @@ "Sui" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -65945,6 +72245,7 @@ "Sira" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -65955,6 +72256,7 @@ "Malawi Sena" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -65965,6 +72267,7 @@ "Swedish Sign Language" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -65975,6 +72278,7 @@ "Samosa" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -65985,6 +72289,7 @@ "Sawknah" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -65995,6 +72300,7 @@ "Shanenawa" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -66005,6 +72311,7 @@ "Suau" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -66015,6 +72322,7 @@ "Sharwa" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -66025,6 +72333,7 @@ "Saweru" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -66035,6 +72344,7 @@ "Seluwasan" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -66045,6 +72355,7 @@ "Sawila" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -66055,6 +72366,7 @@ "Suwawa" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -66065,6 +72377,7 @@ "Shekhawati" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "mwr", "Comments": [], "Prefix": [] @@ -66076,6 +72389,7 @@ "Sowa" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -66086,6 +72400,7 @@ "Suruah\u00E1" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -66096,6 +72411,7 @@ "Sarua" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -66106,6 +72422,7 @@ "Suba" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -66116,6 +72433,7 @@ "Sicanian" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -66126,6 +72444,7 @@ "Sighu" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -66137,6 +72456,7 @@ "Shixing" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -66147,6 +72467,7 @@ "Southern Kalapuya" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -66157,6 +72478,7 @@ "Selian" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -66167,6 +72489,7 @@ "Samre" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -66177,6 +72500,7 @@ "Sangir" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -66187,6 +72511,7 @@ "Sorothaptic" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -66197,6 +72522,7 @@ "Saaroa" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -66207,6 +72533,7 @@ "Sasaru" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -66217,6 +72544,7 @@ "Upper Saxon" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -66227,6 +72555,7 @@ "Saxwe Gbe" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -66237,6 +72566,7 @@ "Siang" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -66247,6 +72577,7 @@ "Central Subanen" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -66257,6 +72588,7 @@ "Classical Syriac" ], "Added": "2007-04-03", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -66278,6 +72610,7 @@ "Seki" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -66288,6 +72621,7 @@ "Sukur" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -66298,6 +72632,7 @@ "Sylheti" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -66308,6 +72643,7 @@ "Maya Samo" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -66318,6 +72654,7 @@ "Senaya" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -66328,6 +72665,7 @@ "Suoy" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -66349,6 +72687,7 @@ "Sinyar" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -66359,6 +72698,7 @@ "Kagate" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -66369,6 +72709,7 @@ "Samay" ], "Added": "2015-02-12", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -66379,6 +72720,7 @@ "Al-Sayyid Bedouin Sign Language" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -66389,6 +72731,7 @@ "Semelai" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -66399,6 +72742,7 @@ "Ngalum" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -66409,6 +72753,7 @@ "Semaq Beri" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -66419,6 +72764,7 @@ "Seru" ], "Added": "2009-07-29", + "Scope": "None", "Deprecated": "2023-03-17", "Comments": [], "Prefix": [], @@ -66431,6 +72777,7 @@ "Seze" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -66441,6 +72788,7 @@ "Sengele" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -66451,6 +72799,7 @@ "Silesian" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -66461,6 +72810,7 @@ "Sula" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -66471,6 +72821,7 @@ "Suabo" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -66481,6 +72832,7 @@ "Solomon Islands Sign Language" ], "Added": "2017-02-23", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -66491,6 +72843,7 @@ "Isu (Fako Division)" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -66501,6 +72854,7 @@ "Sawai" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -66511,6 +72865,7 @@ "Sakizaya" ], "Added": "2019-04-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -66521,6 +72876,7 @@ "Lower Tanana" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -66531,6 +72887,7 @@ "Tabassaran" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -66541,6 +72898,7 @@ "Lowland Tarahumara" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -66551,6 +72909,7 @@ "Tause" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -66561,6 +72920,7 @@ "Tariana" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -66571,6 +72931,7 @@ "Tapirap\u00E9" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -66581,6 +72942,7 @@ "Tagoi" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -66602,6 +72964,7 @@ "Eastern Tamang" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -66612,6 +72975,7 @@ "Tala" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -66622,6 +72986,7 @@ "Tal" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -66632,6 +72997,7 @@ "Tangale" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -66642,6 +73008,7 @@ "Yami" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -66652,6 +73019,7 @@ "Taabwa" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -66662,6 +73030,7 @@ "Tamasheq" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "tmh", "Comments": [], "Prefix": [] @@ -66673,6 +73042,7 @@ "Central Tarahumara" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -66683,6 +73053,7 @@ "Tay Boi" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -66693,6 +73064,7 @@ "Upper Tanana" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -66703,6 +73075,7 @@ "Tatuyo" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -66713,6 +73086,7 @@ "Tai" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -66723,6 +73097,7 @@ "Tamki" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -66733,6 +73108,7 @@ "Atayal" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -66743,6 +73119,7 @@ "Tocho" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -66753,6 +73130,7 @@ "Aikan\u00E3" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -66763,6 +73141,7 @@ "Tapeba" ], "Added": "2009-07-29", + "Scope": "None", "Deprecated": "2020-03-28", "Comments": [], "Prefix": [] @@ -66774,6 +73153,7 @@ "Takia" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -66784,6 +73164,7 @@ "Kaki Ae" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -66794,6 +73175,7 @@ "Tanimbili" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -66804,6 +73186,7 @@ "Mandara" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -66814,6 +73197,7 @@ "North Tairora" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -66825,6 +73209,7 @@ "Thurawal" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -66835,6 +73220,7 @@ "Gaam" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -66845,6 +73231,7 @@ "Tiang" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -66855,6 +73242,7 @@ "Calamian Tagbanwa" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -66865,6 +73253,7 @@ "Tboli" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -66875,6 +73264,7 @@ "Tagbu" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -66885,6 +73275,7 @@ "Barro Negro Tunebo" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -66895,6 +73286,7 @@ "Tawala" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -66906,6 +73298,7 @@ "Diebroud" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -66927,6 +73320,7 @@ "Tumtum" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -66937,6 +73331,7 @@ "Tanguat" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -66947,6 +73342,7 @@ "Tembo (Kitembo)" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -66957,6 +73353,7 @@ "Tubar" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -66967,6 +73364,7 @@ "Tobo" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -66977,6 +73375,7 @@ "Tagbanwa" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -66987,6 +73386,7 @@ "Kapin" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -66997,6 +73397,7 @@ "Tabaru" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -67007,6 +73408,7 @@ "Ditammari" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -67017,6 +73419,7 @@ "Ticuna" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -67027,6 +73430,7 @@ "Tanacross" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -67037,6 +73441,7 @@ "Datooga" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -67047,6 +73452,7 @@ "Tafi" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -67057,6 +73463,7 @@ "Southern Tutchone" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -67068,6 +73475,7 @@ "Malinaltepec Tlapanec" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -67078,6 +73486,7 @@ "Tamagario" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -67088,6 +73497,7 @@ "Turks And Caicos Creole English" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -67098,6 +73508,7 @@ "W\u00E1ra" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -67108,6 +73519,7 @@ "Tchitchege" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -67118,6 +73530,7 @@ "Taman (Myanmar)" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -67128,6 +73541,7 @@ "Tanahmerah" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -67138,6 +73552,7 @@ "Tichurong" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -67148,6 +73563,7 @@ "Taungyo" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -67158,6 +73574,7 @@ "Tawr Chin" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -67168,6 +73585,7 @@ "Kaiy" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -67179,6 +73597,7 @@ "Yumplatok" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -67189,6 +73608,7 @@ "T\u0027en" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -67199,6 +73619,7 @@ "Southeastern Tarahumara" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -67209,6 +73630,7 @@ "Tecpatl\u00E1n Totonac" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -67219,6 +73641,7 @@ "Toda" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -67229,6 +73652,7 @@ "Tulu" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -67239,6 +73663,7 @@ "Thado Chin" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -67249,6 +73674,7 @@ "Tagdal" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -67259,6 +73685,7 @@ "Panchpargania" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -67269,6 +73696,7 @@ "Ember\u00E1-Tad\u00F3" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -67279,6 +73707,7 @@ "Tai N\u00FCa" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -67289,6 +73718,7 @@ "Tiranige Diga Dogon" ], "Added": "2010-03-11", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -67299,6 +73729,7 @@ "Talieng" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -67309,6 +73740,7 @@ "Western Tamang" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -67319,6 +73751,7 @@ "Thulung" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -67329,6 +73762,7 @@ "Tomadino" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -67339,6 +73773,7 @@ "Tajio" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -67349,6 +73784,7 @@ "Tambas" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -67359,6 +73795,7 @@ "Sur" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -67369,6 +73806,7 @@ "Taruma" ], "Added": "2016-05-30", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -67379,6 +73817,7 @@ "Tondano" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -67389,6 +73828,7 @@ "Teme" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -67399,6 +73839,7 @@ "Tita" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -67409,6 +73850,7 @@ "Todrah" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -67419,6 +73861,7 @@ "Doutai" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -67429,6 +73872,7 @@ "Tetun Dili" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -67439,6 +73883,7 @@ "Tempasuk Dusun" ], "Added": "2009-07-29", + "Scope": "None", "Deprecated": "2016-05-30", "Comments": [], "Prefix": [], @@ -67451,6 +73896,7 @@ "Toro" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -67461,6 +73907,7 @@ "Tandroy-Mahafaly Malagasy" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "mg", "Comments": [], "Prefix": [] @@ -67472,6 +73919,7 @@ "Tadyawan" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -67482,6 +73930,7 @@ "Temiar" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -67492,6 +73941,7 @@ "Tetete" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -67502,6 +73952,7 @@ "Terik" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "kln", "Comments": [], "Prefix": [] @@ -67513,6 +73964,7 @@ "Tepo Krumen" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -67523,6 +73975,7 @@ "Huehuetla Tepehua" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -67533,6 +73986,7 @@ "Teressa" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -67543,6 +73997,7 @@ "Teke-Tege" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -67553,6 +74008,7 @@ "Tehuelche" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -67563,6 +74019,7 @@ "Torricelli" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -67573,6 +74030,7 @@ "Ibali Teke" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -67584,6 +74042,7 @@ ], "Added": "2005-10-16", "SuppressScript": "Latn", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -67594,6 +74053,7 @@ "Tama (Colombia)" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -67604,6 +74064,7 @@ "Teso" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -67614,6 +74075,7 @@ "Tepecano" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -67624,6 +74086,7 @@ "Temein" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -67634,6 +74097,7 @@ "Tereno" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -67644,6 +74108,7 @@ "Tengger" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -67654,6 +74119,7 @@ "Tetum" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -67664,6 +74130,7 @@ "Soo" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -67674,6 +74141,7 @@ "Teor" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -67684,6 +74152,7 @@ "Tewa (USA)" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -67694,6 +74163,7 @@ "Tennet" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -67704,6 +74174,7 @@ "Tulishi" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -67714,6 +74185,7 @@ "Tetserret" ], "Added": "2018-03-08", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -67724,6 +74196,7 @@ "Tofin Gbe" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -67734,6 +74207,7 @@ "Tanaina" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -67744,6 +74218,7 @@ "Tefaro" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -67754,6 +74229,7 @@ "Teribe" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -67764,6 +74240,7 @@ "Ternate" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -67774,6 +74251,7 @@ "Sagalla" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -67784,6 +74262,7 @@ "Tobilung" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -67794,6 +74273,7 @@ "Tigak" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -67804,6 +74284,7 @@ "Ciwogai" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -67814,6 +74295,7 @@ "Eastern Gorkha Tamang" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -67824,6 +74306,7 @@ "Chalikha" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -67834,6 +74317,7 @@ "Tangga" ], "Added": "2009-07-29", + "Scope": "None", "Deprecated": "2013-09-10", "Comments": [ "see bjp, hrc, hrw" @@ -67847,6 +74331,7 @@ "Tobagonian Creole English" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -67857,6 +74342,7 @@ "Lawunuia" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -67867,6 +74353,7 @@ "Tagin" ], "Added": "2012-08-12", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -67877,6 +74364,7 @@ "Tandaganon" ], "Added": "2010-03-11", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -67887,6 +74375,7 @@ "Sudest" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -67897,6 +74386,7 @@ "Tangoa" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -67907,6 +74397,7 @@ "Tring" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -67917,6 +74408,7 @@ "Tareng" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -67927,6 +74419,7 @@ "Nume" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -67937,6 +74430,7 @@ "Central Tagbanwa" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -67947,6 +74441,7 @@ "Tanggu" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -67957,6 +74452,7 @@ "Tingui-Boto" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -67967,6 +74463,7 @@ "Tagwana Senoufo" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -67977,6 +74474,7 @@ "Tagish" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -67987,6 +74485,7 @@ "Togoyo" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -67997,6 +74496,7 @@ "Tagalaka" ], "Added": "2012-08-12", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -68007,6 +74507,7 @@ "Tai Hang Tong" ], "Added": "2009-07-29", + "Scope": "None", "Deprecated": "2016-05-30", "Comments": [], "Prefix": [], @@ -68020,6 +74521,7 @@ "Thayore" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -68030,6 +74532,7 @@ "Chitwania Tharu" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -68040,6 +74543,7 @@ "Thangmi" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -68050,6 +74554,7 @@ "Northern Tarahumara" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -68060,6 +74565,7 @@ "Tai Long" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -68071,6 +74577,7 @@ "Kitharaka" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -68081,6 +74588,7 @@ "Dangaura Tharu" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -68091,6 +74599,7 @@ "Aheu" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -68101,6 +74610,7 @@ "Thachanadan" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -68113,6 +74623,7 @@ "Thompson River Salish" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -68123,6 +74634,7 @@ "Kochila Tharu" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -68133,6 +74645,7 @@ "Rana Tharu" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -68143,6 +74656,7 @@ "Thakali" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -68154,6 +74668,7 @@ "T\u0101\u0142t\u0101n" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -68164,6 +74679,7 @@ "Thuri" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -68174,6 +74690,7 @@ "Tahaggart Tamahaq" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "tmh", "Comments": [], "Prefix": [] @@ -68185,6 +74702,7 @@ "Thudam" ], "Added": "2009-07-29", + "Scope": "None", "Deprecated": "2020-06-08", "Comments": [], "Prefix": [], @@ -68197,6 +74715,7 @@ "The" ], "Added": "2009-07-29", + "Scope": "None", "Deprecated": "2015-02-12", "Comments": [], "Prefix": [], @@ -68209,6 +74728,7 @@ "Tha" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -68219,6 +74739,7 @@ "Tayart Tamajeq" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "tmh", "Comments": [], "Prefix": [] @@ -68230,6 +74751,7 @@ "Tidikelt Tamazight" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -68240,6 +74762,7 @@ "Tira" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -68250,6 +74773,7 @@ "Tidong" ], "Added": "2009-07-29", + "Scope": "None", "Deprecated": "2016-05-30", "Comments": [ "see itd, ntd" @@ -68263,6 +74787,7 @@ "Tingal" ], "Added": "2009-07-29", + "Scope": "None", "Deprecated": "2011-08-16", "Comments": [], "Prefix": [], @@ -68275,6 +74800,7 @@ "Tifal" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -68285,6 +74811,7 @@ "Tigre" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -68295,6 +74822,7 @@ "Timugon Murut" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -68305,6 +74833,7 @@ "Tiene" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -68315,6 +74844,7 @@ "Tilung" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -68325,6 +74855,7 @@ "Tikar" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -68335,6 +74866,7 @@ "Tillamook" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -68345,6 +74877,7 @@ "Timbe" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -68355,6 +74888,7 @@ "Tindi" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -68365,6 +74899,7 @@ "Teop" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -68375,6 +74910,7 @@ "Trimuris" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -68385,6 +74921,7 @@ "Ti\u00E9fo" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -68395,6 +74932,7 @@ "Masadiit Itneg" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -68405,6 +74943,7 @@ "Tinigua" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -68415,6 +74954,7 @@ "Adasen" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -68425,6 +74965,7 @@ "Tiv" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -68435,6 +74976,7 @@ "Tiwi" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -68445,6 +74987,7 @@ "Southern Tiwa" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -68455,6 +74998,7 @@ "Tiruray" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -68465,6 +75009,7 @@ "Tai Hongjin" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -68475,6 +75020,7 @@ "Tajuasohn" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -68485,6 +75031,7 @@ "Tunjung" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -68495,6 +75042,7 @@ "Northern Tujia" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -68505,6 +75053,7 @@ "Tjungundji" ], "Added": "2019-04-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -68515,6 +75064,7 @@ "Tai Laing" ], "Added": "2012-08-12", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -68525,6 +75075,7 @@ "Timucua" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -68535,6 +75086,7 @@ "Tonjon" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -68545,6 +75097,7 @@ "Temacine Tamazight" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -68555,6 +75108,7 @@ "Tjupany" ], "Added": "2019-04-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -68565,6 +75119,7 @@ "Southern Tujia" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -68575,6 +75130,7 @@ "Tjurruru" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -68585,6 +75141,7 @@ "Djabwurrung" ], "Added": "2013-09-10", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -68595,6 +75152,7 @@ "Truk\u00E1" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -68605,6 +75163,7 @@ "Buksa" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -68615,6 +75174,7 @@ "Tukudede" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -68625,6 +75185,7 @@ "Takwane" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -68635,6 +75196,7 @@ "Tukumanf\u00E9d" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -68645,6 +75207,7 @@ "Tesaka Malagasy" ], "Added": "2011-08-16", + "Scope": "None", "MacroLanguage": "mg", "Comments": [], "Prefix": [] @@ -68656,6 +75219,7 @@ "Takpa" ], "Added": "2009-07-29", + "Scope": "None", "Deprecated": "2011-08-16", "Comments": [], "Prefix": [], @@ -68669,6 +75233,7 @@ ], "Added": "2005-10-16", "SuppressScript": "Latn", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -68679,6 +75244,7 @@ "Takelma" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -68689,6 +75255,7 @@ "Toku-No-Shima" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -68699,6 +75266,7 @@ "Tikopia" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -68709,6 +75277,7 @@ "Tee" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -68719,6 +75288,7 @@ "Tsakhur" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -68729,6 +75299,7 @@ "Takestani" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -68739,6 +75310,7 @@ "Kathoriya Tharu" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -68749,6 +75321,7 @@ "Upper Necaxa Totonac" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -68759,6 +75332,7 @@ "Mur Pano" ], "Added": "2014-02-28", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -68769,6 +75343,7 @@ "Teanu" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -68779,6 +75354,7 @@ "Tangko" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -68789,6 +75365,7 @@ "Takua" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -68799,6 +75376,7 @@ "Southwestern Tepehuan" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -68809,6 +75387,7 @@ "Tobelo" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -68819,6 +75398,7 @@ "Yecuatla Totonac" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -68829,6 +75409,7 @@ "Talaud" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -68839,6 +75420,7 @@ "Telefol" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -68849,6 +75431,7 @@ "Tofanma" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -68860,6 +75443,7 @@ "tlhIngan Hol" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -68870,6 +75454,7 @@ "Tlingit" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -68880,6 +75465,7 @@ "Talinga-Bwisi" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -68890,6 +75476,7 @@ "Taloki" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -68900,6 +75487,7 @@ "Tetela" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -68910,6 +75498,7 @@ "Tolomako" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -68920,6 +75509,7 @@ "Talondo\u0027" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -68930,6 +75520,7 @@ "Talodi" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -68940,6 +75531,7 @@ "Filomena Mata-Coahuitl\u00E1n Totonac" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -68950,6 +75542,7 @@ "Tai Loi" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -68960,6 +75553,7 @@ "Talise" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -68970,6 +75564,7 @@ "Tambotalo" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -68981,6 +75576,7 @@ "Teluti" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -68991,6 +75587,7 @@ "Tulehu" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -69001,6 +75598,7 @@ "Taliabu" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -69011,6 +75609,7 @@ "South Wemale" ], "Added": "2009-07-29", + "Scope": "None", "Deprecated": "2012-08-12", "Comments": [], "Prefix": [], @@ -69023,6 +75622,7 @@ "Khehek" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -69033,6 +75633,7 @@ "Talysh" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -69043,6 +75644,7 @@ "Tama (Chad)" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -69054,6 +75656,7 @@ "Avava" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -69064,6 +75667,7 @@ "Tumak" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -69074,6 +75678,7 @@ "Haruai" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -69084,6 +75689,7 @@ "Trememb\u00E9" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -69094,6 +75700,7 @@ "Toba-Maskoy" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -69104,6 +75711,7 @@ "Ternate\u00F1o" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -69126,6 +75734,7 @@ "Tutuba" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -69136,6 +75745,7 @@ "Samarokena" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -69146,6 +75756,7 @@ "Northwestern Tamang" ], "Added": "2009-07-29", + "Scope": "None", "Deprecated": "2023-03-17", "Comments": [], "Prefix": [], @@ -69158,6 +75769,7 @@ "Tamnim Citak" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -69168,6 +75780,7 @@ "Tai Thanh" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -69178,6 +75791,7 @@ "Taman (Indonesia)" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -69188,6 +75802,7 @@ "Temoq" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -69198,6 +75813,7 @@ "Tai M\u00E8ne" ], "Added": "2009-07-29", + "Scope": "None", "Deprecated": "2016-05-30", "Comments": [], "Prefix": [], @@ -69210,6 +75826,7 @@ "Tumleo" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -69220,6 +75837,7 @@ "Jewish Babylonian Aramaic (ca. 200-1200 CE)" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -69230,6 +75848,7 @@ "Tima" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -69240,6 +75859,7 @@ "Tasmate" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -69250,6 +75870,7 @@ "Iau" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -69260,6 +75881,7 @@ "Tembo (Motembo)" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -69270,6 +75892,7 @@ "Temuan" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "ms", "Comments": [], "Prefix": [] @@ -69281,6 +75904,7 @@ "Tami" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -69291,6 +75915,7 @@ "Tamanaku" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -69301,6 +75926,7 @@ "Tacana" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -69311,6 +75937,7 @@ "Western Tunebo" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -69321,6 +75948,7 @@ "Tanimuca-Retuar\u00E3" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -69331,6 +75959,7 @@ "Angosturas Tunebo" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -69341,6 +75970,7 @@ "Tinoc Kallahan" ], "Added": "2009-07-29", + "Scope": "None", "Deprecated": "2016-05-30", "Comments": [], "Prefix": [], @@ -69353,6 +75983,7 @@ "Tangshewi" ], "Added": "2009-07-29", + "Scope": "None", "Deprecated": "2010-03-11", "Comments": [], "Prefix": [], @@ -69365,6 +75996,7 @@ "Tobanga" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -69375,6 +76007,7 @@ "Maiani" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -69385,6 +76018,7 @@ "Tandia" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -69395,6 +76029,7 @@ "Kwamera" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -69405,6 +76040,7 @@ "Lenakel" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -69415,6 +76051,7 @@ "Tabla" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -69425,6 +76062,7 @@ "North Tanna" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -69435,6 +76073,7 @@ "Toromono" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -69445,6 +76084,7 @@ "Whitesands" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -69455,6 +76095,7 @@ "Taino" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -69465,6 +76106,7 @@ "M\u00E9nik" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -69475,6 +76117,7 @@ "Tenis" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -69485,6 +76128,7 @@ "Tontemboan" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -69495,6 +76139,7 @@ "Tay Khang" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -69505,6 +76150,7 @@ "Tangchangya" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -69515,6 +76161,7 @@ "Tonsawang" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -69525,6 +76172,7 @@ "Tanema" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -69535,6 +76183,7 @@ "Tongwe" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -69545,6 +76194,7 @@ "Ten\u0027edn" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -69555,6 +76205,7 @@ "Toba" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -69565,6 +76216,7 @@ "Coyutla Totonac" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -69575,6 +76227,7 @@ "Toma" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -69585,6 +76238,7 @@ "Tomedes" ], "Added": "2009-07-29", + "Scope": "None", "Deprecated": "2016-05-30", "Comments": [], "Prefix": [] @@ -69596,6 +76250,7 @@ "Gizrra" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -69606,6 +76261,7 @@ "Tonga (Nyasa)" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -69616,6 +76272,7 @@ "Gitonga" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -69626,6 +76283,7 @@ "Tonga (Zambia)" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -69636,6 +76294,7 @@ "Tojolabal" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -69646,6 +76305,7 @@ "Toki Pona" ], "Added": "2022-02-25", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -69656,6 +76316,7 @@ "Tolowa" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -69666,6 +76327,7 @@ "Tombulu" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -69676,6 +76338,7 @@ "Xicotepec De Ju\u00E1rez Totonac" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -69686,6 +76349,7 @@ "Papantla Totonac" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -69696,6 +76360,7 @@ "Toposa" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -69706,6 +76371,7 @@ "Togbo-Vara Banda" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -69716,6 +76382,7 @@ "Highland Totonac" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -69726,6 +76393,7 @@ "Tho" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -69736,6 +76404,7 @@ "Upper Taromi" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -69746,6 +76415,7 @@ "Jemez" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -69756,6 +76426,7 @@ "Tobian" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -69766,6 +76437,7 @@ "Topoiyo" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -69776,6 +76448,7 @@ "To" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -69786,6 +76459,7 @@ "Taupota" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -69797,6 +76471,7 @@ "Azoy\u00FA Tlapanec" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -69807,6 +76482,7 @@ "Tippera" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -69817,6 +76493,7 @@ "Tarpia" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -69827,6 +76504,7 @@ "Kula" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -69838,6 +76516,7 @@ ], "Added": "2005-10-16", "SuppressScript": "Latn", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -69848,6 +76527,7 @@ "Tapiet\u00E9" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -69858,6 +76538,7 @@ "Tupinikin" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -69869,6 +76550,7 @@ "Tlacoapa Tlapanec" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -69879,6 +76561,7 @@ "Tampulma" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -69889,6 +76572,7 @@ "Tupinamb\u00E1" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -69899,6 +76583,7 @@ "Tai Pao" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -69909,6 +76594,7 @@ "Pisaflores Tepehua" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -69919,6 +76605,7 @@ "Tukpa" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -69929,6 +76616,7 @@ "Tupar\u00ED" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -69939,6 +76627,7 @@ "Tlachichilco Tepehua" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -69949,6 +76638,7 @@ "Tampuan" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -69959,6 +76649,7 @@ "Tanapag" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -69969,6 +76660,7 @@ "Tup\u00ED" ], "Added": "2009-07-29", + "Scope": "None", "Deprecated": "2023-03-17", "Comments": [], "Prefix": [], @@ -69982,6 +76674,7 @@ "Acatepec Tlapanec" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -69992,6 +76685,7 @@ "Trumai" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -70002,6 +76696,7 @@ "Tinputz" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -70012,6 +76707,7 @@ "Temb\u00E9" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -70022,6 +76718,7 @@ "Lehali" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -70032,6 +76729,7 @@ "Turumsa" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -70042,6 +76740,7 @@ "Tenino" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -70052,6 +76751,7 @@ "Toaripi" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -70062,6 +76762,7 @@ "Tomoip" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -70072,6 +76773,7 @@ "Tunni" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -70082,6 +76784,7 @@ "Torona" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -70092,6 +76795,7 @@ "Western Totonac" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -70102,6 +76806,7 @@ "Touo" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -70112,6 +76817,7 @@ "Tonkawa" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -70122,6 +76828,7 @@ "Tirahi" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -70132,6 +76839,7 @@ "Terebu" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -70142,6 +76850,7 @@ "Copala Triqui" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -70152,6 +76861,7 @@ "Turi" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -70162,6 +76872,7 @@ "East Tarangan" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -70172,6 +76883,7 @@ "Trinidadian Creole English" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -70182,6 +76894,7 @@ "Lish\u00E1n Did\u00E1n" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -70192,6 +76905,7 @@ "Turaka" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -70202,6 +76916,7 @@ "Tri\u00F3" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -70212,6 +76927,7 @@ "Toram" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -70233,6 +76949,7 @@ "Traveller Scottish" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -70243,6 +76960,7 @@ "Tregami" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -70253,6 +76971,7 @@ "Trinitario" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -70263,6 +76982,7 @@ "Tarao Naga" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -70273,6 +76993,7 @@ "Kok Borok" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -70283,6 +77004,7 @@ "San Mart\u00EDn Itunyoso Triqui" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -70293,6 +77015,7 @@ "Taushiro" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -70303,6 +77026,7 @@ "Chicahuaxtla Triqui" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -70313,6 +77037,7 @@ "Tunggare" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -70324,6 +77049,7 @@ "Surayt" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -70336,6 +77062,7 @@ "Taroko" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -70346,6 +77073,7 @@ "Torwali" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -70356,6 +77084,7 @@ "Tringgus-Sembaan Bidayuh" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -70366,6 +77095,7 @@ "Turung" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -70376,6 +77106,7 @@ "Tor\u00E1" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -70386,6 +77117,7 @@ "Tsaangi" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -70396,6 +77128,7 @@ "Tsamai" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -70406,6 +77139,7 @@ "Tswa" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -70416,6 +77150,7 @@ "Tsakonian" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -70426,6 +77161,7 @@ "Tunisian Sign Language" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -70436,6 +77172,7 @@ "Southwestern Tamang" ], "Added": "2009-07-29", + "Scope": "None", "Deprecated": "2015-02-12", "Comments": [], "Prefix": [], @@ -70448,6 +77185,7 @@ "Tausug" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -70458,6 +77196,7 @@ "Tsuvan" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -70468,6 +77207,7 @@ "Tsimshian" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -70478,6 +77218,7 @@ "Tshangla" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -70488,6 +77229,7 @@ "Tseku" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -70498,6 +77240,7 @@ "Ts\u0027\u00FCn-Lao" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -70509,6 +77252,7 @@ "T\u00FCrk \u0130\u015Faret Dili" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -70519,6 +77263,7 @@ "Northern Toussian" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -70529,6 +77274,7 @@ "Thai Sign Language" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -70539,6 +77285,7 @@ "Akei" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -70549,6 +77296,7 @@ "Taiwan Sign Language" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -70559,6 +77307,7 @@ "Tondi Songway Kiini" ], "Added": "2011-08-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -70569,6 +77318,7 @@ "Tsou" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -70579,6 +77329,7 @@ "Tsogo" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -70589,6 +77340,7 @@ "Tsishingini" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -70599,6 +77351,7 @@ "Mubami" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -70609,6 +77362,7 @@ "Tebul Sign Language" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -70619,6 +77373,7 @@ "Purepecha" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -70629,6 +77384,7 @@ "Tutelo" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -70639,6 +77395,7 @@ "Gaa" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -70649,6 +77406,7 @@ "Tektiteko" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -70659,6 +77417,7 @@ "Tauade" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -70669,6 +77428,7 @@ "Bwanabwana" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -70679,6 +77439,7 @@ "Tuotomb" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -70689,6 +77450,7 @@ "Tutong" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -70699,6 +77461,7 @@ "Upper Ta\u0027oih" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -70709,6 +77472,7 @@ "Tobati" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -70719,6 +77483,7 @@ "Tooro" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -70729,6 +77494,7 @@ "Totoro" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -70739,6 +77505,7 @@ "Totela" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -70749,6 +77516,7 @@ "Northern Tutchone" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -70759,6 +77527,7 @@ "Towei" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -70769,6 +77538,7 @@ "Lower Ta\u0027oih" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -70779,6 +77549,7 @@ "Tombelala" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -70789,6 +77560,7 @@ "Tawallammat Tamajaq" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "tmh", "Comments": [], "Prefix": [] @@ -70800,6 +77572,7 @@ "Tera" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -70810,6 +77583,7 @@ "Northeastern Thai" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -70820,6 +77594,7 @@ "Muslim Tat" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -70830,6 +77605,7 @@ "Torau" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -70840,6 +77616,7 @@ "Titan" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -70850,6 +77627,7 @@ "Long Wat" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -70860,6 +77638,7 @@ "Sikaritai" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -70870,6 +77649,7 @@ "Tsum" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -70880,6 +77660,7 @@ "Wiarumus" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -70890,6 +77671,7 @@ "T\u00FCbatulabal" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -70900,6 +77682,7 @@ "Mutu" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -70910,6 +77693,7 @@ "Tux\u00E1" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -70920,6 +77704,7 @@ "Tuyuca" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -70930,6 +77715,7 @@ "Central Tunebo" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -70940,6 +77726,7 @@ "Tunia" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -70950,6 +77737,7 @@ "Taulil" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -70960,6 +77748,7 @@ "Tupuri" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -70970,6 +77759,7 @@ "Tugutil" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -70980,6 +77770,7 @@ "Tula" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -70990,6 +77781,7 @@ "Tumbuka" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -71000,6 +77792,7 @@ "Tunica" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -71010,6 +77803,7 @@ "Tucano" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -71031,6 +77825,7 @@ "Tedaga" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -71041,6 +77836,7 @@ "Tuscarora" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -71062,6 +77858,7 @@ "Tututni" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -71072,6 +77869,7 @@ "Turkana" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -71093,6 +77891,7 @@ "Tuxin\u00E1wa" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -71103,6 +77902,7 @@ "Tugen" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "kln", "Comments": [], "Prefix": [] @@ -71114,6 +77914,7 @@ "Turka" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -71124,6 +77925,7 @@ "Vaghua" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -71134,6 +77936,7 @@ "Tsuvadi" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -71144,6 +77947,7 @@ "Te\u0027un" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -71154,6 +77958,7 @@ "Tulai" ], "Added": "2023-03-17", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -71164,6 +77969,7 @@ "Southeast Ambrym" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -71175,6 +77981,7 @@ ], "Added": "2005-10-16", "SuppressScript": "Latn", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -71185,6 +77992,7 @@ "Tela-Masbuar" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -71195,6 +78003,7 @@ "Tavoyan" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -71205,6 +78014,7 @@ "Tidore" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -71215,6 +78025,7 @@ "Taveta" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -71225,6 +78036,7 @@ "Tutsa Naga" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -71235,6 +78047,7 @@ "Tunen" ], "Added": "2012-08-12", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -71245,6 +78058,7 @@ "Sedoa" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -71255,6 +78069,7 @@ "Taivoan" ], "Added": "2019-04-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -71265,6 +78080,7 @@ "Timor Pidgin" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -71275,6 +78091,7 @@ "Twana" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -71285,6 +78102,7 @@ "Western Tawbuid" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -71295,6 +78113,7 @@ "Teshenawa" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -71305,6 +78124,7 @@ "Twents" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -71315,6 +78135,7 @@ "Tewa (Indonesia)" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -71325,6 +78146,7 @@ "Northern Tiwa" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -71335,6 +78157,7 @@ "Tereweng" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -71345,6 +78168,7 @@ "Tai D\u00F3n" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -71355,6 +78179,7 @@ "Tawara" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -71365,6 +78190,7 @@ "Tawang Monpa" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -71375,6 +78201,7 @@ "Twendi" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -71385,6 +78212,7 @@ "Tswapong" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -71395,6 +78223,7 @@ "Ere" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -71405,6 +78234,7 @@ "Tasawaq" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -71415,6 +78245,7 @@ "Southwestern Tarahumara" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -71425,6 +78256,7 @@ "Turiw\u00E1ra" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -71435,6 +78267,7 @@ "Termanu" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -71445,6 +78278,7 @@ "Tuwari" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -71455,6 +78289,7 @@ "Tewe" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -71465,6 +78300,7 @@ "Tawoyan" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -71475,6 +78311,7 @@ "Tombonuo" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -71485,6 +78322,7 @@ "Tokharian B" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -71495,6 +78333,7 @@ "Tsetsaut" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -71505,6 +78344,7 @@ "Totoli" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -71515,6 +78355,7 @@ "Tangut" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -71525,6 +78366,7 @@ "Thracian" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -71535,6 +78377,7 @@ "Ikpeng" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -71545,6 +78388,7 @@ "Tarjumo" ], "Added": "2015-02-12", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -71555,6 +78399,7 @@ "Tomini" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -71565,6 +78410,7 @@ "West Tarangan" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -71575,6 +78421,7 @@ "Toto" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -71585,6 +78432,7 @@ "Tii" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -71595,6 +78443,7 @@ "Tartessian" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -71605,6 +78454,7 @@ "Tonsea" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -71615,6 +78465,7 @@ "Citak" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -71625,6 +78476,7 @@ "Kayap\u00F3" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -71635,6 +78487,7 @@ "Tatana" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -71645,6 +78498,7 @@ "Tanosy Malagasy" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "mg", "Comments": [], "Prefix": [] @@ -71656,6 +78510,7 @@ "Tauya" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -71666,6 +78521,7 @@ "Kyanga" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -71676,6 +78532,7 @@ "O\u0027du" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -71686,6 +78543,7 @@ "Teke-Tsaayi" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -71697,6 +78555,7 @@ "Tai Yo" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -71707,6 +78566,7 @@ "Thu Lao" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -71717,6 +78577,7 @@ "Kombai" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -71727,6 +78588,7 @@ "Thaypan" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -71737,6 +78599,7 @@ "Tai Daeng" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -71747,6 +78610,7 @@ "T\u00E0y Sa Pa" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -71757,6 +78621,7 @@ "T\u00E0y Tac" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -71767,6 +78632,7 @@ "Kua" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -71777,6 +78643,7 @@ "Tuvinian" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -71787,6 +78654,7 @@ "Teke-Tyee" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -71797,6 +78665,7 @@ "Tiyaa" ], "Added": "2021-02-20", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -71807,6 +78676,7 @@ "T\u00E0y" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -71817,6 +78687,7 @@ "Tanzanian Sign Language" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -71827,6 +78698,7 @@ "Tzeltal" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -71837,6 +78709,7 @@ "Tz\u0027utujil" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -71847,6 +78720,7 @@ "Talossan" ], "Added": "2013-09-10", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -71857,6 +78731,7 @@ "Central Atlas Tamazight" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -71867,6 +78742,7 @@ "Tugun" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -71877,6 +78753,7 @@ "Tzotzil" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -71887,6 +78764,7 @@ "Tabriak" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -71897,6 +78775,7 @@ "Uamu\u00E9" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -71907,6 +78786,7 @@ "Kuan" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -71917,6 +78797,7 @@ "Tairuma" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -71927,6 +78808,7 @@ "Ubang" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -71937,6 +78819,7 @@ "Ubi" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -71947,6 +78830,7 @@ "Buhi\u0027non Bikol" ], "Added": "2010-03-11", + "Scope": "None", "MacroLanguage": "bik", "Comments": [], "Prefix": [] @@ -71958,6 +78842,7 @@ "Ubir" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -71968,6 +78853,7 @@ "Umbu-Ungu" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -71978,6 +78864,7 @@ "Ubykh" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -71988,6 +78875,7 @@ "Uda" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -71998,6 +78886,7 @@ "Udihe" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -72008,6 +78897,7 @@ "Muduga" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -72018,6 +78908,7 @@ "Udi" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -72028,6 +78919,7 @@ "Ujir" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -72038,6 +78930,7 @@ "Wuzlam" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -72048,6 +78941,7 @@ "Udmurt" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -72058,6 +78952,7 @@ "Uduk" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -72068,6 +78963,7 @@ "Kioko" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -72078,6 +78974,7 @@ "Ufim" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -72088,6 +78985,7 @@ "Ugaritic" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -72098,6 +78996,7 @@ "Kuku-Ugbanh" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -72108,6 +79007,7 @@ "Ughele" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -72118,6 +79018,7 @@ "Kubachi" ], "Added": "2022-02-25", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -72128,6 +79029,7 @@ "Ugandan Sign Language" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -72138,6 +79040,7 @@ "Ugong" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -72148,6 +79051,7 @@ "Uruguayan Sign Language" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -72158,6 +79062,7 @@ "Uhami" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -72168,6 +79073,7 @@ "Damal" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -72178,6 +79084,7 @@ "Uisai" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -72188,6 +79095,7 @@ "Iyive" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -72198,6 +79106,7 @@ "Tanjijili" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -72208,6 +79117,7 @@ "Kaburi" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -72218,6 +79128,7 @@ "Ukuriguma" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -72228,6 +79139,7 @@ "Ukhwejo" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -72238,6 +79150,7 @@ "Kui (India)" ], "Added": "2020-03-28", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -72248,6 +79161,7 @@ "Muak Sa-aak" ], "Added": "2017-02-23", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -72258,6 +79172,7 @@ "Ukrainian Sign Language" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -72268,6 +79183,7 @@ "Ukpe-Bayobiri" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -72278,6 +79194,7 @@ "Ukwa" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -72289,6 +79206,7 @@ "Kaapor Sign Language" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -72299,6 +79217,7 @@ "Ukue" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -72309,6 +79228,7 @@ "Kuku" ], "Added": "2020-03-28", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -72319,6 +79239,7 @@ "Ukwuani-Aboh-Ndoni" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -72329,6 +79250,7 @@ "Kuuk-Yak" ], "Added": "2012-08-12", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -72339,6 +79261,7 @@ "Fungwa" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -72349,6 +79272,7 @@ "Ulukwumi" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -72359,6 +79283,7 @@ "Ulch" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -72369,6 +79294,7 @@ "Lule" ], "Added": "2013-09-10", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -72380,6 +79306,7 @@ "Afra" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -72390,6 +79317,7 @@ "Ulithian" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -72400,6 +79328,7 @@ "Meriam Mir" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -72410,6 +79339,7 @@ "Ullatan" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -72420,6 +79350,7 @@ "Ulumanda\u0027" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -72430,6 +79361,7 @@ "Unserdeutsch" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -72440,6 +79372,7 @@ "Uma\u0027 Lung" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -72450,6 +79383,7 @@ "Ulwa" ], "Added": "2010-03-11", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -72460,6 +79394,7 @@ "Buli" ], "Added": "2023-03-17", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -72470,6 +79405,7 @@ "Umatilla" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -72480,6 +79416,7 @@ "Umbundu" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -72490,6 +79427,7 @@ "Marrucinian" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -72500,6 +79438,7 @@ "Umbindhamu" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -72511,6 +79450,7 @@ "Umbuygamu" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -72521,6 +79461,7 @@ "Ukit" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -72531,6 +79472,7 @@ "Umon" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -72541,6 +79483,7 @@ "Makyan Naga" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -72551,6 +79494,7 @@ "Umot\u00EDna" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -72561,6 +79505,7 @@ "Umpila" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -72571,6 +79516,7 @@ "Umbugarla" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -72581,6 +79527,7 @@ "Pendau" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -72591,6 +79538,7 @@ "Munsee" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "del", "Comments": [], "Prefix": [] @@ -72602,6 +79550,7 @@ "North Watut" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -72623,6 +79572,7 @@ "Uneme" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -72633,6 +79583,7 @@ "Ngarinyin" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -72643,6 +79594,7 @@ "Uni" ], "Added": "2021-02-20", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -72653,6 +79605,7 @@ "Enawen\u00E9-Naw\u00E9" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -72663,6 +79616,7 @@ "Unami" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "del", "Comments": [], "Prefix": [] @@ -72674,6 +79628,7 @@ "Kurnai" ], "Added": "2013-09-10", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -72684,6 +79639,7 @@ "Worora" ], "Added": "2009-07-29", + "Scope": "None", "Deprecated": "2012-08-12", "Comments": [ "see wro, xgu" @@ -72697,6 +79653,7 @@ "Mundari" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -72707,6 +79664,7 @@ "Unubahe" ], "Added": "2013-09-10", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -72717,6 +79675,7 @@ "Munda" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -72727,6 +79686,7 @@ "Unde Kaili" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -72737,6 +79697,7 @@ "Uokha" ], "Added": "2009-07-29", + "Scope": "None", "Deprecated": "2015-02-12", "Comments": [], "Prefix": [], @@ -72749,6 +79710,7 @@ "Kulon" ], "Added": "2022-02-25", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -72759,6 +79721,7 @@ "Umeda" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -72769,6 +79732,7 @@ "Uripiv-Wala-Rano-Atchin" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -72779,6 +79743,7 @@ "Urarina" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -72790,6 +79755,7 @@ "Kaapor" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -72800,6 +79766,7 @@ "Urningangg" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -72810,6 +79777,7 @@ "Uru" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -72820,6 +79788,7 @@ "Uradhi" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -72830,6 +79799,7 @@ "Urigina" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -72840,6 +79810,7 @@ "Urhobo" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -72850,6 +79821,7 @@ "Urim" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -72871,6 +79843,7 @@ "Urak Lawoi\u0027" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "ms", "Comments": [], "Prefix": [] @@ -72882,6 +79855,7 @@ "Urali" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -72892,6 +79866,7 @@ "Urapmin" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -72902,6 +79877,7 @@ "Uruangnirin" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -72912,6 +79888,7 @@ "Ura (Papua New Guinea)" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -72922,6 +79899,7 @@ "Uru-Pa-In" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -72933,6 +79911,7 @@ "L\u00F6y\u00F6p" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -72943,6 +79922,7 @@ "Urat" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -72953,6 +79933,7 @@ "Urumi" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -72963,6 +79944,7 @@ "Uruava" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -72973,6 +79955,7 @@ "Sop" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -72983,6 +79966,7 @@ "Urimo" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -72993,6 +79977,7 @@ "Orya" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -73003,6 +79988,7 @@ "Uru-Eu-Wau-Wau" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -73013,6 +79999,7 @@ "Usarufa" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -73023,6 +80010,7 @@ "Ushojo" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -73033,6 +80021,7 @@ "Usui" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -73043,6 +80032,7 @@ "Usaghade" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -73053,6 +80043,7 @@ "Uspanteco" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -73063,6 +80054,7 @@ "us-Saare" ], "Added": "2019-04-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -73073,6 +80065,7 @@ "Uya" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -73083,6 +80076,7 @@ "Otank" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -73093,6 +80087,7 @@ "Ute-Southern Paiute" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -73103,6 +80098,7 @@ "ut-Hun" ], "Added": "2019-04-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -73113,6 +80109,7 @@ "Amba (Solomon Islands)" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -73123,6 +80120,7 @@ "Etulo" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -73133,6 +80131,7 @@ "Utu" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -73143,6 +80142,7 @@ "Urum" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -73153,6 +80153,7 @@ "Kulon-Pazeh" ], "Added": "2009-07-29", + "Scope": "None", "Deprecated": "2022-02-25", "Comments": [ "see pzh, uon" @@ -73166,6 +80167,7 @@ "Ura (Vanuatu)" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -73176,6 +80178,7 @@ "U" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -73187,6 +80190,7 @@ "Fagauvea" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -73197,6 +80201,7 @@ "Uri" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -73207,6 +80212,7 @@ "Lote" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -73217,6 +80223,7 @@ "Kuku-Uwanh" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -73227,6 +80234,7 @@ "Doko-Uyanga" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -73237,6 +80245,7 @@ "Northern Uzbek" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "uz", "Comments": [], "Prefix": [] @@ -73248,6 +80257,7 @@ "Southern Uzbek" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "uz", "Comments": [], "Prefix": [] @@ -73259,6 +80269,7 @@ "Vaagri Booli" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -73269,6 +80280,7 @@ "Vale" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -73279,6 +80291,7 @@ "Vafsi" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -73289,6 +80302,7 @@ "Vagla" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -73299,6 +80313,7 @@ "Varhadi-Nagpuri" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -73309,6 +80324,7 @@ "Vai" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -73321,6 +80337,7 @@ "Vasekele" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -73331,6 +80348,7 @@ "Vehes" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -73341,6 +80359,7 @@ "Vanimo" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -73351,6 +80370,7 @@ "Valman" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -73361,6 +80381,7 @@ "Vao" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -73371,6 +80392,7 @@ "Vaiphei" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -73381,6 +80403,7 @@ "Huarijio" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -73391,6 +80414,7 @@ "Vasavi" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -73401,6 +80425,7 @@ "Vanuma" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -73411,6 +80436,7 @@ "Varli" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -73421,6 +80447,7 @@ "Wayu" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -73431,6 +80458,7 @@ "Southeast Babar" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -73441,6 +80469,7 @@ "Southwestern Bontok" ], "Added": "2010-03-11", + "Scope": "None", "MacroLanguage": "bnc", "Comments": [], "Prefix": [] @@ -73452,6 +80481,7 @@ "Venetian" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -73462,6 +80492,7 @@ "Veddah" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -73472,6 +80503,7 @@ "Veluws" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -73482,6 +80514,7 @@ "Vemgo-Mabas" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -73492,6 +80525,7 @@ "Venture\u00F1o" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -73502,6 +80536,7 @@ "Veps" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -73512,6 +80547,7 @@ "Mom Jango" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -73522,6 +80558,7 @@ "Vaghri" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -73533,6 +80570,7 @@ "Flemish Sign Language" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -73543,6 +80581,7 @@ "Virgin Islands Creole English" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -73553,6 +80592,7 @@ "Vidunda" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -73563,6 +80603,7 @@ "Vili" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -73573,6 +80614,7 @@ "Viemo" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -73583,6 +80625,7 @@ "Vilela" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -73593,6 +80636,7 @@ "Vinza" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -73603,6 +80647,7 @@ "Vishavan" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -73613,6 +80658,7 @@ "Viti" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -73623,6 +80669,7 @@ "Iduna" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -73633,6 +80680,7 @@ "Bajjika" ], "Added": "2023-03-17", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -73643,6 +80691,7 @@ "Kariyarra" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -73653,6 +80702,7 @@ "Ija-Zuba" ], "Added": "2009-07-29", + "Scope": "None", "Deprecated": "2021-02-20", "Comments": [ "see vkn, vkz" @@ -73666,6 +80716,7 @@ "Kujarge" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -73676,6 +80727,7 @@ "Kaur" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "ms", "Comments": [], "Prefix": [] @@ -73687,6 +80739,7 @@ "Kulisusu" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -73697,6 +80750,7 @@ "Kamakan" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -73707,6 +80761,7 @@ "Koro Nulu" ], "Added": "2021-02-20", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -73717,6 +80772,7 @@ "Kodeoha" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -73727,6 +80783,7 @@ "Korlai Creole Portuguese" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -73737,6 +80794,7 @@ "Tenggarong Kutai Malay" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "ms", "Comments": [], "Prefix": [] @@ -73748,6 +80806,7 @@ "Kurrama" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -73758,6 +80817,7 @@ "Koro Zuba" ], "Added": "2021-02-20", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -73768,6 +80828,7 @@ "Valpei" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -73778,6 +80839,7 @@ "Vlaams" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -73788,6 +80850,7 @@ "Martuyhunira" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -73798,6 +80861,7 @@ "Barbaram" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -73808,6 +80872,7 @@ "Juxtlahuaca Mixtec" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -73818,6 +80883,7 @@ "Mudu Koraga" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -73828,6 +80894,7 @@ "East Masela" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -73838,6 +80905,7 @@ "Mainfr\u00E4nkisch" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -73848,6 +80916,7 @@ "Lungalunga" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [ "see also bxf" ], @@ -73860,6 +80929,7 @@ "Maraghei" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -73870,6 +80940,7 @@ "Miwa" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -73880,6 +80951,7 @@ "Ixtayutla Mixtec" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -73890,6 +80962,7 @@ "Makhuwa-Shirima" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -73900,6 +80973,7 @@ "Malgana" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -73910,6 +80984,7 @@ "Mitlatongo Mixtec" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -73920,6 +80995,7 @@ "Soyaltepec Mazatec" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -73930,6 +81006,7 @@ "Soyaltepec Mixtec" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -73940,6 +81017,7 @@ "Marenje" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -73950,6 +81028,7 @@ "Moksela" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -73960,6 +81039,7 @@ "Muluridyi" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -73970,6 +81050,7 @@ "Valley Maidu" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -73980,6 +81061,7 @@ "Makhuwa" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -73990,6 +81072,7 @@ "Tamazola Mixtec" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -74000,6 +81083,7 @@ "Ayautla Mazatec" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -74010,6 +81094,7 @@ "Mazatl\u00E1n Mazatec" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -74021,6 +81106,7 @@ "Lovono" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -74032,6 +81118,7 @@ "Neve\u0027ei" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -74042,6 +81129,7 @@ "Vunapu" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -74052,6 +81140,7 @@ "Voro" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -74062,6 +81151,7 @@ "Votic" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -74072,6 +81162,7 @@ "Vera\u0027a" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -74082,6 +81173,7 @@ "V\u00F5ro" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "et", "Comments": [], "Prefix": [] @@ -74093,6 +81185,7 @@ "Varisi" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -74104,6 +81197,7 @@ "Banam Bay" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -74114,6 +81208,7 @@ "Moldova Sign Language" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -74124,6 +81219,7 @@ "Venezuelan Sign Language" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -74134,6 +81230,7 @@ "Vedic Sanskrit" ], "Added": "2024-03-04", + "Scope": "None", "MacroLanguage": "sa", "Comments": [], "Prefix": [] @@ -74146,6 +81243,7 @@ "Llengua de signes valenciana" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -74156,6 +81254,7 @@ "Vitou" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -74166,6 +81265,7 @@ "Vumbu" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -74176,6 +81276,7 @@ "Vunjo" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -74186,6 +81287,7 @@ "Vute" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -74196,6 +81298,7 @@ "Awa (China)" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -74206,6 +81309,7 @@ "Walla Walla" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -74216,6 +81320,7 @@ "Wab" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -74226,6 +81331,7 @@ "Wasco-Wishram" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -74237,6 +81343,7 @@ "Wondama" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -74247,6 +81354,7 @@ "Walser" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -74257,6 +81365,7 @@ "Wakon\u00E1" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -74267,6 +81376,7 @@ "Wa\u0027ema" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -74277,6 +81387,7 @@ "Watubela" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -74287,6 +81398,7 @@ "Wares" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -74297,6 +81409,7 @@ "Waffa" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -74319,6 +81432,7 @@ "Wolaitta" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -74329,6 +81443,7 @@ "Wampanoag" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -74339,6 +81454,7 @@ "Wan" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -74349,6 +81465,7 @@ "Wappo" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -74359,6 +81476,7 @@ "Wapishana" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -74369,6 +81487,7 @@ "Wagiman" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -74379,6 +81498,7 @@ "Waray (Philippines)" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -74389,6 +81509,7 @@ "Washo" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -74399,6 +81520,7 @@ "Kaninuwa" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -74409,6 +81531,7 @@ "Waur\u00E1" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -74419,6 +81542,7 @@ "Waka" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -74429,6 +81553,7 @@ "Waiwai" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -74440,6 +81565,7 @@ "Marangis" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -74450,6 +81576,7 @@ "Wayana" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -74460,6 +81587,7 @@ "Wampur" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -74470,6 +81598,7 @@ "Warao" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -74480,6 +81609,7 @@ "Wabo" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -74490,6 +81620,7 @@ "Waritai" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -74500,6 +81631,7 @@ "Wara" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [ "see also pnl" ], @@ -74512,6 +81644,7 @@ "Wanda" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -74522,6 +81655,7 @@ "Vwanji" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -74532,6 +81666,7 @@ "Alagwa" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -74542,6 +81677,7 @@ "Waigali" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -74552,6 +81688,7 @@ "Wakhi" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -74562,6 +81699,7 @@ "Wa" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -74572,6 +81710,7 @@ "Warlpiri" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -74582,6 +81721,7 @@ "Waddar" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -74592,6 +81732,7 @@ "Wagdi" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "raj", "Comments": [], "Prefix": [] @@ -74603,6 +81744,7 @@ "West Bengal Sign Language" ], "Added": "2017-02-23", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -74613,6 +81755,7 @@ "Warnman" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -74623,6 +81766,7 @@ "Wajarri" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -74633,6 +81777,7 @@ "Woi" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -74643,6 +81788,7 @@ "Yanom\u00E1mi" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -74653,6 +81799,7 @@ "Waci Gbe" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -74663,6 +81810,7 @@ "Wandji" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -74673,6 +81821,7 @@ "Wadaginam" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -74683,6 +81832,7 @@ "Wadjiginy" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -74693,6 +81843,7 @@ "Wadikali" ], "Added": "2013-09-10", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -74703,6 +81854,7 @@ "Wendat" ], "Added": "2022-02-25", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -74713,6 +81865,7 @@ "Wadjigu" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -74723,6 +81876,7 @@ "Wadjabangayi" ], "Added": "2013-09-10", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -74733,6 +81887,7 @@ "Wewaw" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -74743,6 +81898,7 @@ "W\u00E8 Western" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -74753,6 +81909,7 @@ "Wedau" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -74763,6 +81920,7 @@ "Wergaia" ], "Added": "2013-09-10", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -74773,6 +81931,7 @@ "Weh" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -74783,6 +81942,7 @@ "Kiunum" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -74793,6 +81953,7 @@ "Weme Gbe" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -74814,6 +81975,7 @@ "Wemale" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -74824,6 +81986,7 @@ "Westphalien" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -74834,6 +81997,7 @@ "Weri" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -74844,6 +82008,7 @@ "Cameroon Pidgin" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -74854,6 +82019,7 @@ "Perai" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -74864,6 +82030,7 @@ "Rawngtu Chin" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -74874,6 +82041,7 @@ "Wejewa" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -74885,6 +82053,7 @@ "Zorop" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -74895,6 +82064,7 @@ "Wagaya" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -74905,6 +82075,7 @@ "Wagawaga" ], "Added": "2010-03-11", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -74916,6 +82087,7 @@ "Wangganguru" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -74926,6 +82098,7 @@ "Wahgi" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -74936,6 +82109,7 @@ "Waigeo" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -74946,6 +82120,7 @@ "Wirangu" ], "Added": "2012-08-12", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -74956,6 +82131,7 @@ "Wagawaga" ], "Added": "2009-07-29", + "Scope": "None", "Deprecated": "2010-03-11", "Comments": [ "see wgb, ylb" @@ -74969,6 +82145,7 @@ "Warrgamay" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -74980,6 +82157,7 @@ "Manusela" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -74990,6 +82168,7 @@ "North Wahgi" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -75000,6 +82179,7 @@ "Wahau Kenyah" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -75010,6 +82190,7 @@ "Wahau Kayan" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -75020,6 +82201,7 @@ "Southern Toussian" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -75030,6 +82212,7 @@ "Wichita" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -75040,6 +82223,7 @@ "Wik-Epa" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -75050,6 +82234,7 @@ "Wik-Keyangan" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -75060,6 +82245,7 @@ "Wik Ngathan" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -75070,6 +82256,7 @@ "Wik-Me\u0027anha" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -75080,6 +82267,7 @@ "Minidien" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -75090,6 +82278,7 @@ "Wik-Iiyanh" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -75100,6 +82289,7 @@ "Wikalkan" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -75110,6 +82300,7 @@ "Wilawila" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -75120,6 +82311,7 @@ "Wik-Mungkan" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -75130,6 +82322,7 @@ "Ho-Chunk" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -75140,6 +82333,7 @@ "Wiraf\u00E9d" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -75150,6 +82344,7 @@ "Wintu" ], "Added": "2009-07-29", + "Scope": "None", "Deprecated": "2013-09-10", "Comments": [ "see nol, pwi, wnw" @@ -75163,6 +82358,7 @@ "Wiru" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -75173,6 +82369,7 @@ "Vitu" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -75183,6 +82380,7 @@ "Wirangu" ], "Added": "2009-07-29", + "Scope": "None", "Deprecated": "2012-08-12", "Comments": [ "see nwo, wgu" @@ -75196,6 +82394,7 @@ "Wiyot" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -75206,6 +82405,7 @@ "Waja" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -75216,6 +82416,7 @@ "Warji" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -75226,6 +82427,7 @@ "Kw\u0027adza" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -75236,6 +82438,7 @@ "Kumbaran" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -75247,6 +82450,7 @@ "Mo" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -75257,6 +82461,7 @@ "Kalanadi" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -75267,6 +82472,7 @@ "Keerray-Woorroong" ], "Added": "2019-04-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -75277,6 +82483,7 @@ "Kunduvadi" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -75287,6 +82494,7 @@ "Wakawaka" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -75297,6 +82505,7 @@ "Wangkayutyuru" ], "Added": "2013-09-10", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -75307,6 +82516,7 @@ "Walio" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -75317,6 +82527,7 @@ "Mwali Comorian" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -75327,6 +82538,7 @@ "Wolane" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -75337,6 +82549,7 @@ "Kunbarlang" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -75347,6 +82560,7 @@ "Welaun" ], "Added": "2020-03-28", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -75357,6 +82571,7 @@ "Waioli" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -75367,6 +82582,7 @@ "Wailaki" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -75377,6 +82593,7 @@ "Wali (Sudan)" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -75387,6 +82604,7 @@ "Middle Welsh" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -75397,6 +82615,7 @@ "Wolio" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -75407,6 +82626,7 @@ "Wailapa" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -75417,6 +82637,7 @@ "Wallisian" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -75427,6 +82648,7 @@ "Wuliwuli" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -75437,6 +82659,7 @@ "Wich\u00ED Lhamt\u00E9s Vejoz" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -75447,6 +82670,7 @@ "Walak" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -75457,6 +82681,7 @@ "Wali (Ghana)" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -75467,6 +82692,7 @@ "Waling" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -75477,6 +82703,7 @@ "Mawa (Nigeria)" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -75487,6 +82714,7 @@ "Wambaya" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -75497,6 +82725,7 @@ "Wamas" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -75507,6 +82736,7 @@ "Mamaind\u00E9" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -75517,6 +82747,7 @@ "Wambule" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -75527,6 +82758,7 @@ "Western Minyag" ], "Added": "2021-02-20", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -75537,6 +82769,7 @@ "Waima\u0027a" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -75547,6 +82780,7 @@ "Wamin" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -75557,6 +82791,7 @@ "Maiwa (Indonesia)" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -75567,6 +82802,7 @@ "Waamwang" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -75577,6 +82813,7 @@ "Wom (Papua New Guinea)" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -75587,6 +82824,7 @@ "Wambon" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -75597,6 +82835,7 @@ "Walmajarri" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -75607,6 +82846,7 @@ "Mwani" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -75617,6 +82857,7 @@ "Womo" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -75627,6 +82868,7 @@ "Mokati" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -75637,6 +82879,7 @@ "Wantoat" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -75647,6 +82890,7 @@ "Wandarang" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -75657,6 +82901,7 @@ "Waneci" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -75667,6 +82912,7 @@ "Wanggom" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -75677,6 +82923,7 @@ "Ndzwani Comorian" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -75687,6 +82934,7 @@ "Wanukaka" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -75697,6 +82945,7 @@ "Wanggamala" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -75707,6 +82956,7 @@ "Wunumara" ], "Added": "2013-09-10", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -75717,6 +82967,7 @@ "Wano" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -75727,6 +82978,7 @@ "Wanap" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -75737,6 +82989,7 @@ "Usan" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -75747,6 +83000,7 @@ "Wintu" ], "Added": "2013-09-10", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -75758,6 +83012,7 @@ "Waanyi" ], "Added": "2012-08-12", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -75769,6 +83024,7 @@ "Tyaraity" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -75779,6 +83035,7 @@ "W\u00E8 Northern" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -75789,6 +83046,7 @@ "Wogeo" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -75799,6 +83057,7 @@ "Wolani" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -75809,6 +83068,7 @@ "Woleaian" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -75819,6 +83079,7 @@ "Gambian Wolof" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -75829,6 +83090,7 @@ "Wogamusin" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -75839,6 +83101,7 @@ "Kamang" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -75849,6 +83112,7 @@ "Longto" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -75859,6 +83123,7 @@ "Wom (Nigeria)" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -75869,6 +83134,7 @@ "Wongo" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -75879,6 +83145,7 @@ "Manombai" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -75889,6 +83156,7 @@ "Woria" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -75899,6 +83167,7 @@ "Hanga Hundi" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -75909,6 +83178,7 @@ "Wawonii" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -75919,6 +83189,7 @@ "Weyto" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -75929,6 +83200,7 @@ "Maco" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -75939,6 +83211,7 @@ "Warapu" ], "Added": "2009-07-29", + "Scope": "None", "Deprecated": "2021-02-20", "Comments": [ "see bpe, suo, uni" @@ -75953,6 +83226,7 @@ "Warluwara" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -75963,6 +83237,7 @@ "Warduji" ], "Added": "2009-07-29", + "Scope": "None", "Deprecated": "2022-02-25", "Comments": [], "Prefix": [] @@ -75975,6 +83250,7 @@ "Gudjal" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -75985,6 +83261,7 @@ "Wiradjuri" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -75995,6 +83272,7 @@ "Wariyangga" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -76005,6 +83283,7 @@ "Garrwa" ], "Added": "2012-08-12", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -76015,6 +83294,7 @@ "Warlmanpa" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -76025,6 +83305,7 @@ "Warumungu" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -76035,6 +83316,7 @@ "Warnang" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -76045,6 +83327,7 @@ "Worrorra" ], "Added": "2012-08-12", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -76055,6 +83338,7 @@ "Waropen" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -76065,6 +83349,7 @@ "Wardaman" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -76075,6 +83360,7 @@ "Waris" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -76085,6 +83371,7 @@ "Waru" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -76095,6 +83382,7 @@ "Waruna" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -76105,6 +83393,7 @@ "Gugu Warra" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -76115,6 +83404,7 @@ "Wae Rana" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -76125,6 +83415,7 @@ "Merwari" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "mwr", "Comments": [], "Prefix": [] @@ -76136,6 +83427,7 @@ "Waray (Australia)" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -76146,6 +83438,7 @@ "Warembori" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -76156,6 +83449,7 @@ "Adilabad Gondi" ], "Added": "2016-05-30", + "Scope": "None", "MacroLanguage": "gon", "Comments": [], "Prefix": [] @@ -76167,6 +83461,7 @@ "Wusi" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -76177,6 +83472,7 @@ "Waskia" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -76187,6 +83483,7 @@ "Owenia" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -76197,6 +83494,7 @@ "Wasa" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -76207,6 +83505,7 @@ "Wasu" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -76217,6 +83516,7 @@ "Wotapuri-Katarqalai" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -76227,6 +83527,7 @@ "Matambwe" ], "Added": "2023-03-17", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -76237,6 +83538,7 @@ "Watiwa" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -76247,6 +83549,7 @@ "Wathawurrung" ], "Added": "2013-09-10", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -76257,6 +83560,7 @@ "Berta" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -76267,6 +83571,7 @@ "Watakataui" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -76277,6 +83582,7 @@ "Mewati" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -76287,6 +83593,7 @@ "Wotu" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -76297,6 +83604,7 @@ "Wikngenchera" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -76307,6 +83615,7 @@ "Wunambal" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -76317,6 +83626,7 @@ "Wudu" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -76327,6 +83637,7 @@ "Wutunhua" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -76337,6 +83648,7 @@ "Silimo" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -76347,6 +83659,7 @@ "Wumbvu" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -76357,6 +83670,7 @@ "Bungu" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -76367,6 +83681,7 @@ "Wurrugu" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -76377,6 +83692,7 @@ "Wutung" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -76387,6 +83703,7 @@ "Wu Chinese" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "zh", "Comments": [], "Prefix": [] @@ -76398,6 +83715,7 @@ "Wuvulu-Aua" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -76408,6 +83726,7 @@ "Wulna" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -76418,6 +83737,7 @@ "Wauyai" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -76428,6 +83748,7 @@ "Waama" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -76438,6 +83759,7 @@ "Wakabunga" ], "Added": "2012-08-12", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -76449,6 +83771,7 @@ "Dorig" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -76459,6 +83782,7 @@ "Warrwa" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -76469,6 +83793,7 @@ "Wawa" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -76479,6 +83804,7 @@ "Waxianghua" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -76489,6 +83815,7 @@ "Wardandi" ], "Added": "2013-09-10", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -76499,6 +83826,7 @@ "Wyandot" ], "Added": "2009-07-29", + "Scope": "None", "Deprecated": "2022-02-25", "Comments": [ "see wdt, wyn" @@ -76512,6 +83840,7 @@ "Wangaaybuwan-Ngiyambaa" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -76522,6 +83851,7 @@ "Woiwurrung" ], "Added": "2013-09-10", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -76532,6 +83862,7 @@ "Wymysorys" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -76542,6 +83873,7 @@ "Wyandot" ], "Added": "2022-02-25", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -76552,6 +83884,7 @@ "Wayor\u00F3" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -76562,6 +83895,7 @@ "Western Fijian" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -76572,6 +83906,7 @@ "Andalusian Arabic" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -76582,6 +83917,7 @@ "Sambe" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -76592,6 +83928,7 @@ "Kachari" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -76602,6 +83939,7 @@ "Adai" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -76612,6 +83950,7 @@ "Aequian" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -76622,6 +83961,7 @@ "Aghwan" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -76632,6 +83972,7 @@ "Kaimb\u00E9" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -76642,6 +83983,7 @@ "Ararandew\u00E1ra" ], "Added": "2014-02-28", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -76652,6 +83994,7 @@ "M\u00E1ku" ], "Added": "2016-05-30", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -76663,6 +84006,7 @@ "Oirat" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -76673,6 +84017,7 @@ "\u01C0Xam" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -76683,6 +84028,7 @@ "Xamtanga" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -76693,6 +84039,7 @@ "Khao" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -76703,6 +84050,7 @@ "Apalachee" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -76713,6 +84061,7 @@ "Aquitanian" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -76723,6 +84072,7 @@ "Karami" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -76733,6 +84083,7 @@ "Kamas" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -76743,6 +84094,7 @@ "Katawixi" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -76753,6 +84105,7 @@ "Kauwera" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -76763,6 +84116,7 @@ "Xav\u00E1nte" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -76773,6 +84127,7 @@ "Kawaiisu" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -76783,6 +84138,7 @@ "Kayan Mahakam" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -76793,6 +84149,7 @@ "Kamba (Brazil)" ], "Added": "2009-07-29", + "Scope": "None", "Deprecated": "2016-05-30", "Comments": [], "Prefix": [], @@ -76805,6 +84162,7 @@ "Lower Burdekin" ], "Added": "2010-03-11", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -76815,6 +84173,7 @@ "Bactrian" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -76825,6 +84184,7 @@ "Bindal" ], "Added": "2013-09-10", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -76835,6 +84195,7 @@ "Bigambal" ], "Added": "2013-09-10", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -76845,6 +84206,7 @@ "Bunganditj" ], "Added": "2013-09-10", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -76855,6 +84217,7 @@ "Kombio" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -76865,6 +84228,7 @@ "Birrpayi" ], "Added": "2013-09-10", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -76875,6 +84239,7 @@ "Middle Breton" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -76885,6 +84250,7 @@ "Kenaboi" ], "Added": "2010-03-11", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -76895,6 +84261,7 @@ "Bolgarian" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -76905,6 +84272,7 @@ "Bibbulman" ], "Added": "2013-09-10", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -76915,6 +84283,7 @@ "Kambera" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -76925,6 +84294,7 @@ "Kambiw\u00E1" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -76935,6 +84305,7 @@ "Kabix\u00ED" ], "Added": "2009-07-29", + "Scope": "None", "Deprecated": "2016-05-30", "Comments": [], "Prefix": [] @@ -76947,6 +84318,7 @@ "Batyala" ], "Added": "2013-09-10", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -76957,6 +84329,7 @@ "Cumbric" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -76967,6 +84340,7 @@ "Camunic" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -76977,6 +84351,7 @@ "Celtiberian" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -76987,6 +84362,7 @@ "Cisalpine Gaulish" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -76998,6 +84374,7 @@ "Chimakum" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -77008,6 +84385,7 @@ "Classical Armenian" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -77018,6 +84396,7 @@ "Comecrudo" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -77028,6 +84407,7 @@ "Cotoname" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -77038,6 +84418,7 @@ "Chorasmian" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -77048,6 +84429,7 @@ "Carian" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -77058,6 +84440,7 @@ "Classical Tibetan" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -77068,6 +84451,7 @@ "Curonian" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -77078,6 +84462,7 @@ "Chuvantsy" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -77088,6 +84473,7 @@ "Coahuilteco" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -77098,6 +84484,7 @@ "Cayuse" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -77108,6 +84495,7 @@ "Darkinyung" ], "Added": "2013-09-10", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -77118,6 +84506,7 @@ "Dacian" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -77128,6 +84517,7 @@ "Dharuk" ], "Added": "2013-09-10", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -77138,6 +84528,7 @@ "Edomite" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -77148,6 +84539,7 @@ "Kwandu" ], "Added": "2017-02-23", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -77158,6 +84550,7 @@ "Kaitag" ], "Added": "2022-02-25", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -77168,6 +84561,7 @@ "Malayic Dayak" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -77178,6 +84572,7 @@ "Eblan" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -77188,6 +84583,7 @@ "Hdi" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -77198,6 +84594,7 @@ "\u01C1Xegwi" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -77208,6 +84605,7 @@ "Kelo" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -77218,6 +84616,7 @@ "Kembayan" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -77228,6 +84627,7 @@ "Epi-Olmec" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -77238,6 +84638,7 @@ "Xer\u00E9nte" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -77248,6 +84649,7 @@ "Kesawai" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -77258,6 +84660,7 @@ "Xet\u00E1" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -77268,6 +84671,7 @@ "Keoru-Ahia" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -77278,6 +84682,7 @@ "Faliscan" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -77288,6 +84693,7 @@ "Galatian" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -77298,6 +84704,7 @@ "Gbin" ], "Added": "2012-08-12", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -77308,6 +84715,7 @@ "Gudang" ], "Added": "2013-09-10", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -77318,6 +84726,7 @@ "Gabrielino-Fernande\u00F1o" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -77328,6 +84737,7 @@ "Goreng" ], "Added": "2013-09-10", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -77338,6 +84748,7 @@ "Garingbal" ], "Added": "2013-09-10", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -77348,6 +84759,7 @@ "Galindan" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -77359,6 +84771,7 @@ "Guwinmal" ], "Added": "2013-09-10", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -77380,6 +84793,7 @@ "Garza" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -77390,6 +84804,7 @@ "Unggumi" ], "Added": "2012-08-12", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -77400,6 +84815,7 @@ "Guwa" ], "Added": "2013-09-10", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -77410,6 +84826,7 @@ "Harami" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -77420,6 +84837,7 @@ "Hunnic" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -77430,6 +84848,7 @@ "Hadrami" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -77440,6 +84859,7 @@ "Khetrani" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "lah", "Comments": [], "Prefix": [] @@ -77451,6 +84871,7 @@ "Middle Khmer (1400 to 1850 CE)" ], "Added": "2022-02-25", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -77461,6 +84882,7 @@ "Hernican" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -77471,6 +84893,7 @@ "Hattic" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -77481,6 +84904,7 @@ "Hurrian" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -77491,6 +84915,7 @@ "Khua" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -77501,6 +84926,7 @@ "Xiandao" ], "Added": "2009-07-29", + "Scope": "None", "Deprecated": "2013-09-10", "Comments": [], "Prefix": [], @@ -77513,6 +84939,7 @@ "Iberian" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -77523,6 +84950,7 @@ "Xiri" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -77533,6 +84961,7 @@ "Illyrian" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -77543,6 +84972,7 @@ "Xinca" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -77553,6 +84983,7 @@ "Xipin\u00E1wa" ], "Added": "2009-07-29", + "Scope": "None", "Deprecated": "2016-05-30", "Comments": [], "Prefix": [] @@ -77564,6 +84995,7 @@ "Xiri\u00E2na" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -77574,6 +85006,7 @@ "Kisan" ], "Added": "2014-02-28", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -77584,6 +85017,7 @@ "Indus Valley Language" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -77594,6 +85028,7 @@ "Xipaya" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -77604,6 +85039,7 @@ "Minjungbal" ], "Added": "2013-09-10", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -77614,6 +85050,7 @@ "Jaitmatang" ], "Added": "2013-09-10", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -77624,6 +85061,7 @@ "Kalkoti" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -77634,6 +85072,7 @@ "Northern Nago" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -77644,6 +85083,7 @@ "Kho\u0027ini" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -77654,6 +85094,7 @@ "Mendalam Kayan" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -77664,6 +85105,7 @@ "Kereho" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -77674,6 +85116,7 @@ "Khengkha" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -77684,6 +85127,7 @@ "Kagoro" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -77694,6 +85138,7 @@ "Karahawyana" ], "Added": "2009-07-29", + "Scope": "None", "Deprecated": "2016-05-30", "Comments": [], "Prefix": [], @@ -77706,6 +85151,7 @@ "Kenyan Sign Language" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -77716,6 +85162,7 @@ "Kajali" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -77727,6 +85174,7 @@ "Kaco\u0027" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -77737,6 +85185,7 @@ "Mainstream Kenyah" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -77747,6 +85196,7 @@ "Kayan River Kayan" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -77757,6 +85207,7 @@ "Kiorr" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -77767,6 +85218,7 @@ "Kabatei" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -77777,6 +85229,7 @@ "Koroni" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -77787,6 +85240,7 @@ "Xakriab\u00E1" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -77797,6 +85251,7 @@ "Kumbewaha" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -77807,6 +85262,7 @@ "Kantosi" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -77817,6 +85273,7 @@ "Kaamba" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -77827,6 +85284,7 @@ "Kgalagadi" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -77837,6 +85295,7 @@ "Kembra" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -77847,6 +85306,7 @@ "Karore" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -77857,6 +85317,7 @@ "Uma\u0027 Lasan" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -77867,6 +85328,7 @@ "Kurtokha" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -77877,6 +85339,7 @@ "Kamula" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -77887,6 +85350,7 @@ "Loup B" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -77897,6 +85361,7 @@ "Lycian" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -77907,6 +85372,7 @@ "Lydian" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -77917,6 +85383,7 @@ "Lemnian" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -77927,6 +85394,7 @@ "Ligurian (Ancient)" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -77937,6 +85405,7 @@ "Liburnian" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -77947,6 +85416,7 @@ "Alanic" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -77957,6 +85427,7 @@ "Loup A" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -77967,6 +85438,7 @@ "Lepontic" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -77977,6 +85449,7 @@ "Lusitanian" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -77987,6 +85460,7 @@ "Cuneiform Luwian" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -77997,6 +85471,7 @@ "Elymian" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -78007,6 +85482,7 @@ "Mushungulu" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -78017,6 +85493,7 @@ "Mbonga" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -78027,6 +85504,7 @@ "Makhuwa-Marrevone" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -78037,6 +85515,7 @@ "Mbudum" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -78047,6 +85526,7 @@ "Median" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -78057,6 +85537,7 @@ "Mingrelian" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -78067,6 +85548,7 @@ "Mengaka" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -78077,6 +85559,7 @@ "Kugu-Muminh" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -78087,6 +85570,7 @@ "Majera" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -78097,6 +85581,7 @@ "Ancient Macedonian" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -78107,6 +85592,7 @@ "Malaysian Sign Language" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -78117,6 +85603,7 @@ "Manado Malay" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "ms", "Comments": [], "Prefix": [] @@ -78128,6 +85615,7 @@ "Manichaean Middle Persian" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -78138,6 +85626,7 @@ "Morerebi" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -78148,6 +85637,7 @@ "Kuku-Mu\u0027inh" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -78158,6 +85648,7 @@ "Kuku-Mangk" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -78168,6 +85659,7 @@ "Meroitic" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -78178,6 +85670,7 @@ "Moroccan Sign Language" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -78188,6 +85681,7 @@ "Matbat" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -78198,6 +85692,7 @@ "Kamu" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -78209,6 +85704,7 @@ "Tankarana Malagasy" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "mg", "Comments": [], "Prefix": [] @@ -78220,6 +85716,7 @@ "Tsimihety Malagasy" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "mg", "Comments": [], "Prefix": [] @@ -78232,6 +85729,7 @@ "Maden" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -78242,6 +85740,7 @@ "Mayaguduna" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -78252,6 +85751,7 @@ "Mori Bawah" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -78262,6 +85762,7 @@ "Ancient North Arabian" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -78272,6 +85773,7 @@ "Kanakanabu" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -78293,6 +85795,7 @@ "Middle Mongolian" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -78303,6 +85806,7 @@ "Kuanhua" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -78313,6 +85817,7 @@ "Ngarigu" ], "Added": "2013-09-10", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -78323,6 +85828,7 @@ "Ngoni (Tanzania)" ], "Added": "2021-02-20", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -78333,6 +85839,7 @@ "Nganakarti" ], "Added": "2013-09-10", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -78343,6 +85850,7 @@ "Ngumbarl" ], "Added": "2020-03-28", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -78353,6 +85861,7 @@ "Northern Kankanay" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -78363,6 +85872,7 @@ "Anglo-Norman" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -78373,6 +85883,7 @@ "Ngoni (Mozambique)" ], "Added": "2021-02-20", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -78383,6 +85894,7 @@ "Kangri" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "doi", "Comments": [], "Prefix": [] @@ -78394,6 +85906,7 @@ "Kanashi" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -78404,6 +85917,7 @@ "Narragansett" ], "Added": "2010-03-11", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -78414,6 +85928,7 @@ "Nukunul" ], "Added": "2013-09-10", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -78424,6 +85939,7 @@ "Nyiyaparli" ], "Added": "2013-09-10", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -78435,6 +85951,7 @@ "Mattoki" ], "Added": "2012-08-12", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -78445,6 +85962,7 @@ "O\u0027chi\u0027chi\u0027" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -78455,6 +85973,7 @@ "Kokoda" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -78465,6 +85984,7 @@ "Soga" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -78475,6 +85995,7 @@ "Kominimung" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -78485,6 +86006,7 @@ "Xokleng" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -78495,6 +86017,7 @@ "Komo (Sudan)" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -78505,6 +86028,7 @@ "Konkomba" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -78515,6 +86039,7 @@ "Xukur\u00FA" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -78525,6 +86050,7 @@ "Kopar" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -78535,6 +86061,7 @@ "Korubo" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -78545,6 +86072,7 @@ "Kowaki" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -78555,6 +86083,7 @@ "Pirriya" ], "Added": "2013-09-10", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -78566,6 +86095,7 @@ "Pyemmairrener" ], "Added": "2020-03-28", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -78576,6 +86106,7 @@ "Pecheneg" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -78586,6 +86117,7 @@ "Oyster Bay Tasmanian" ], "Added": "2020-03-28", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -78596,6 +86128,7 @@ "Liberia Kpelle" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "kpe", "Comments": [], "Prefix": [] @@ -78608,6 +86141,7 @@ "Nuenonne" ], "Added": "2020-03-28", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -78618,6 +86152,7 @@ "Phrygian" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -78629,6 +86164,7 @@ "Tyerrenoterpanner" ], "Added": "2020-03-28", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -78639,6 +86175,7 @@ "Pictish" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -78649,6 +86186,7 @@ "Mpalitjanh" ], "Added": "2012-08-12", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -78659,6 +86197,7 @@ "Kulina Pano" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -78669,6 +86208,7 @@ "Port Sorell Tasmanian" ], "Added": "2020-03-28", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -78679,6 +86219,7 @@ "Pumpokol" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -78689,6 +86230,7 @@ "Kapinaw\u00E1" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -78699,6 +86241,7 @@ "Pochutec" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -78709,6 +86252,7 @@ "Puyo-Paekche" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -78719,6 +86263,7 @@ "Mohegan-Pequot" ], "Added": "2010-03-11", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -78729,6 +86274,7 @@ "Parthian" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -78739,6 +86285,7 @@ "Pisidian" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -78749,6 +86296,7 @@ "Punthamara" ], "Added": "2013-09-10", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -78759,6 +86307,7 @@ "Punic" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -78770,6 +86319,7 @@ "Tommeginne" ], "Added": "2020-03-28", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -78781,6 +86331,7 @@ "Peerapper" ], "Added": "2020-03-28", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -78792,6 +86343,7 @@ "Toogee" ], "Added": "2020-03-28", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -78802,6 +86354,7 @@ "Puyo" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -78812,6 +86365,7 @@ "Bruny Island Tasmanian" ], "Added": "2020-03-28", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -78822,6 +86376,7 @@ "Karakhanid" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -78832,6 +86387,7 @@ "Qatabanian" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -78842,6 +86398,7 @@ "Krah\u00F4" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -78852,6 +86409,7 @@ "Eastern Karaboro" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -78862,6 +86420,7 @@ "Gundungurra" ], "Added": "2013-09-10", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -78872,6 +86431,7 @@ "Kreye" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -78882,6 +86442,7 @@ "Minang" ], "Added": "2013-09-10", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -78892,6 +86453,7 @@ "Krikati-Timbira" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -78902,6 +86464,7 @@ "Armazic" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -78912,6 +86475,7 @@ "Arin" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -78922,6 +86486,7 @@ "Karranga" ], "Added": "2013-09-10", + "Scope": "None", "Deprecated": "2020-03-28", "Comments": [], "Prefix": [], @@ -78934,6 +86499,7 @@ "Raetic" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -78944,6 +86510,7 @@ "Aranama-Tamique" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -78954,6 +86521,7 @@ "Marriammu" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -78964,6 +86532,7 @@ "Karawa" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -78974,6 +86543,7 @@ "Sabaean" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -78984,6 +86554,7 @@ "Sambal" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -78994,6 +86565,7 @@ "Scythian" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -79004,6 +86576,7 @@ "Sidetic" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -79014,6 +86587,7 @@ "Sempan" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -79024,6 +86598,7 @@ "Shamang" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -79034,6 +86609,7 @@ "Sio" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -79044,6 +86620,7 @@ "Subi" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [ "see also suj" ], @@ -79056,6 +86633,7 @@ "South Slavey" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "den", "Comments": [], "Prefix": [] @@ -79067,6 +86645,7 @@ "Kasem" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -79077,6 +86656,7 @@ "Sanga (Nigeria)" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -79087,6 +86667,7 @@ "Solano" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -79097,6 +86678,7 @@ "Silopi" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -79107,6 +86689,7 @@ "Makhuwa-Saka" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -79117,6 +86700,7 @@ "Sherpa" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -79127,6 +86711,7 @@ "Assan" ], "Added": "2009-07-29", + "Scope": "None", "Deprecated": "2023-03-17", "Comments": [], "Prefix": [], @@ -79139,6 +86724,7 @@ "Sanum\u00E1" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -79149,6 +86735,7 @@ "Sudovian" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -79159,6 +86746,7 @@ "Saisiyat" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -79169,6 +86757,7 @@ "Alcozauca Mixtec" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -79179,6 +86768,7 @@ "Chazumba Mixtec" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -79189,6 +86779,7 @@ "Katcha-Kadugli-Miri" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -79199,6 +86790,7 @@ "Diuxi-Tilantongo Mixtec" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -79209,6 +86801,7 @@ "Ketengban" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -79219,6 +86812,7 @@ "Transalpine Gaulish" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -79229,6 +86823,7 @@ "Yitha Yitha" ], "Added": "2013-09-10", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -79239,6 +86834,7 @@ "Sinicahua Mixtec" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -79249,6 +86845,7 @@ "San Juan Teita Mixtec" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -79259,6 +86856,7 @@ "Tijaltepec Mixtec" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -79269,6 +86867,7 @@ "Magdalena Pe\u00F1asco Mixtec" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -79279,6 +86878,7 @@ "Northern Tlaxiaco Mixtec" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -79289,6 +86889,7 @@ "Tokharian A" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -79299,6 +86900,7 @@ "San Miguel Piedras Mixtec" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -79309,6 +86911,7 @@ "Tumshuqese" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -79319,6 +86922,7 @@ "Early Tripuri" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -79329,6 +86933,7 @@ "Sindihui Mixtec" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -79339,6 +86944,7 @@ "Tacahua Mixtec" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -79349,6 +86955,7 @@ "Cuyamecalco Mixtec" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -79359,6 +86966,7 @@ "Thawa" ], "Added": "2013-09-10", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -79369,6 +86977,7 @@ "Tawand\u00EA" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -79379,6 +86988,7 @@ "Yoloxochitl Mixtec" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -79389,6 +86999,7 @@ "Tasmanian" ], "Added": "2009-07-29", + "Scope": "None", "Deprecated": "2020-03-28", "Comments": [ "see xpb, xpd, xpf, xph, xpl, xpv, xpw, xpx, xpz" @@ -79402,6 +87013,7 @@ "Alu Kurumba" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -79412,6 +87024,7 @@ "Betta Kurumba" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -79422,6 +87035,7 @@ "Umiida" ], "Added": "2012-08-12", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -79432,6 +87046,7 @@ "Kunigami" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -79442,6 +87057,7 @@ "Jennu Kurumba" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -79453,6 +87069,7 @@ "Nunukul" ], "Added": "2013-09-10", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -79463,6 +87080,7 @@ "Umbrian" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -79473,6 +87091,7 @@ "Unggaranggu" ], "Added": "2012-08-12", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -79483,6 +87102,7 @@ "Kuo" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -79493,6 +87113,7 @@ "Upper Umpqua" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -79503,6 +87124,7 @@ "Urartian" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -79513,6 +87135,7 @@ "Kuthant" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -79524,6 +87147,7 @@ "Khwedam" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -79534,6 +87158,7 @@ "Venetic" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -79544,6 +87169,7 @@ "Kamviri" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -79554,6 +87180,7 @@ "Vandalic" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -79564,6 +87191,7 @@ "Volscian" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -79574,6 +87202,7 @@ "Vestinian" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -79584,6 +87213,7 @@ "Kwaza" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -79594,6 +87224,7 @@ "Woccon" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -79604,6 +87235,7 @@ "Wadi Wadi" ], "Added": "2013-09-10", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -79614,6 +87246,7 @@ "Xwela Gbe" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -79624,6 +87257,7 @@ "Kwegu" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -79634,6 +87268,7 @@ "Wajuk" ], "Added": "2013-09-10", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -79644,6 +87279,7 @@ "Wangkumara" ], "Added": "2013-09-10", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -79654,6 +87290,7 @@ "Western Xwla Gbe" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -79664,6 +87301,7 @@ "Written Oirat" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -79674,6 +87312,7 @@ "Kwerba Mamberamo" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -79684,6 +87323,7 @@ "Wotjobaluk" ], "Added": "2013-09-10", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -79694,6 +87334,7 @@ "Wemba Wemba" ], "Added": "2013-09-10", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -79704,6 +87345,7 @@ "Boro (Ghana)" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -79714,6 +87356,7 @@ "Ke\u0027o" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -79724,6 +87367,7 @@ "Minkin" ], "Added": "2013-09-10", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -79734,6 +87378,7 @@ "Korop\u00F3" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -79744,6 +87389,7 @@ "Tambora" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -79754,6 +87400,7 @@ "Yaygir" ], "Added": "2013-09-10", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -79764,6 +87411,7 @@ "Yandjibara" ], "Added": "2013-09-10", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -79774,6 +87422,7 @@ "Mayi-Yapi" ], "Added": "2013-09-10", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -79784,6 +87433,7 @@ "Mayi-Kulan" ], "Added": "2013-09-10", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -79794,6 +87444,7 @@ "Yalakalore" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -79804,6 +87455,7 @@ "Mayi-Thakurti" ], "Added": "2013-09-10", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -79814,6 +87466,7 @@ "Yorta Yorta" ], "Added": "2012-08-12", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -79824,6 +87477,7 @@ "Zhang-Zhung" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -79834,6 +87488,7 @@ "Zemgalian" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -79844,6 +87499,7 @@ "Ancient Zapotec" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -79854,6 +87510,7 @@ "Yaminahua" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -79864,6 +87521,7 @@ "Yuhup" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -79874,6 +87532,7 @@ "Pass Valley Yali" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -79884,6 +87543,7 @@ "Yagua" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -79894,6 +87554,7 @@ "Pum\u00E9" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -79904,6 +87565,7 @@ "Yaka (Democratic Republic of Congo)" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -79914,6 +87576,7 @@ "Y\u00E1mana" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -79924,6 +87587,7 @@ "Yazgulyam" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -79934,6 +87598,7 @@ "Yagnobi" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -79944,6 +87609,7 @@ "Banda-Yangere" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -79954,6 +87620,7 @@ "Yakama" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -79964,6 +87631,7 @@ "Yalunka" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -79974,6 +87642,7 @@ "Yamba" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -79984,6 +87653,7 @@ "Mayangna" ], "Added": "2010-03-11", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -79994,6 +87664,7 @@ "Yao" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -80004,6 +87675,7 @@ "Yapese" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -80014,6 +87686,7 @@ "Yaqui" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -80024,6 +87697,7 @@ "Yabarana" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -80034,6 +87708,7 @@ "Nugunu (Cameroon)" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -80044,6 +87719,7 @@ "Yambeta" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -80054,6 +87730,7 @@ "Yuwana" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -80064,6 +87741,7 @@ "Yangben" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -80074,6 +87752,7 @@ "Yawalapit\u00ED" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -80084,6 +87763,7 @@ "Yauma" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -80094,6 +87774,7 @@ "Agwagwune" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -80104,6 +87785,7 @@ "Lokaa" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -80114,6 +87796,7 @@ "Yala" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -80124,6 +87807,7 @@ "Yemba" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -80134,6 +87818,7 @@ "Yangbye" ], "Added": "2009-07-29", + "Scope": "None", "Deprecated": "2012-08-12", "Comments": [], "Prefix": [], @@ -80146,6 +87831,7 @@ "West Yugur" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -80156,6 +87842,7 @@ "Yakha" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -80166,6 +87853,7 @@ "Yamphu" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -80176,6 +87864,7 @@ "Hasha" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -80186,6 +87875,7 @@ "Bokha" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -80196,6 +87886,7 @@ "Yukuben" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -80206,6 +87897,7 @@ "Yaben" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -80216,6 +87908,7 @@ "Yaba\u00E2na" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -80226,6 +87919,7 @@ "Yabong" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -80236,6 +87930,7 @@ "Yawiyo" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -80246,6 +87941,7 @@ "Yaweyuha" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -80256,6 +87952,7 @@ "Chesu" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -80266,6 +87963,7 @@ "Lolopo" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -80276,6 +87974,7 @@ "Yucuna" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -80286,6 +87985,7 @@ "Chepya" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -80296,6 +87996,7 @@ "Yilan Creole" ], "Added": "2023-03-17", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -80306,6 +88007,7 @@ "Yanda" ], "Added": "2013-09-10", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -80316,6 +88018,7 @@ "Eastern Yiddish" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "yi", "Comments": [], "Prefix": [] @@ -80327,6 +88030,7 @@ "Yangum Dey" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -80337,6 +88041,7 @@ "Yidgha" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -80347,6 +88052,7 @@ "Yoidik" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -80357,6 +88063,7 @@ "Yiddish Sign Language" ], "Added": "2009-07-29", + "Scope": "None", "Deprecated": "2015-02-12", "Comments": [], "Prefix": [] @@ -80368,6 +88075,7 @@ "Ravula" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -80378,6 +88086,7 @@ "Yeniche" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -80388,6 +88097,7 @@ "Yimas" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -80398,6 +88108,7 @@ "Yeni" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -80408,6 +88119,7 @@ "Yevanic" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -80418,6 +88130,7 @@ "Yela" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -80428,6 +88141,7 @@ "Yendang" ], "Added": "2009-07-29", + "Scope": "None", "Deprecated": "2012-08-12", "Comments": [ "see ynq, yot" @@ -80441,6 +88155,7 @@ "Tarok" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -80451,6 +88166,7 @@ "Nyankpa" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -80461,6 +88177,7 @@ "Yetfa" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -80471,6 +88188,7 @@ "Yerukula" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -80481,6 +88199,7 @@ "Yapunda" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -80491,6 +88210,7 @@ "Yeyi" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -80501,6 +88221,7 @@ "Malyangapa" ], "Added": "2012-08-12", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -80511,6 +88232,7 @@ "Yiningayi" ], "Added": "2013-09-10", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -80521,6 +88243,7 @@ "Yangum Gel" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -80531,6 +88254,7 @@ "Yagomi" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -80541,6 +88265,7 @@ "Gepo" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -80551,6 +88276,7 @@ "Yagaria" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -80561,6 +88287,7 @@ "Yol\u014Bu Sign Language" ], "Added": "2014-02-28", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -80571,6 +88298,7 @@ "Yugul" ], "Added": "2013-09-10", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -80581,6 +88309,7 @@ "Yagwoia" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -80591,6 +88320,7 @@ "Baha Buyang" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -80601,6 +88331,7 @@ "Judeo-Iraqi Arabic" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "jrb", "Comments": [], "Prefix": [] @@ -80612,6 +88343,7 @@ "Hlepho Phowa" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -80622,6 +88354,7 @@ "Yan-nha\u014Bu Sign Language" ], "Added": "2015-04-17", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -80632,6 +88365,7 @@ "Yinggarda" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -80642,6 +88376,7 @@ "Ache" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -80652,6 +88387,7 @@ "Wusa Nasu" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -80662,6 +88398,7 @@ "Western Yiddish" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "yi", "Comments": [], "Prefix": [] @@ -80673,6 +88410,7 @@ "Yidiny" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -80683,6 +88421,7 @@ "Yindjibarndi" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -80693,6 +88432,7 @@ "Dongshanba Lalo" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -80703,6 +88443,7 @@ "Yindjilandji" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -80713,6 +88454,7 @@ "Yimchungru Naga" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -80724,6 +88466,7 @@ "Yinchia" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -80734,6 +88477,7 @@ "Pholo" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -80744,6 +88488,7 @@ "Miqie" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -80754,6 +88499,7 @@ "North Awyu" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -80764,6 +88510,7 @@ "Yis" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -80774,6 +88521,7 @@ "Eastern Lalu" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -80784,6 +88532,7 @@ "Awu" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -80794,6 +88543,7 @@ "Northern Nisu" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -80804,6 +88554,7 @@ "Axi Yi" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -80814,6 +88565,7 @@ "Yir Yoront" ], "Added": "2009-07-29", + "Scope": "None", "Deprecated": "2013-09-10", "Comments": [ "see yrm, yyr" @@ -80827,6 +88579,7 @@ "Azhe" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -80837,6 +88590,7 @@ "Yakan" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -80847,6 +88601,7 @@ "Northern Yukaghir" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -80857,6 +88612,7 @@ "Khamnigan Mongol" ], "Added": "2023-03-17", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -80867,6 +88623,7 @@ "Yoke" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -80877,6 +88634,7 @@ "Yakaikeke" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -80887,6 +88645,7 @@ "Khlula" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -80897,6 +88656,7 @@ "Kap" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -80907,6 +88667,7 @@ "Kua-nsi" ], "Added": "2012-08-12", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -80917,6 +88678,7 @@ "Yasa" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -80927,6 +88689,7 @@ "Yekora" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -80937,6 +88700,7 @@ "Kathu" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -80947,6 +88711,7 @@ "Kuamasi" ], "Added": "2012-08-12", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -80957,6 +88722,7 @@ "Yakoma" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -80967,6 +88733,7 @@ "Yaul" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -80977,6 +88744,7 @@ "Yaleba" ], "Added": "2010-03-11", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -80987,6 +88755,7 @@ "Yele" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -80997,6 +88766,7 @@ "Yelogu" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -81007,6 +88777,7 @@ "Angguruk Yali" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -81017,6 +88788,7 @@ "Yil" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -81027,6 +88799,7 @@ "Limi" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -81037,6 +88810,7 @@ "Langnian Buyang" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -81047,6 +88821,7 @@ "Naluo Yi" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -81057,6 +88832,7 @@ "Yalarnnga" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -81067,6 +88843,7 @@ "Aribwaung" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -81078,6 +88855,7 @@ "Nyel\u00E2yu" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -81088,6 +88866,7 @@ "Yamphe" ], "Added": "2009-07-29", + "Scope": "None", "Deprecated": "2012-08-12", "Comments": [], "Prefix": [], @@ -81100,6 +88879,7 @@ "Yambes" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -81110,6 +88890,7 @@ "Southern Muji" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -81120,6 +88901,7 @@ "Muda" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -81130,6 +88912,7 @@ "Yameo" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -81140,6 +88923,7 @@ "Yamongeri" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -81150,6 +88934,7 @@ "Mili" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -81160,6 +88945,7 @@ "Moji" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -81170,6 +88956,7 @@ "Makwe" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -81180,6 +88967,7 @@ "Iamalele" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -81190,6 +88978,7 @@ "Maay" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -81201,6 +88990,7 @@ "Sunum" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -81211,6 +89001,7 @@ "Yangum Mon" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -81221,6 +89012,7 @@ "Yamap" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -81231,6 +89023,7 @@ "Qila Muji" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -81241,6 +89034,7 @@ "Malasar" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -81251,6 +89045,7 @@ "Mysian" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -81261,6 +89056,7 @@ "Mator-Taygi-Karagas" ], "Added": "2009-07-29", + "Scope": "None", "Deprecated": "2015-02-12", "Comments": [], "Prefix": [], @@ -81273,6 +89069,7 @@ "Northern Muji" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -81283,6 +89080,7 @@ "Muzi" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -81293,6 +89091,7 @@ "Aluo" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -81303,6 +89102,7 @@ "Yamben" ], "Added": "2025-02-06", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -81313,6 +89113,7 @@ "Yandruwandha" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -81323,6 +89124,7 @@ "Lang\u0027e" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -81333,6 +89135,7 @@ "Yango" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -81343,6 +89146,7 @@ "Yangho" ], "Added": "2009-07-29", + "Scope": "None", "Deprecated": "2015-02-12", "Comments": [], "Prefix": [] @@ -81354,6 +89158,7 @@ "Naukan Yupik" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -81364,6 +89169,7 @@ "Yangulam" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -81374,6 +89180,7 @@ "Yana" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -81384,6 +89191,7 @@ "Yong" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -81394,6 +89202,7 @@ "Yendang" ], "Added": "2012-08-12", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -81404,6 +89213,7 @@ "Yansi" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -81414,6 +89224,7 @@ "Yahuna" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -81424,6 +89235,7 @@ "Yoba" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -81434,6 +89246,7 @@ "Yogad" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -81444,6 +89257,7 @@ "Yonaguni" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -81454,6 +89268,7 @@ "Yokuts" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -81464,6 +89279,7 @@ "Yola" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -81474,6 +89290,7 @@ "Yombe" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -81484,6 +89301,7 @@ "Yongkom" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -81494,6 +89312,7 @@ "Yos" ], "Added": "2009-07-29", + "Scope": "None", "Deprecated": "2013-09-10", "Comments": [], "Prefix": [], @@ -81506,6 +89325,7 @@ "Yotti" ], "Added": "2012-08-12", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -81516,6 +89336,7 @@ "Yoron" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -81526,6 +89347,7 @@ "Yoy" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -81536,6 +89358,7 @@ "Phala" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -81546,6 +89369,7 @@ "Labo Phowa" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -81556,6 +89380,7 @@ "Phola" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -81566,6 +89391,7 @@ "Phupha" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -81587,6 +89413,7 @@ "Phuma" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -81597,6 +89424,7 @@ "Ani Phowa" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -81607,6 +89435,7 @@ "Alo Phola" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -81617,6 +89446,7 @@ "Phupa" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -81627,6 +89457,7 @@ "Phuza" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -81637,6 +89468,7 @@ "Yerakai" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -81647,6 +89479,7 @@ "Yareba" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -81657,6 +89490,7 @@ "Yaour\u00E9" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -81667,6 +89501,7 @@ "Yar\u00ED" ], "Added": "2009-07-29", + "Scope": "None", "Deprecated": "2016-05-30", "Comments": [], "Prefix": [] @@ -81678,6 +89513,7 @@ "Nenets" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -81688,6 +89524,7 @@ "Nhengatu" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -81698,6 +89535,7 @@ "Yirrk-Mel" ], "Added": "2013-09-10", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -81708,6 +89546,7 @@ "Yerong" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -81718,6 +89557,7 @@ "Yaroam\u00EB" ], "Added": "2016-05-30", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -81728,6 +89568,7 @@ "Yarsun" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -81738,6 +89579,7 @@ "Yarawata" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -81748,6 +89590,7 @@ "Yarluyandi" ], "Added": "2013-09-10", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -81758,6 +89601,7 @@ "Yassic" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -81768,6 +89612,7 @@ "Samatao" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -81778,6 +89623,7 @@ "Sonaga" ], "Added": "2012-08-12", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -81788,6 +89634,7 @@ "Yugoslavian Sign Language" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -81798,6 +89645,7 @@ "Myanmar Sign Language" ], "Added": "2021-02-20", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -81808,6 +89656,7 @@ "Sani" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -81818,6 +89667,7 @@ "Nisi (China)" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -81828,6 +89678,7 @@ "Southern Lolopo" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -81838,6 +89689,7 @@ "Sirenik Yupik" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -81848,6 +89700,7 @@ "Yessan-Mayo" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -81858,6 +89711,7 @@ "Sanie" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -81868,6 +89722,7 @@ "Talu" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -81878,6 +89733,7 @@ "Tanglang" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -81888,6 +89744,7 @@ "Thopho" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -81898,6 +89755,7 @@ "Yout Wam" ], "Added": "2010-03-11", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -81908,6 +89766,7 @@ "Yatay" ], "Added": "2013-09-10", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -81919,6 +89778,7 @@ "Yucatec Maya" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -81929,6 +89789,7 @@ "Yugambal" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -81939,6 +89800,7 @@ "Yuchi" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -81949,6 +89811,7 @@ "Judeo-Tripolitanian Arabic" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "jrb", "Comments": [], "Prefix": [] @@ -81961,6 +89824,7 @@ "Cantonese" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "zh", "Comments": [], "Prefix": [] @@ -81972,6 +89836,7 @@ "Havasupai-Walapai-Yavapai" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -81982,6 +89847,7 @@ "Yug" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -81992,6 +89858,7 @@ "Yurut\u00ED" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -82002,6 +89869,7 @@ "Karkar-Yuri" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -82012,6 +89880,7 @@ "Yuki" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -82022,6 +89891,7 @@ "Yulu" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -82032,6 +89902,7 @@ "Quechan" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -82042,6 +89913,7 @@ "Bena (Nigeria)" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -82052,6 +89924,7 @@ "Yukpa" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -82062,6 +89935,7 @@ "Yuqui" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -82072,6 +89946,7 @@ "Yurok" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -82082,6 +89957,7 @@ "Yopno" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -82092,6 +89968,7 @@ "Yugh" ], "Added": "2009-07-29", + "Scope": "None", "Deprecated": "2014-02-28", "Comments": [], "Prefix": [], @@ -82104,6 +89981,7 @@ "Yau (Morobe Province)" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -82114,6 +89992,7 @@ "Southern Yukaghir" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -82124,6 +90003,7 @@ "East Yugur" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -82134,6 +90014,7 @@ "Yuracare" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -82144,6 +90025,7 @@ "Yawa" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -82154,6 +90036,7 @@ "Yavitero" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -82164,6 +90047,7 @@ "Kalou" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -82174,6 +90058,7 @@ "Yinhawangka" ], "Added": "2013-09-10", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -82184,6 +90069,7 @@ "Western Lalu" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -82194,6 +90080,7 @@ "Yawanawa" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -82204,6 +90091,7 @@ "Wuding-Luquan Yi" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -82214,6 +90102,7 @@ "Yawuru" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -82225,6 +90114,7 @@ "Central Lalo" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -82235,6 +90125,7 @@ "Wumeng Nasu" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -82245,6 +90136,7 @@ "Yawarawarga" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -82255,6 +90147,7 @@ "Mayawali" ], "Added": "2013-09-10", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -82265,6 +90158,7 @@ "Yagara" ], "Added": "2012-08-12", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -82275,6 +90169,7 @@ "Yardliyawarra" ], "Added": "2013-09-10", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -82285,6 +90180,7 @@ "Yinwum" ], "Added": "2013-09-10", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -82295,6 +90191,7 @@ "Yuyu" ], "Added": "2013-09-10", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -82305,6 +90202,7 @@ "Yabula Yabula" ], "Added": "2012-08-12", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -82315,6 +90213,7 @@ "Yir Yoront" ], "Added": "2013-09-03", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -82325,6 +90224,7 @@ "Yau (Sandaun Province)" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -82335,6 +90235,7 @@ "Ayizi" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -82345,6 +90246,7 @@ "E\u0027ma Buyang" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -82355,6 +90257,7 @@ "Zokhuo" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -82365,6 +90268,7 @@ "Sierra de Ju\u00E1rez Zapotec" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "zap", "Comments": [], "Prefix": [] @@ -82377,6 +90281,7 @@ "San Juan Guelav\u00EDa Zapotec" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "zap", "Comments": [], "Prefix": [] @@ -82388,6 +90293,7 @@ "Ocotl\u00E1n Zapotec" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "zap", "Comments": [], "Prefix": [] @@ -82399,6 +90305,7 @@ "Cajonos Zapotec" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "zap", "Comments": [], "Prefix": [] @@ -82410,6 +90317,7 @@ "Yareni Zapotec" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "zap", "Comments": [], "Prefix": [] @@ -82421,6 +90329,7 @@ "Ayoquesco Zapotec" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "zap", "Comments": [], "Prefix": [] @@ -82432,6 +90341,7 @@ "Zaghawa" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -82442,6 +90352,7 @@ "Zangwal" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -82452,6 +90363,7 @@ "Isthmus Zapotec" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "zap", "Comments": [], "Prefix": [] @@ -82463,6 +90375,7 @@ "Zaramo" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -82473,6 +90386,7 @@ "Zanaki" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -82483,6 +90397,7 @@ "Zauzou" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -82493,6 +90408,7 @@ "Miahuatl\u00E1n Zapotec" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "zap", "Comments": [], "Prefix": [] @@ -82504,6 +90420,7 @@ "Ozolotepec Zapotec" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "zap", "Comments": [], "Prefix": [] @@ -82526,6 +90443,7 @@ "Alo\u00E1pam Zapotec" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "zap", "Comments": [], "Prefix": [] @@ -82537,6 +90455,7 @@ "Rinc\u00F3n Zapotec" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "zap", "Comments": [], "Prefix": [] @@ -82548,6 +90467,7 @@ "Santo Domingo Albarradas Zapotec" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "zap", "Comments": [], "Prefix": [] @@ -82559,6 +90479,7 @@ "Tabaa Zapotec" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "zap", "Comments": [], "Prefix": [] @@ -82570,6 +90491,7 @@ "Zangskari" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -82580,6 +90502,7 @@ "Yatzachi Zapotec" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "zap", "Comments": [], "Prefix": [] @@ -82591,6 +90514,7 @@ "Mitla Zapotec" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "zap", "Comments": [], "Prefix": [] @@ -82602,6 +90526,7 @@ "Xadani Zapotec" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "zap", "Comments": [], "Prefix": [] @@ -82614,6 +90539,7 @@ "Zaysete" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -82624,6 +90550,7 @@ "Zari" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -82634,6 +90561,7 @@ "Balaibalan" ], "Added": "2020-03-28", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -82644,6 +90572,7 @@ "Central Berawan" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -82654,6 +90583,7 @@ "East Berawan" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -82667,6 +90597,7 @@ ], "Added": "2007-08-21", "SuppressScript": "Blis", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -82677,6 +90608,7 @@ "Batui" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -82687,6 +90619,7 @@ "Bu (Bauchi State)" ], "Added": "2021-02-20", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -82697,6 +90630,7 @@ "West Berawan" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -82707,6 +90641,7 @@ "Coatecas Altas Zapotec" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "zap", "Comments": [], "Prefix": [] @@ -82718,6 +90653,7 @@ "Las Delicias Zapotec" ], "Added": "2022-02-25", + "Scope": "None", "MacroLanguage": "zap", "Comments": [], "Prefix": [] @@ -82729,6 +90665,7 @@ "Central Hongshuihe Zhuang" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "za", "Comments": [], "Prefix": [] @@ -82740,6 +90677,7 @@ "Ngazidja Comorian" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -82750,6 +90688,7 @@ "Zeeuws" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -82760,6 +90699,7 @@ "Zenag" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -82770,6 +90710,7 @@ "Eastern Hongshuihe Zhuang" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "za", "Comments": [], "Prefix": [] @@ -82781,6 +90722,7 @@ "Zeem" ], "Added": "2023-03-17", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -82791,6 +90733,7 @@ "Zenaga" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -82801,6 +90744,7 @@ "Kinga" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -82811,6 +90755,7 @@ "Guibei Zhuang" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "za", "Comments": [], "Prefix": [] @@ -82822,6 +90767,7 @@ "Standard Moroccan Tamazight" ], "Added": "2013-01-25", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -82832,6 +90778,7 @@ "Minz Zhuang" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "za", "Comments": [], "Prefix": [] @@ -82843,6 +90790,7 @@ "Guibian Zhuang" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "za", "Comments": [], "Prefix": [] @@ -82854,6 +90802,7 @@ "Magori" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -82864,6 +90813,7 @@ "Zhaba" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -82874,6 +90824,7 @@ "Dai Zhuang" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "za", "Comments": [], "Prefix": [] @@ -82885,6 +90836,7 @@ "Zhire" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -82895,6 +90847,7 @@ "Nong Zhuang" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "za", "Comments": [], "Prefix": [] @@ -82906,6 +90859,7 @@ "Zhoa" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -82927,6 +90881,7 @@ "Zia" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -82937,6 +90892,7 @@ "Zimbabwe Sign Language" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -82947,6 +90903,7 @@ "Zimakani" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -82957,6 +90914,7 @@ "Zialo" ], "Added": "2011-08-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -82967,6 +90925,7 @@ "Mesme" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -82977,6 +90936,7 @@ "Zinza" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -82987,6 +90947,7 @@ "Ziriya" ], "Added": "2009-07-29", + "Scope": "None", "Deprecated": "2020-03-28", "Comments": [], "Prefix": [], @@ -82999,6 +90960,7 @@ "Zigula" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -83009,6 +90971,7 @@ "Zizilivakan" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -83019,6 +90982,7 @@ "Kaimbulawa" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -83029,6 +90993,7 @@ "Koibal" ], "Added": "2009-07-29", + "Scope": "None", "Deprecated": "2023-03-17", "Comments": [], "Prefix": [], @@ -83041,6 +91006,7 @@ "Kadu" ], "Added": "2012-08-12", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -83051,6 +91017,7 @@ "Koguryo" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -83061,6 +91028,7 @@ "Khorezmian" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -83071,6 +91039,7 @@ "Karankawa" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -83081,6 +91050,7 @@ "Kanan" ], "Added": "2012-08-12", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -83091,6 +91061,7 @@ "Kott" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -83101,6 +91072,7 @@ "S\u00E3o Paulo Kaing\u00E1ng" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -83111,6 +91083,7 @@ "Zakhring" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -83121,6 +91094,7 @@ "Kitan" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -83131,6 +91105,7 @@ "Kaurna" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -83141,6 +91116,7 @@ "Krevinian" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -83151,6 +91127,7 @@ "Khazar" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -83161,6 +91138,7 @@ "Zula" ], "Added": "2021-02-20", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -83182,6 +91160,7 @@ "Liujiang Zhuang" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "za", "Comments": [], "Prefix": [] @@ -83193,6 +91172,7 @@ "Malay (individual language)" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "ms", "Comments": [], "Prefix": [] @@ -83204,6 +91184,7 @@ "Lianshan Zhuang" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "za", "Comments": [], "Prefix": [] @@ -83215,6 +91196,7 @@ "Liuqian Zhuang" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "za", "Comments": [], "Prefix": [] @@ -83237,6 +91219,7 @@ "Zul" ], "Added": "2023-03-17", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -83258,6 +91241,7 @@ "Manda (Australia)" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -83268,6 +91252,7 @@ "Zimba" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -83278,6 +91263,7 @@ "Margany" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -83288,6 +91274,7 @@ "Maridan" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -83298,6 +91285,7 @@ "Mangerr" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -83308,6 +91296,7 @@ "Mfinu" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -83318,6 +91307,7 @@ "Marti Ke" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -83328,6 +91318,7 @@ "Makolkol" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -83338,6 +91329,7 @@ "Negeri Sembilan Malay" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "ms", "Comments": [], "Prefix": [] @@ -83349,6 +91341,7 @@ "Maridjabin" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -83359,6 +91352,7 @@ "Mandandanyi" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -83369,6 +91363,7 @@ "Matngala" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -83380,6 +91375,7 @@ "Marramaninyshi" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -83390,6 +91386,7 @@ "Mbangwe" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -83400,6 +91397,7 @@ "Molo" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -83410,6 +91408,7 @@ "Mbuun" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -83420,6 +91419,7 @@ "Mituku" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -83430,6 +91430,7 @@ "Maranunggu" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -83440,6 +91441,7 @@ "Mbesa" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -83450,6 +91452,7 @@ "Maringarr" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -83460,6 +91463,7 @@ "Muruwari" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -83470,6 +91474,7 @@ "Mbariman-Gudhinma" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -83480,6 +91485,7 @@ "Mbo (Democratic Republic of Congo)" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -83490,6 +91496,7 @@ "Bomitaba" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -83500,6 +91507,7 @@ "Mariyedi" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -83510,6 +91518,7 @@ "Mbandja" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -83520,6 +91529,7 @@ "Zan Gula" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -83541,6 +91551,7 @@ "Zande (individual language)" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -83551,6 +91562,7 @@ "Mang" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -83561,6 +91573,7 @@ "Manangkari" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -83571,6 +91584,7 @@ "Mangas" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -83581,6 +91595,7 @@ "Copainal\u00E1 Zoque" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -83591,6 +91606,7 @@ "Chimalapa Zoque" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -83601,6 +91617,7 @@ "Zou" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -83611,6 +91628,7 @@ "Asunci\u00F3n Mixtepec Zapotec" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "zap", "Comments": [], "Prefix": [] @@ -83622,6 +91640,7 @@ "Tabasco Zoque" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -83632,6 +91651,7 @@ "Ray\u00F3n Zoque" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -83642,6 +91662,7 @@ "Francisco Le\u00F3n Zoque" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -83652,6 +91673,7 @@ "Lachiguiri Zapotec" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "zap", "Comments": [], "Prefix": [] @@ -83663,6 +91685,7 @@ "Yautepec Zapotec" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "zap", "Comments": [], "Prefix": [] @@ -83674,6 +91697,7 @@ "Choapan Zapotec" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "zap", "Comments": [], "Prefix": [] @@ -83685,6 +91709,7 @@ "Southeastern Ixtl\u00E1n Zapotec" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "zap", "Comments": [], "Prefix": [] @@ -83696,6 +91721,7 @@ "Petapa Zapotec" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "zap", "Comments": [], "Prefix": [] @@ -83707,6 +91733,7 @@ "San Pedro Quiatoni Zapotec" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "zap", "Comments": [], "Prefix": [] @@ -83718,6 +91745,7 @@ "Guevea De Humboldt Zapotec" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "zap", "Comments": [], "Prefix": [] @@ -83729,6 +91757,7 @@ "Totomachapan Zapotec" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "zap", "Comments": [], "Prefix": [] @@ -83740,6 +91769,7 @@ "Santa Mar\u00EDa Quiegolani Zapotec" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "zap", "Comments": [], "Prefix": [] @@ -83751,6 +91781,7 @@ "Quiavicuzas Zapotec" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "zap", "Comments": [], "Prefix": [] @@ -83762,6 +91793,7 @@ "Tlacolulita Zapotec" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "zap", "Comments": [], "Prefix": [] @@ -83773,6 +91805,7 @@ "Lachix\u00EDo Zapotec" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "zap", "Comments": [], "Prefix": [] @@ -83784,6 +91817,7 @@ "Mixtepec Zapotec" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "zap", "Comments": [], "Prefix": [] @@ -83795,6 +91829,7 @@ "Santa In\u00E9s Yatzechi Zapotec" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "zap", "Comments": [], "Prefix": [] @@ -83806,6 +91841,7 @@ "Amatl\u00E1n Zapotec" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "zap", "Comments": [], "Prefix": [] @@ -83817,6 +91853,7 @@ "El Alto Zapotec" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "zap", "Comments": [], "Prefix": [] @@ -83828,6 +91865,7 @@ "Zoogocho Zapotec" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "zap", "Comments": [], "Prefix": [] @@ -83839,6 +91877,7 @@ "Santiago Xanica Zapotec" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "zap", "Comments": [], "Prefix": [] @@ -83850,6 +91889,7 @@ "Coatl\u00E1n Zapotec" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "zap", "Comments": [], "Prefix": [] @@ -83861,6 +91901,7 @@ "San Vicente Coatl\u00E1n Zapotec" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "zap", "Comments": [], "Prefix": [] @@ -83872,6 +91913,7 @@ "Yal\u00E1lag Zapotec" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "zap", "Comments": [], "Prefix": [] @@ -83883,6 +91925,7 @@ "Chichicapan Zapotec" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "zap", "Comments": [], "Prefix": [] @@ -83894,6 +91937,7 @@ "Zaniza Zapotec" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "zap", "Comments": [], "Prefix": [] @@ -83905,6 +91949,7 @@ "San Baltazar Loxicha Zapotec" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "zap", "Comments": [], "Prefix": [] @@ -83916,6 +91961,7 @@ "Mazaltepec Zapotec" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "zap", "Comments": [], "Prefix": [] @@ -83927,6 +91973,7 @@ "Texmelucan Zapotec" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "zap", "Comments": [], "Prefix": [] @@ -83938,6 +91985,7 @@ "Qiubei Zhuang" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "za", "Comments": [], "Prefix": [] @@ -83949,6 +91997,7 @@ "Kara (Korea)" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -83959,6 +92008,7 @@ "Mirgan" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -83969,6 +92019,7 @@ "Zerenkel" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -83979,6 +92030,7 @@ "Z\u00E1paro" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -83989,6 +92041,7 @@ "Zarphatic" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -83999,6 +92052,7 @@ "Mairasi" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -84009,6 +92063,7 @@ "Sarasira" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -84019,6 +92074,7 @@ "Kaskean" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -84029,6 +92085,7 @@ "Zambian Sign Language" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -84039,6 +92096,7 @@ "Standard Malay" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "ms", "Comments": [], "Prefix": [] @@ -84050,6 +92108,7 @@ "Southern Rincon Zapotec" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "zap", "Comments": [], "Prefix": [] @@ -84061,6 +92120,7 @@ "Sukurum" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -84071,6 +92131,7 @@ "Elotepec Zapotec" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "zap", "Comments": [], "Prefix": [] @@ -84082,6 +92143,7 @@ "Xanagu\u00EDa Zapotec" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "zap", "Comments": [], "Prefix": [] @@ -84093,6 +92155,7 @@ "Lapagu\u00EDa-Guivini Zapotec" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "zap", "Comments": [], "Prefix": [] @@ -84104,6 +92167,7 @@ "San Agust\u00EDn Mixtepec Zapotec" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "zap", "Comments": [], "Prefix": [] @@ -84115,6 +92179,7 @@ "Santa Catarina Albarradas Zapotec" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "zap", "Comments": [], "Prefix": [] @@ -84126,6 +92191,7 @@ "Loxicha Zapotec" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "zap", "Comments": [], "Prefix": [] @@ -84137,6 +92203,7 @@ "Quioquitani-Quier\u00ED Zapotec" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "zap", "Comments": [], "Prefix": [] @@ -84148,6 +92215,7 @@ "Tilquiapan Zapotec" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "zap", "Comments": [], "Prefix": [] @@ -84159,6 +92227,7 @@ "Tejalapan Zapotec" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "zap", "Comments": [], "Prefix": [] @@ -84170,6 +92239,7 @@ "G\u00FCil\u00E1 Zapotec" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "zap", "Comments": [], "Prefix": [] @@ -84181,6 +92251,7 @@ "Zaachila Zapotec" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "zap", "Comments": [], "Prefix": [] @@ -84192,6 +92263,7 @@ "Yatee Zapotec" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "zap", "Comments": [], "Prefix": [] @@ -84203,6 +92275,7 @@ "Zeem" ], "Added": "2009-07-29", + "Scope": "None", "Deprecated": "2023-03-17", "Comments": [ "see cxh, dsk, dyr, tvi, zem" @@ -84216,6 +92289,7 @@ "Tokano" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -84226,6 +92300,7 @@ "Kumzari" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -84236,6 +92311,7 @@ "Zuni" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -84246,6 +92322,7 @@ "Zumaya" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -84256,6 +92333,7 @@ "Zay" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -84278,6 +92356,7 @@ "Yongbei Zhuang" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "za", "Comments": [], "Prefix": [] @@ -84289,6 +92368,7 @@ "Yang Zhuang" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "za", "Comments": [], "Prefix": [] @@ -84300,6 +92380,7 @@ "Youjiang Zhuang" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "za", "Comments": [], "Prefix": [] @@ -84311,6 +92392,7 @@ "Yongnan Zhuang" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "za", "Comments": [], "Prefix": [] @@ -84322,6 +92404,7 @@ "Zyphe Chin" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -84348,6 +92431,7 @@ "Zuojiang Zhuang" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "za", "Comments": [], "Prefix": [] @@ -84359,6 +92443,7 @@ "Algerian Saharan Arabic" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "ar", "Comments": [], "Prefix": [ @@ -84373,6 +92458,7 @@ "Tajiki Arabic" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "ar", "Comments": [], "Prefix": [ @@ -84387,6 +92473,7 @@ "Baharna Arabic" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "ar", "Comments": [], "Prefix": [ @@ -84401,6 +92488,7 @@ "Mesopotamian Arabic" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "ar", "Comments": [], "Prefix": [ @@ -84415,6 +92503,7 @@ "Ta\u0027izzi-Adeni Arabic" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "ar", "Comments": [], "Prefix": [ @@ -84429,6 +92518,7 @@ "Hijazi Arabic" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "ar", "Comments": [], "Prefix": [ @@ -84443,6 +92533,7 @@ "Omani Arabic" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "ar", "Comments": [], "Prefix": [ @@ -84457,6 +92548,7 @@ "Cypriot Arabic" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "ar", "Comments": [], "Prefix": [ @@ -84471,6 +92563,7 @@ "Dhofari Arabic" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "ar", "Comments": [], "Prefix": [ @@ -84485,6 +92578,7 @@ "Adamorobe Sign Language" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [ "sgn" @@ -84498,6 +92592,7 @@ "Tunisian Arabic" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "ar", "Comments": [], "Prefix": [ @@ -84512,6 +92607,7 @@ "Saidi Arabic" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "ar", "Comments": [], "Prefix": [ @@ -84526,6 +92622,7 @@ "Argentine Sign Language" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [ "sgn" @@ -84539,6 +92636,7 @@ "Armenian Sign Language" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [ "sgn" @@ -84552,6 +92650,7 @@ "Gulf Arabic" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "ar", "Comments": [], "Prefix": [ @@ -84566,6 +92665,7 @@ "Afghan Sign Language" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [ "sgn" @@ -84579,6 +92679,7 @@ "South Levantine Arabic" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "ar", "Deprecated": "2023-03-17", "Comments": [], @@ -84594,6 +92695,7 @@ "Algerian Jewish Sign Language" ], "Added": "2022-02-25", + "Scope": "None", "Comments": [], "Prefix": [ "sgn" @@ -84607,6 +92709,7 @@ "Levantine Arabic" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "ar", "Comments": [], "Prefix": [ @@ -84621,6 +92724,7 @@ "Sudanese Arabic" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "ar", "Comments": [], "Prefix": [ @@ -84635,6 +92739,7 @@ "Standard Arabic" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "ar", "Comments": [], "Prefix": [ @@ -84649,6 +92754,7 @@ "Algerian Arabic" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "ar", "Comments": [], "Prefix": [ @@ -84663,6 +92769,7 @@ "Najdi Arabic" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "ar", "Comments": [], "Prefix": [ @@ -84677,6 +92784,7 @@ "Moroccan Arabic" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "ar", "Comments": [], "Prefix": [ @@ -84691,6 +92799,7 @@ "Egyptian Arabic" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "ar", "Comments": [], "Prefix": [ @@ -84705,6 +92814,7 @@ "American Sign Language" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [ "sgn" @@ -84719,6 +92829,7 @@ "Australian Sign Language" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [ "sgn" @@ -84732,6 +92843,7 @@ "Algerian Sign Language" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [ "sgn" @@ -84745,6 +92857,7 @@ "Austrian Sign Language" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [ "sgn" @@ -84758,6 +92871,7 @@ "Australian Aborigines Sign Language" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [ "sgn" @@ -84771,6 +92885,7 @@ "Uzbeki Arabic" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "ar", "Comments": [], "Prefix": [ @@ -84785,6 +92900,7 @@ "Eastern Egyptian Bedawi Arabic" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "ar", "Comments": [], "Prefix": [ @@ -84799,6 +92915,7 @@ "Hadrami Arabic" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "ar", "Comments": [], "Prefix": [ @@ -84813,6 +92930,7 @@ "Libyan Arabic" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "ar", "Comments": [], "Prefix": [ @@ -84827,6 +92945,7 @@ "Sanaani Arabic" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "ar", "Comments": [], "Prefix": [ @@ -84841,6 +92960,7 @@ "North Mesopotamian Arabic" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "ar", "Comments": [], "Prefix": [ @@ -84855,6 +92975,7 @@ "Babalia Creole Arabic" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "ar", "Deprecated": "2020-03-28", "Comments": [], @@ -84870,6 +92991,7 @@ "British Sign Language" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [ "sgn" @@ -84883,6 +93005,7 @@ "Ban Khor Sign Language" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [ "sgn" @@ -84896,6 +93019,7 @@ "Banjar" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "ms", "Comments": [], "Prefix": [ @@ -84910,6 +93034,7 @@ "Bamako Sign Language" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [ "sgn" @@ -84923,6 +93048,7 @@ "Bulgarian Sign Language" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [ "sgn" @@ -84936,6 +93062,7 @@ "Bengkala Sign Language" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [ "sgn" @@ -84949,6 +93076,7 @@ "Bacanese Malay" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "ms", "Comments": [], "Prefix": [ @@ -84963,6 +93091,7 @@ "Berau Malay" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "ms", "Comments": [], "Prefix": [ @@ -84977,6 +93106,7 @@ "Bolivian Sign Language" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [ "sgn" @@ -84990,6 +93120,7 @@ "Bukit Malay" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "ms", "Comments": [], "Prefix": [ @@ -85004,6 +93135,7 @@ "Brazilian Sign Language" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [ "sgn" @@ -85017,6 +93149,7 @@ "Min Dong Chinese" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "zh", "Comments": [], "Prefix": [ @@ -85031,6 +93164,7 @@ "Chadian Sign Language" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [ "sgn" @@ -85044,6 +93178,7 @@ "Jinyu Chinese" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "zh", "Comments": [], "Prefix": [ @@ -85058,6 +93193,7 @@ "Mandarin Chinese" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "zh", "Comments": [], "Prefix": [ @@ -85073,6 +93209,7 @@ "Northern Pinghua" ], "Added": "2020-03-28", + "Scope": "None", "MacroLanguage": "zh", "Comments": [], "Prefix": [ @@ -85087,6 +93224,7 @@ "Cocos Islands Malay" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "ms", "Comments": [], "Prefix": [ @@ -85101,6 +93239,7 @@ "Pu-Xian Chinese" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "zh", "Comments": [], "Prefix": [ @@ -85117,6 +93256,7 @@ "Llengua de Signes Catalana" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [ "sgn" @@ -85130,6 +93270,7 @@ "Chiangmai Sign Language" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [ "sgn" @@ -85143,6 +93284,7 @@ "Czech Sign Language" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [ "sgn" @@ -85156,6 +93298,7 @@ "Cuba Sign Language" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [ "sgn" @@ -85169,6 +93312,7 @@ "Chilean Sign Language" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [ "sgn" @@ -85182,6 +93326,7 @@ "Chinese Sign Language" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [ "sgn" @@ -85195,6 +93340,7 @@ "Colombian Sign Language" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [ "sgn" @@ -85209,6 +93355,7 @@ "Southern Pinghua" ], "Added": "2020-03-28", + "Scope": "None", "MacroLanguage": "zh", "Comments": [], "Prefix": [ @@ -85223,6 +93370,7 @@ "Croatia Sign Language" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [ "sgn" @@ -85236,6 +93384,7 @@ "Costa Rican Sign Language" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [ "sgn" @@ -85249,6 +93398,7 @@ "Cambodian Sign Language" ], "Added": "2021-02-20", + "Scope": "None", "Comments": [], "Prefix": [ "sgn" @@ -85262,6 +93412,7 @@ "Huizhou Chinese" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "zh", "Comments": [], "Prefix": [ @@ -85276,6 +93427,7 @@ "Min Zhong Chinese" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "zh", "Comments": [], "Prefix": [ @@ -85290,6 +93442,7 @@ "Dominican Sign Language" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [ "sgn" @@ -85303,6 +93456,7 @@ "Dutch Sign Language" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [ "sgn" @@ -85316,6 +93470,7 @@ "Danish Sign Language" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [ "sgn" @@ -85329,6 +93484,7 @@ "Mardin Sign Language" ], "Added": "2022-02-25", + "Scope": "None", "Comments": [], "Prefix": [ "sgn" @@ -85342,6 +93498,7 @@ "Duano" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "ms", "Comments": [], "Prefix": [ @@ -85356,6 +93513,7 @@ "Ecuadorian Sign Language" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [ "sgn" @@ -85369,6 +93527,7 @@ "Miyakubo Sign Language" ], "Added": "2021-02-20", + "Scope": "None", "Comments": [], "Prefix": [ "sgn" @@ -85382,6 +93541,7 @@ "Egypt Sign Language" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [ "sgn" @@ -85395,6 +93555,7 @@ "Salvadoran Sign Language" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [ "sgn" @@ -85408,6 +93569,7 @@ "Estonian Sign Language" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [ "sgn" @@ -85421,6 +93583,7 @@ "Ethiopian Sign Language" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [ "sgn" @@ -85434,6 +93597,7 @@ "Quebec Sign Language" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [ "sgn" @@ -85447,6 +93611,7 @@ "Finnish Sign Language" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [ "sgn" @@ -85460,6 +93625,7 @@ "French Sign Language" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [ "sgn" @@ -85475,6 +93641,7 @@ "suomenruotsalainen viittomakieli" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [ "sgn" @@ -85488,6 +93655,7 @@ "Gan Chinese" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "zh", "Comments": [], "Prefix": [ @@ -85502,6 +93670,7 @@ "Ghandruk Sign Language" ], "Added": "2012-08-12", + "Scope": "None", "Comments": [], "Prefix": [ "sgn" @@ -85515,6 +93684,7 @@ "Goan Konkani" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "kok", "Comments": [], "Prefix": [ @@ -85529,6 +93699,7 @@ "Ghanaian Sign Language" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [ "sgn" @@ -85542,6 +93713,7 @@ "German Sign Language" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [ "sgn" @@ -85555,6 +93727,7 @@ "Guatemalan Sign Language" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [ "sgn" @@ -85568,6 +93741,7 @@ "Greek Sign Language" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [ "sgn" @@ -85581,6 +93755,7 @@ "Guinean Sign Language" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [ "sgn" @@ -85594,6 +93769,7 @@ "Hanoi Sign Language" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [ "sgn" @@ -85607,6 +93783,7 @@ "Haiphong Sign Language" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [ "sgn" @@ -85620,6 +93797,7 @@ "Hakka Chinese" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "zh", "Comments": [], "Prefix": [ @@ -85634,6 +93812,7 @@ "Honduras Sign Language" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [ "sgn" @@ -85647,6 +93826,7 @@ "Haji" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "ms", "Comments": [], "Prefix": [ @@ -85662,6 +93842,7 @@ "Heung Kong Sau Yue" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [ "sgn" @@ -85675,6 +93856,7 @@ "Hainanese" ], "Added": "2024-12-12", + "Scope": "None", "MacroLanguage": "zh", "Comments": [], "Prefix": [ @@ -85689,6 +93871,7 @@ "Ho Chi Minh City Sign Language" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [ "sgn" @@ -85703,6 +93886,7 @@ "Hawai\u0027i Pidgin Sign Language" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [ "sgn" @@ -85716,6 +93900,7 @@ "Hungarian Sign Language" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [ "sgn" @@ -85729,6 +93914,7 @@ "Hausa Sign Language" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [ "sgn" @@ -85742,6 +93928,7 @@ "Xiang Chinese" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "zh", "Comments": [], "Prefix": [ @@ -85756,6 +93943,7 @@ "Icelandic Sign Language" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [ "sgn" @@ -85769,6 +93957,7 @@ "Inuit Sign Language" ], "Added": "2015-02-12", + "Scope": "None", "Comments": [], "Prefix": [ "sgn" @@ -85782,6 +93971,7 @@ "International Sign" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [ "sgn" @@ -85795,6 +93985,7 @@ "Indonesian Sign Language" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [ "sgn" @@ -85808,6 +93999,7 @@ "Indian Sign Language" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [ "sgn" @@ -85821,6 +94013,7 @@ "Italian Sign Language" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [ "sgn" @@ -85834,6 +94027,7 @@ "Irish Sign Language" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [ "sgn" @@ -85847,6 +94041,7 @@ "Israeli Sign Language" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [ "sgn" @@ -85860,6 +94055,7 @@ "Jakun" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "ms", "Comments": [], "Prefix": [ @@ -85874,6 +94070,7 @@ "Jambi Malay" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "ms", "Comments": [], "Prefix": [ @@ -85888,6 +94085,7 @@ "Jamaican Country Sign Language" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [ "sgn" @@ -85901,6 +94099,7 @@ "Jhankot Sign Language" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [ "sgn" @@ -85914,6 +94113,7 @@ "Amami Koniya Sign Language" ], "Added": "2021-02-20", + "Scope": "None", "Comments": [], "Prefix": [ "sgn" @@ -85927,6 +94127,7 @@ "Jamaican Sign Language" ], "Added": "2010-03-11", + "Scope": "None", "Comments": [], "Prefix": [ "sgn" @@ -85940,6 +94141,7 @@ "Jordanian Sign Language" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [ "sgn" @@ -85953,6 +94155,7 @@ "Japanese Sign Language" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [ "sgn" @@ -85966,6 +94169,7 @@ "Jumla Sign Language" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [ "sgn" @@ -85979,6 +94183,7 @@ "Selangor Sign Language" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [ "sgn" @@ -85992,6 +94197,7 @@ "Konkani (individual language)" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "kok", "Comments": [], "Prefix": [ @@ -86006,6 +94212,7 @@ "Kubu" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "ms", "Comments": [], "Prefix": [ @@ -86020,6 +94227,7 @@ "Korean Sign Language" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [ "sgn" @@ -86033,6 +94241,7 @@ "Kerinci" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "ms", "Comments": [], "Prefix": [ @@ -86047,6 +94256,7 @@ "Brunei" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "ms", "Comments": [], "Prefix": [ @@ -86061,6 +94271,7 @@ "Libyan Sign Language" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [ "sgn" @@ -86075,6 +94286,7 @@ "Sekak" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "ms", "Comments": [], "Prefix": [ @@ -86089,6 +94301,7 @@ "Lubu" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "ms", "Comments": [], "Prefix": [ @@ -86104,6 +94317,7 @@ "L\u00EDngua Gestual Guineense" ], "Added": "2023-03-17", + "Scope": "None", "Comments": [], "Prefix": [ "sgn" @@ -86117,6 +94331,7 @@ "Col" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "ms", "Comments": [], "Prefix": [ @@ -86131,6 +94346,7 @@ "Lithuanian Sign Language" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [ "sgn" @@ -86145,6 +94361,7 @@ "Langue des Signes Burundaise" ], "Added": "2021-02-20", + "Scope": "None", "Comments": [], "Prefix": [ "sgn" @@ -86159,6 +94376,7 @@ "Lengua de se\u00F1as Albarradas" ], "Added": "2022-02-25", + "Scope": "None", "Comments": [], "Prefix": [ "sgn" @@ -86172,6 +94390,7 @@ "Lyons Sign Language" ], "Added": "2009-07-29", + "Scope": "None", "Deprecated": "2018-03-08", "Comments": [], "Prefix": [ @@ -86186,6 +94405,7 @@ "Latvian Sign Language" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [ "sgn" @@ -86199,6 +94419,7 @@ "Tibetan Sign Language" ], "Added": "2019-04-16", + "Scope": "None", "Comments": [], "Prefix": [ "sgn" @@ -86212,6 +94433,7 @@ "Laos Sign Language" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [ "sgn" @@ -86226,6 +94448,7 @@ "Lengua de Se\u00F1as Paname\u00F1as" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [ "sgn" @@ -86239,6 +94462,7 @@ "Trinidad and Tobago Sign Language" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [ "sgn" @@ -86252,6 +94476,7 @@ "Sivia Sign Language" ], "Added": "2019-04-16", + "Scope": "None", "Comments": [], "Prefix": [ "sgn" @@ -86267,6 +94492,7 @@ "Langue des Signes Seychelloise" ], "Added": "2022-02-25", + "Scope": "None", "Comments": [], "Prefix": [ "sgn" @@ -86280,6 +94506,7 @@ "Mauritian Sign Language" ], "Added": "2010-03-11", + "Scope": "None", "Comments": [], "Prefix": [ "sgn" @@ -86293,6 +94520,7 @@ "Latgalian" ], "Added": "2010-03-11", + "Scope": "None", "MacroLanguage": "lv", "Comments": [], "Prefix": [ @@ -86307,6 +94535,7 @@ "Leizhou Chinese" ], "Added": "2024-12-12", + "Scope": "None", "MacroLanguage": "zh", "Comments": [], "Prefix": [ @@ -86321,6 +94550,7 @@ "Standard Latvian" ], "Added": "2010-03-11", + "Scope": "None", "MacroLanguage": "lv", "Comments": [], "Prefix": [ @@ -86335,6 +94565,7 @@ "Malawian Sign Language" ], "Added": "2018-03-08", + "Scope": "None", "Comments": [], "Prefix": [ "sgn" @@ -86348,6 +94579,7 @@ "Literary Chinese" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "zh", "Comments": [], "Prefix": [ @@ -86362,6 +94594,7 @@ "North Moluccan Malay" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "ms", "Comments": [], "Prefix": [ @@ -86376,6 +94609,7 @@ "Maltese Sign Language" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [ "sgn" @@ -86389,6 +94623,7 @@ "Kedah Malay" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "ms", "Comments": [], "Prefix": [ @@ -86403,6 +94638,7 @@ "Pattani Malay" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "ms", "Comments": [], "Prefix": [ @@ -86417,6 +94653,7 @@ "Bangka" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "ms", "Comments": [], "Prefix": [ @@ -86431,6 +94668,7 @@ "Mexican Sign Language" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [ "sgn" @@ -86444,6 +94682,7 @@ "Minangkabau" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "ms", "Comments": [], "Prefix": [ @@ -86458,6 +94697,7 @@ "Min Bei Chinese" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "zh", "Comments": [], "Prefix": [ @@ -86472,6 +94712,7 @@ "Kota Bangun Kutai Malay" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "ms", "Comments": [], "Prefix": [ @@ -86486,6 +94727,7 @@ "Martha\u0027s Vineyard Sign Language" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [ "sgn" @@ -86499,6 +94741,7 @@ "Yucatec Maya Sign Language" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [ "sgn" @@ -86512,6 +94755,7 @@ "Sabah Malay" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "ms", "Comments": [], "Prefix": [ @@ -86526,6 +94770,7 @@ "Mongolian Sign Language" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [ "sgn" @@ -86539,6 +94784,7 @@ "Musi" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "ms", "Comments": [], "Prefix": [ @@ -86553,6 +94799,7 @@ "Madagascar Sign Language" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [ "sgn" @@ -86566,6 +94813,7 @@ "Monastic Sign Language" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [ "sgn" @@ -86579,6 +94827,7 @@ "Mozambican Sign Language" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [ "sgn" @@ -86592,6 +94841,7 @@ "Min Nan Chinese" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "zh", "Comments": [], "Prefix": [ @@ -86606,6 +94856,7 @@ "Namibian Sign Language" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [ "sgn" @@ -86619,6 +94870,7 @@ "Nicaraguan Sign Language" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [ "sgn" @@ -86632,6 +94884,7 @@ "Nigerian Sign Language" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [ "sgn" @@ -86645,6 +94898,7 @@ "Norwegian Sign Language" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [ "sgn" @@ -86658,6 +94912,7 @@ "Nepalese Sign Language" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [ "sgn" @@ -86671,6 +94926,7 @@ "Maritime Sign Language" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [ "sgn" @@ -86684,6 +94940,7 @@ "New Zealand Sign Language" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [ "sgn" @@ -86697,6 +94954,7 @@ "Old Kentish Sign Language" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [ "sgn" @@ -86710,6 +94968,7 @@ "Orang Kanaq" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "ms", "Comments": [], "Prefix": [ @@ -86724,6 +94983,7 @@ "Orang Seletar" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "ms", "Comments": [], "Prefix": [ @@ -86738,6 +94998,7 @@ "Pekal" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "ms", "Comments": [], "Prefix": [ @@ -86752,6 +95013,7 @@ "Sudanese Creole Arabic" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "ar", "Comments": [], "Prefix": [ @@ -86766,6 +95028,7 @@ "Papua New Guinean Sign Language" ], "Added": "2016-05-30", + "Scope": "None", "Comments": [], "Prefix": [ "sgn" @@ -86779,6 +95042,7 @@ "Pakistan Sign Language" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [ "sgn" @@ -86792,6 +95056,7 @@ "Peruvian Sign Language" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [ "sgn" @@ -86805,6 +95070,7 @@ "Providencia Sign Language" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [ "sgn" @@ -86819,6 +95085,7 @@ "Persian Sign Language" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [ "sgn" @@ -86832,6 +95099,7 @@ "Plains Indian Sign Language" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [ "sgn" @@ -86845,6 +95113,7 @@ "Central Malay" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "ms", "Comments": [], "Prefix": [ @@ -86859,6 +95128,7 @@ "Penang Sign Language" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [ "sgn" @@ -86872,6 +95142,7 @@ "Puerto Rican Sign Language" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [ "sgn" @@ -86885,6 +95156,7 @@ "Polish Sign Language" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [ "sgn" @@ -86898,6 +95170,7 @@ "Philippine Sign Language" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [ "sgn" @@ -86911,6 +95184,7 @@ "Portuguese Sign Language" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [ "sgn" @@ -86925,6 +95199,7 @@ "Lengua de Se\u00F1as del Paraguay" ], "Added": "2010-03-11", + "Scope": "None", "Comments": [], "Prefix": [ "sgn" @@ -86938,6 +95213,7 @@ "Bribri Sign Language" ], "Added": "2022-02-25", + "Scope": "None", "Comments": [], "Prefix": [ "sgn" @@ -86951,6 +95227,7 @@ "Romanian Sign Language" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [ "sgn" @@ -86964,6 +95241,7 @@ "Brunca Sign Language" ], "Added": "2022-02-25", + "Scope": "None", "Comments": [], "Prefix": [ "sgn" @@ -86977,6 +95255,7 @@ "Rennellese Sign Language" ], "Added": "2009-07-29", + "Scope": "None", "Deprecated": "2017-02-23", "Comments": [], "Prefix": [ @@ -86991,6 +95270,7 @@ "Russian Sign Language" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [ "sgn" @@ -87004,6 +95284,7 @@ "Miriwoong Sign Language" ], "Added": "2016-05-30", + "Scope": "None", "Comments": [], "Prefix": [ "sgn" @@ -87017,6 +95298,7 @@ "Rwandan Sign Language" ], "Added": "2022-02-25", + "Scope": "None", "Comments": [], "Prefix": [ "sgn" @@ -87030,6 +95312,7 @@ "Saudi Arabian Sign Language" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [ "sgn" @@ -87044,6 +95327,7 @@ "French Belgian Sign Language" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [ "sgn" @@ -87057,6 +95341,7 @@ "South African Sign Language" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [ "sgn" @@ -87070,6 +95355,7 @@ "Swiss-German Sign Language" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [ "sgn" @@ -87083,6 +95369,7 @@ "Sierra Leone Sign Language" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [ "sgn" @@ -87096,6 +95383,7 @@ "Chadian Arabic" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "ar", "Comments": [], "Prefix": [ @@ -87110,6 +95398,7 @@ "Shaojiang Chinese" ], "Added": "2024-12-12", + "Scope": "None", "MacroLanguage": "zh", "Comments": [], "Prefix": [ @@ -87124,6 +95413,7 @@ "Swiss-Italian Sign Language" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [ "sgn" @@ -87137,6 +95427,7 @@ "Singapore Sign Language" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [ "sgn" @@ -87150,6 +95441,7 @@ "Albanian Sign Language" ], "Added": "2012-08-12", + "Scope": "None", "Comments": [], "Prefix": [ "sgn" @@ -87163,6 +95455,7 @@ "Sri Lankan Sign Language" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [ "sgn" @@ -87176,6 +95469,7 @@ "Kufr Qassem Sign Language (KQSL)" ], "Added": "2021-02-20", + "Scope": "None", "Comments": [], "Prefix": [ "sgn" @@ -87189,6 +95483,7 @@ "Shihhi Arabic" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "ar", "Comments": [], "Prefix": [ @@ -87203,6 +95498,7 @@ "Spanish Sign Language" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [ "sgn" @@ -87216,6 +95512,7 @@ "Swiss-French Sign Language" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [ "sgn" @@ -87229,6 +95526,7 @@ "Slovakian Sign Language" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [ "sgn" @@ -87242,6 +95540,7 @@ "Congo Swahili" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "sw", "Comments": [], "Prefix": [ @@ -87257,6 +95556,7 @@ "Kiswahili" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "sw", "Comments": [], "Prefix": [ @@ -87271,6 +95571,7 @@ "Swedish Sign Language" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [ "sgn" @@ -87284,6 +95585,7 @@ "Al-Sayyid Bedouin Sign Language" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [ "sgn" @@ -87297,6 +95599,7 @@ "Solomon Islands Sign Language" ], "Added": "2017-02-23", + "Scope": "None", "Comments": [], "Prefix": [ "sgn" @@ -87310,6 +95613,7 @@ "Temuan" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "ms", "Comments": [], "Prefix": [ @@ -87324,6 +95628,7 @@ "Tunisian Sign Language" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [ "sgn" @@ -87338,6 +95643,7 @@ "T\u00FCrk \u0130\u015Faret Dili" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [ "sgn" @@ -87351,6 +95657,7 @@ "Thai Sign Language" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [ "sgn" @@ -87364,6 +95671,7 @@ "Taiwan Sign Language" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [ "sgn" @@ -87377,6 +95685,7 @@ "Tebul Sign Language" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [ "sgn" @@ -87390,6 +95699,7 @@ "Tanzanian Sign Language" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [ "sgn" @@ -87403,6 +95713,7 @@ "Ugandan Sign Language" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [ "sgn" @@ -87416,6 +95727,7 @@ "Uruguayan Sign Language" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [ "sgn" @@ -87429,6 +95741,7 @@ "Ukrainian Sign Language" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [ "sgn" @@ -87443,6 +95756,7 @@ "Kaapor Sign Language" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [ "sgn" @@ -87456,6 +95770,7 @@ "Urak Lawoi\u0027" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "ms", "Comments": [], "Prefix": [ @@ -87470,6 +95785,7 @@ "Northern Uzbek" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "uz", "Comments": [], "Prefix": [ @@ -87484,6 +95800,7 @@ "Southern Uzbek" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "uz", "Comments": [], "Prefix": [ @@ -87499,6 +95816,7 @@ "Flemish Sign Language" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [ "sgn" @@ -87512,6 +95830,7 @@ "Kaur" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "ms", "Comments": [], "Prefix": [ @@ -87526,6 +95845,7 @@ "Tenggarong Kutai Malay" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "ms", "Comments": [], "Prefix": [ @@ -87540,6 +95860,7 @@ "Moldova Sign Language" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [ "sgn" @@ -87553,6 +95874,7 @@ "Venezuelan Sign Language" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [ "sgn" @@ -87567,6 +95889,7 @@ "Llengua de signes valenciana" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [ "sgn" @@ -87580,6 +95903,7 @@ "West Bengal Sign Language" ], "Added": "2017-02-23", + "Scope": "None", "Comments": [], "Prefix": [ "sgn" @@ -87593,6 +95917,7 @@ "Wu Chinese" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "zh", "Comments": [], "Prefix": [ @@ -87607,6 +95932,7 @@ "Kenyan Sign Language" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [ "sgn" @@ -87620,6 +95946,7 @@ "Malaysian Sign Language" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [ "sgn" @@ -87633,6 +95960,7 @@ "Manado Malay" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "ms", "Comments": [], "Prefix": [ @@ -87647,6 +95975,7 @@ "Moroccan Sign Language" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [ "sgn" @@ -87660,6 +95989,7 @@ "Yiddish Sign Language" ], "Added": "2009-07-29", + "Scope": "None", "Deprecated": "2015-02-12", "Comments": [], "Prefix": [ @@ -87674,6 +96004,7 @@ "Yol\u014Bu Sign Language" ], "Added": "2014-02-28", + "Scope": "None", "Comments": [], "Prefix": [ "sgn" @@ -87687,6 +96018,7 @@ "Yan-nha\u014Bu Sign Language" ], "Added": "2015-04-17", + "Scope": "None", "Comments": [], "Prefix": [ "sgn" @@ -87700,6 +96032,7 @@ "Yugoslavian Sign Language" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [ "sgn" @@ -87713,6 +96046,7 @@ "Myanmar Sign Language" ], "Added": "2021-02-20", + "Scope": "None", "Comments": [], "Prefix": [ "sgn" @@ -87727,6 +96061,7 @@ "Cantonese" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "zh", "Comments": [], "Prefix": [ @@ -87741,6 +96076,7 @@ "Zimbabwe Sign Language" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [ "sgn" @@ -87754,6 +96090,7 @@ "Malay (individual language)" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "ms", "Comments": [], "Prefix": [ @@ -87768,6 +96105,7 @@ "Negeri Sembilan Malay" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "ms", "Comments": [], "Prefix": [ @@ -87782,6 +96120,7 @@ "Zambian Sign Language" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [ "sgn" @@ -87795,6 +96134,7 @@ "Standard Malay" ], "Added": "2009-07-29", + "Scope": "None", "MacroLanguage": "ms", "Comments": [], "Prefix": [ @@ -87809,6 +96149,7 @@ "Adlam" ], "Added": "2014-12-11", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -87819,6 +96160,7 @@ "Afaka" ], "Added": "2011-01-07", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -87829,6 +96171,7 @@ "Caucasian Albanian" ], "Added": "2012-11-01", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -87840,6 +96183,7 @@ "Tai Ahom" ], "Added": "2013-12-02", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -87850,6 +96194,7 @@ "Arabic" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -87860,6 +96205,7 @@ "Arabic (Nastaliq variant)" ], "Added": "2014-12-11", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -87870,6 +96216,7 @@ "Imperial Aramaic" ], "Added": "2007-12-05", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -87880,6 +96227,7 @@ "Armenian" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -87890,6 +96238,7 @@ "Avestan" ], "Added": "2007-07-28", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -87900,6 +96249,7 @@ "Balinese" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -87910,6 +96260,7 @@ "Bamum" ], "Added": "2009-07-30", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -87920,6 +96271,7 @@ "Bassa Vah" ], "Added": "2010-04-10", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -87930,6 +96282,7 @@ "Batak" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -87941,6 +96294,7 @@ "Bangla" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -87951,6 +96305,7 @@ "Beria Erfe" ], "Added": "2025-02-06", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -87961,6 +96316,7 @@ "Bhaiksuki" ], "Added": "2015-07-24", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -87971,6 +96327,7 @@ "Blissymbols" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -87981,6 +96338,7 @@ "Bopomofo" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -87991,6 +96349,7 @@ "Brahmi" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -88001,6 +96360,7 @@ "Braille" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -88011,6 +96371,7 @@ "Buginese" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -88021,6 +96382,7 @@ "Buhid" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -88031,6 +96393,7 @@ "Chakma" ], "Added": "2007-12-05", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -88041,6 +96404,7 @@ "Unified Canadian Aboriginal Syllabics" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -88051,6 +96415,7 @@ "Carian" ], "Added": "2006-07-21", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -88061,6 +96426,7 @@ "Cham" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -88071,6 +96437,7 @@ "Cherokee" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -88081,6 +96448,7 @@ "Chisoi" ], "Added": "2023-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -88091,6 +96459,7 @@ "Chorasmian" ], "Added": "2019-09-11", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -88101,6 +96470,7 @@ "Cirth" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -88111,6 +96481,7 @@ "Coptic" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -88121,6 +96492,7 @@ "Cypro-Minoan" ], "Added": "2017-08-13", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -88131,6 +96503,7 @@ "Cypriot syllabary" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -88141,6 +96514,7 @@ "Cyrillic" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -88151,6 +96525,7 @@ "Cyrillic (Old Church Slavonic variant)" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -88162,6 +96537,7 @@ "Nagari" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -88172,6 +96548,7 @@ "Dives Akuru" ], "Added": "2019-09-11", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -88182,6 +96559,7 @@ "Dogra" ], "Added": "2017-01-13", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -88193,6 +96571,7 @@ "Mormon" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -88204,6 +96583,7 @@ "Duployan stenography" ], "Added": "2010-08-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -88214,6 +96594,7 @@ "Egyptian demotic" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -88224,6 +96605,7 @@ "Egyptian hieratic" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -88234,6 +96616,7 @@ "Egyptian hieroglyphs" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -88244,6 +96627,7 @@ "Elbasan" ], "Added": "2010-08-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -88254,6 +96638,7 @@ "Elymaic" ], "Added": "2018-10-28", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -88266,6 +96651,7 @@ "Ge\u0027ez" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -88276,6 +96662,7 @@ "Garay" ], "Added": "2023-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -88286,6 +96673,7 @@ "Khutsuri (Asomtavruli and Nuskhuri)" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -88296,6 +96684,7 @@ "Georgian (Mkhedruli and Mtavruli)" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -88306,6 +96695,7 @@ "Glagolitic" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -88316,6 +96706,7 @@ "Gunjala Gondi" ], "Added": "2017-01-13", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -88326,6 +96717,7 @@ "Masaram Gondi" ], "Added": "2017-01-13", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -88336,6 +96728,7 @@ "Gothic" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -88346,6 +96739,7 @@ "Grantha" ], "Added": "2009-12-09", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -88356,6 +96750,7 @@ "Greek" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -88366,6 +96761,7 @@ "Gujarati" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -88376,6 +96772,7 @@ "Gurung Khema" ], "Added": "2023-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -88386,6 +96783,7 @@ "Gurmukhi" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -88396,6 +96794,7 @@ "Han with Bopomofo (alias for Han \u002B Bopomofo)" ], "Added": "2016-02-08", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -88408,6 +96807,7 @@ "Hangeul" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -88421,6 +96821,7 @@ "Hanja" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -88432,6 +96833,7 @@ "Hanun\u00F3o" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -88442,6 +96844,7 @@ "Han (Simplified variant)" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -88452,6 +96855,7 @@ "Han (Traditional variant)" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -88462,6 +96866,7 @@ "Hatran" ], "Added": "2013-12-02", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -88472,6 +96877,7 @@ "Hebrew" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -88482,6 +96888,7 @@ "Hiragana" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -88494,6 +96901,7 @@ "Hittite Hieroglyphs" ], "Added": "2011-12-28", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -88504,6 +96912,7 @@ "Pahawh Hmong" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -88514,6 +96923,7 @@ "Nyiakeng Puachue Hmong" ], "Added": "2017-08-13", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -88524,6 +96934,7 @@ "Han (Traditional variant) with Latin (alias for Hant \u002B Latn)" ], "Added": "2025-05-14", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -88534,6 +96945,7 @@ "Japanese syllabaries (alias for Hiragana \u002B Katakana)" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -88545,6 +96957,7 @@ "Hungarian Runic" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -88556,6 +96969,7 @@ "Harappan" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -88566,6 +96980,7 @@ "Old Italic (Etruscan, Oscan, etc.)" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -88576,6 +96991,7 @@ "Jamo (alias for Jamo subset of Hangul)" ], "Added": "2016-02-08", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -88586,6 +97002,7 @@ "Javanese" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -88596,6 +97013,7 @@ "Japanese (alias for Han \u002B Hiragana \u002B Katakana)" ], "Added": "2006-07-21", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -88606,6 +97024,7 @@ "Jurchen" ], "Added": "2011-01-07", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -88616,6 +97035,7 @@ "Kayah Li" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -88626,6 +97046,7 @@ "Katakana" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -88636,6 +97057,7 @@ "Kawi" ], "Added": "2021-12-24", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -88646,6 +97068,7 @@ "Kharoshthi" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -88656,6 +97079,7 @@ "Khmer" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -88666,6 +97090,7 @@ "Khojki" ], "Added": "2011-08-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -88676,6 +97101,7 @@ "Khitan large script" ], "Added": "2014-12-11", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -88686,6 +97112,7 @@ "Khitan small script" ], "Added": "2014-12-11", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -88696,6 +97123,7 @@ "Kannada" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -88706,6 +97134,7 @@ "Korean (alias for Hangul \u002B Han)" ], "Added": "2007-07-05", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -88716,6 +97145,7 @@ "Kpelle" ], "Added": "2010-04-10", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -88726,6 +97156,7 @@ "Kirat Rai" ], "Added": "2023-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -88736,6 +97167,7 @@ "Kaithi" ], "Added": "2007-12-05", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -88747,6 +97179,7 @@ "Lanna" ], "Added": "2006-07-21", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -88757,6 +97190,7 @@ "Lao" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -88767,6 +97201,7 @@ "Latin (Fraktur variant)" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -88777,6 +97212,7 @@ "Latin (Gaelic variant)" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -88787,6 +97223,7 @@ "Latin" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -88797,6 +97234,7 @@ "Leke" ], "Added": "2015-07-24", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -88808,6 +97246,7 @@ "R\u00F3ng" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -88818,6 +97257,7 @@ "Limbu" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -88828,6 +97268,7 @@ "Linear A" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -88838,6 +97279,7 @@ "Linear B" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -88849,6 +97291,7 @@ "Fraser" ], "Added": "2009-03-13", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -88859,6 +97302,7 @@ "Loma" ], "Added": "2010-04-10", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -88869,6 +97313,7 @@ "Lycian" ], "Added": "2006-07-21", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -88879,6 +97324,7 @@ "Lydian" ], "Added": "2006-07-21", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -88889,6 +97335,7 @@ "Mahajani" ], "Added": "2012-11-01", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -88899,6 +97346,7 @@ "Makasar" ], "Added": "2017-01-13", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -88910,6 +97358,7 @@ "Mandaean" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -88920,6 +97369,7 @@ "Manichaean" ], "Added": "2007-07-28", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -88930,6 +97380,7 @@ "Marchen" ], "Added": "2014-12-11", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -88940,6 +97391,7 @@ "Mayan hieroglyphs" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -88952,6 +97404,7 @@ "Oberi \u0186kaim\u025B" ], "Added": "2017-01-13", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -88962,6 +97415,7 @@ "Mende Kikakui" ], "Added": "2010-04-10", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -88972,6 +97426,7 @@ "Meroitic Cursive" ], "Added": "2009-12-09", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -88982,6 +97437,7 @@ "Meroitic Hieroglyphs" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -88992,6 +97448,7 @@ "Malayalam" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -89003,6 +97460,7 @@ "Mo\u1E0D\u012B" ], "Added": "2013-12-02", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -89013,6 +97471,7 @@ "Mongolian" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -89026,6 +97485,7 @@ "Moon type" ], "Added": "2007-01-26", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -89037,6 +97497,7 @@ "Mru" ], "Added": "2011-01-07", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -89049,6 +97510,7 @@ "Meetei" ], "Added": "2007-01-26", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -89059,6 +97521,7 @@ "Multani" ], "Added": "2013-12-02", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -89070,6 +97533,7 @@ "Burmese" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -89080,6 +97544,7 @@ "Nag Mundari" ], "Added": "2021-12-24", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -89090,6 +97555,7 @@ "Nandinagari" ], "Added": "2018-10-28", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -89101,6 +97567,7 @@ "Ancient North Arabian" ], "Added": "2010-04-10", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -89111,6 +97578,7 @@ "Nabataean" ], "Added": "2010-04-10", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -89124,6 +97592,7 @@ "Nep\u0101la lipi" ], "Added": "2016-01-04", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -89136,6 +97605,7 @@ "Nakhi Tomba" ], "Added": "2017-08-13", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -89149,6 +97619,7 @@ "Nakhi Geba" ], "Added": "2009-03-13", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -89160,6 +97631,7 @@ "N\u0027Ko" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -89170,6 +97642,7 @@ "N\u00FCshu" ], "Added": "2011-01-07", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -89180,6 +97653,7 @@ "Ogham" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -89193,6 +97667,7 @@ "Santali" ], "Added": "2006-07-21", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -89203,6 +97678,7 @@ "Ol Onal" ], "Added": "2023-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -89214,6 +97690,7 @@ "Orkhon Runic" ], "Added": "2009-07-30", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -89225,6 +97702,7 @@ "Odia" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -89235,6 +97713,7 @@ "Osage" ], "Added": "2014-12-11", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -89245,6 +97724,7 @@ "Osmanya" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -89255,6 +97735,7 @@ "Old Uyghur" ], "Added": "2021-02-12", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -89265,6 +97746,7 @@ "Palmyrene" ], "Added": "2010-04-10", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -89275,6 +97757,7 @@ "Pau Cin Hau" ], "Added": "2013-12-02", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -89285,6 +97768,7 @@ "Proto-Cuneiform" ], "Added": "2021-02-12", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -89295,6 +97779,7 @@ "Proto-Elamite" ], "Added": "2021-02-12", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -89305,6 +97790,7 @@ "Old Permic" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -89315,6 +97801,7 @@ "Phags-pa" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -89325,6 +97812,7 @@ "Inscriptional Pahlavi" ], "Added": "2007-12-05", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -89335,6 +97823,7 @@ "Psalter Pahlavi" ], "Added": "2007-12-05", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -89345,6 +97834,7 @@ "Book Pahlavi" ], "Added": "2007-07-28", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -89355,6 +97845,7 @@ "Phoenician" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -89365,6 +97856,7 @@ "Klingon (KLI pIqaD)" ], "Added": "2016-01-04", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -89376,6 +97868,7 @@ "Pollard" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -89386,6 +97879,7 @@ "Inscriptional Parthian" ], "Added": "2007-12-05", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -89396,6 +97890,7 @@ "Proto-Sinaitic" ], "Added": "2021-02-12", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -89406,6 +97901,7 @@ "Private use" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -89416,6 +97912,7 @@ "Ranjana" ], "Added": "2021-02-12", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -89428,6 +97925,7 @@ "Kaganga" ], "Added": "2006-10-17", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -89438,6 +97936,7 @@ "Hanifi Rohingya" ], "Added": "2017-12-13", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -89448,6 +97947,7 @@ "Rongorongo" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -89458,6 +97958,7 @@ "Runic" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -89468,6 +97969,7 @@ "Samaritan" ], "Added": "2007-07-28", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -89478,6 +97980,7 @@ "Sarati" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -89488,6 +97991,7 @@ "Old South Arabian" ], "Added": "2009-07-30", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -89498,6 +98002,7 @@ "Saurashtra" ], "Added": "2006-07-21", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -89509,6 +98014,7 @@ "Small Seal" ], "Added": "2025-05-14", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -89519,6 +98025,7 @@ "SignWriting" ], "Added": "2006-10-17", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -89530,6 +98037,7 @@ "Shaw" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -89541,6 +98049,7 @@ "\u015A\u0101rad\u0101" ], "Added": "2011-01-07", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -89551,6 +98060,7 @@ "Shuishu" ], "Added": "2017-08-13", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -89563,6 +98073,7 @@ "Siddham\u0101t\u1E5Bk\u0101" ], "Added": "2013-12-02", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -89573,6 +98084,7 @@ "Sidetic" ], "Added": "2023-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -89584,6 +98096,7 @@ "Sindhi" ], "Added": "2010-08-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -89594,6 +98107,7 @@ "Sinhala" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -89604,6 +98118,7 @@ "Sogdian" ], "Added": "2017-12-13", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -89614,6 +98129,7 @@ "Old Sogdian" ], "Added": "2017-12-13", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -89624,6 +98140,7 @@ "Sora Sompeng" ], "Added": "2011-01-07", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -89634,6 +98151,7 @@ "Soyombo" ], "Added": "2017-01-13", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -89644,6 +98162,7 @@ "Sundanese" ], "Added": "2006-07-21", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -89654,6 +98173,7 @@ "Sunuwar" ], "Added": "2021-12-24", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -89664,6 +98184,7 @@ "Syloti Nagri" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -89674,6 +98195,7 @@ "Syriac" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -89684,6 +98206,7 @@ "Syriac (Estrangelo variant)" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -89694,6 +98217,7 @@ "Syriac (Western variant)" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -89704,6 +98228,7 @@ "Syriac (Eastern variant)" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -89714,6 +98239,7 @@ "Tagbanwa" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -89726,6 +98252,7 @@ "\u1E6C\u0101\u1E45kr\u012B" ], "Added": "2011-01-07", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -89736,6 +98263,7 @@ "Tai Le" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -89746,6 +98274,7 @@ "New Tai Lue" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -89756,6 +98285,7 @@ "Tamil" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -89766,6 +98296,7 @@ "Tangut" ], "Added": "2011-01-07", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -89776,6 +98307,7 @@ "Tai Viet" ], "Added": "2007-12-05", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -89786,6 +98318,7 @@ "Tai Yo" ], "Added": "2023-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -89796,6 +98329,7 @@ "Telugu" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -89806,6 +98340,7 @@ "Tengwar" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -89817,6 +98352,7 @@ "Berber" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -89829,6 +98365,7 @@ "Alibata" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -89839,6 +98376,7 @@ "Thaana" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -89849,6 +98387,7 @@ "Thai" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -89859,6 +98398,7 @@ "Tibetan" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -89869,6 +98409,7 @@ "Tirhuta" ], "Added": "2011-08-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -89879,6 +98420,7 @@ "Tangsa" ], "Added": "2021-03-05", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -89889,6 +98431,7 @@ "Todhri" ], "Added": "2023-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -89899,6 +98442,7 @@ "Tolong Siki" ], "Added": "2023-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -89909,6 +98453,7 @@ "Toto" ], "Added": "2020-05-12", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -89919,6 +98464,7 @@ "Tulu-Tigalari" ], "Added": "2023-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -89929,6 +98475,7 @@ "Ugaritic" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -89939,6 +98486,7 @@ "Vai" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -89949,6 +98497,7 @@ "Visible Speech" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -89959,6 +98508,7 @@ "Vithkuqi" ], "Added": "2021-03-05", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -89970,6 +98520,7 @@ "Varang Kshiti" ], "Added": "2009-12-09", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -89980,6 +98531,7 @@ "Wancho" ], "Added": "2017-08-13", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -89990,6 +98542,7 @@ "Woleai" ], "Added": "2011-01-07", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -90000,6 +98553,7 @@ "Old Persian" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -90010,6 +98564,7 @@ "Sumero-Akkadian cuneiform" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -90020,6 +98575,7 @@ "Yezidi" ], "Added": "2019-09-11", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -90030,6 +98586,7 @@ "Yi" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -90043,6 +98600,7 @@ "Horizontal Square Script" ], "Added": "2017-01-13", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -90053,6 +98611,7 @@ "Code for inherited script" ], "Added": "2009-04-03", + "Scope": "None", "Comments": [ "Not intended for use as a language subtag" ], @@ -90065,6 +98624,7 @@ "Mathematical notation" ], "Added": "2007-12-05", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -90075,6 +98635,7 @@ "Symbols (Emoji variant)" ], "Added": "2016-01-04", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -90085,6 +98646,7 @@ "Symbols" ], "Added": "2007-12-05", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -90095,6 +98657,7 @@ "Code for unwritten documents" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -90105,6 +98668,7 @@ "Code for undetermined script" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -90115,6 +98679,7 @@ "Code for uncoded script" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -90125,6 +98690,7 @@ "Private use" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -90135,6 +98701,7 @@ "Ascension Island" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -90145,6 +98712,7 @@ "Andorra" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -90155,6 +98723,7 @@ "United Arab Emirates" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -90165,6 +98734,7 @@ "Afghanistan" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -90175,6 +98745,7 @@ "Antigua and Barbuda" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -90185,6 +98756,7 @@ "Anguilla" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -90195,6 +98767,7 @@ "Albania" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -90205,6 +98778,7 @@ "Armenia" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -90215,6 +98789,7 @@ "Netherlands Antilles" ], "Added": "2005-10-16", + "Scope": "None", "Deprecated": "2011-01-07", "Comments": [ "see BQ, CW, and SX" @@ -90228,6 +98803,7 @@ "Angola" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -90238,6 +98814,7 @@ "Antarctica" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -90248,6 +98825,7 @@ "Argentina" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -90258,6 +98836,7 @@ "American Samoa" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -90268,6 +98847,7 @@ "Austria" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -90278,6 +98858,7 @@ "Australia" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -90288,6 +98869,7 @@ "Aruba" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -90298,6 +98880,7 @@ "\u00C5land Islands" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -90308,6 +98891,7 @@ "Azerbaijan" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -90318,6 +98902,7 @@ "Bosnia and Herzegovina" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -90328,6 +98913,7 @@ "Barbados" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -90338,6 +98924,7 @@ "Bangladesh" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -90348,6 +98935,7 @@ "Belgium" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -90358,6 +98946,7 @@ "Burkina Faso" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -90368,6 +98957,7 @@ "Bulgaria" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -90378,6 +98968,7 @@ "Bahrain" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -90388,6 +98979,7 @@ "Burundi" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -90398,6 +98990,7 @@ "Benin" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -90408,6 +99001,7 @@ "Saint Barth\u00E9lemy" ], "Added": "2007-11-02", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -90418,6 +99012,7 @@ "Bermuda" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -90428,6 +99023,7 @@ "Brunei Darussalam" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -90438,6 +99034,7 @@ "Bolivia" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -90448,6 +99045,7 @@ "Bonaire, Sint Eustatius and Saba" ], "Added": "2011-01-07", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -90458,6 +99056,7 @@ "Brazil" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -90468,6 +99067,7 @@ "Bahamas" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -90478,6 +99078,7 @@ "Bhutan" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -90488,6 +99089,7 @@ "Burma" ], "Added": "2005-10-16", + "Scope": "None", "Deprecated": "1989-12-05", "Comments": [], "Prefix": [], @@ -90500,6 +99102,7 @@ "Bouvet Island" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -90510,6 +99113,7 @@ "Botswana" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -90520,6 +99124,7 @@ "Belarus" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -90530,6 +99135,7 @@ "Belize" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -90540,6 +99146,7 @@ "Canada" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -90550,6 +99157,7 @@ "Cocos (Keeling) Islands" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -90560,6 +99168,7 @@ "The Democratic Republic of the Congo" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -90570,6 +99179,7 @@ "Central African Republic" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -90580,6 +99190,7 @@ "Congo" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -90590,6 +99201,7 @@ "Switzerland" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -90600,6 +99212,7 @@ "C\u00F4te d\u0027Ivoire" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -90610,6 +99223,7 @@ "Cook Islands" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -90620,6 +99234,7 @@ "Chile" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -90630,6 +99245,7 @@ "Cameroon" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -90640,6 +99256,7 @@ "China" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -90650,6 +99267,7 @@ "Colombia" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -90660,6 +99278,7 @@ "Clipperton Island" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -90670,6 +99289,7 @@ "Sark" ], "Added": "2023-02-07", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -90680,6 +99300,7 @@ "Costa Rica" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -90690,6 +99311,7 @@ "Serbia and Montenegro" ], "Added": "2005-10-16", + "Scope": "None", "Deprecated": "2006-10-05", "Comments": [ "see RS for Serbia or ME for Montenegro" @@ -90703,6 +99325,7 @@ "Cuba" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -90714,6 +99337,7 @@ "Cape Verde" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -90724,6 +99348,7 @@ "Cura\u00E7ao" ], "Added": "2011-01-07", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -90734,6 +99359,7 @@ "Christmas Island" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -90744,6 +99370,7 @@ "Cyprus" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -90755,6 +99382,7 @@ "Czech Republic" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -90765,6 +99393,7 @@ "German Democratic Republic" ], "Added": "2005-10-16", + "Scope": "None", "Deprecated": "1990-10-30", "Comments": [], "Prefix": [], @@ -90777,6 +99406,7 @@ "Germany" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -90787,6 +99417,7 @@ "Diego Garcia" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -90797,6 +99428,7 @@ "Djibouti" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -90807,6 +99439,7 @@ "Denmark" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -90817,6 +99450,7 @@ "Dominica" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -90827,6 +99461,7 @@ "Dominican Republic" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -90837,6 +99472,7 @@ "Algeria" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -90847,6 +99483,7 @@ "Ceuta, Melilla" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -90857,6 +99494,7 @@ "Ecuador" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -90867,6 +99505,7 @@ "Estonia" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -90877,6 +99516,7 @@ "Egypt" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -90887,6 +99527,7 @@ "Western Sahara" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -90897,6 +99538,7 @@ "Eritrea" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -90907,6 +99549,7 @@ "Spain" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -90917,6 +99560,7 @@ "Ethiopia" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -90927,6 +99571,7 @@ "European Union" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -90937,6 +99582,7 @@ "Eurozone" ], "Added": "2016-07-14", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -90947,6 +99593,7 @@ "Finland" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -90957,6 +99604,7 @@ "Fiji" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -90967,6 +99615,7 @@ "Falkland Islands (Malvinas)" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -90977,6 +99626,7 @@ "Federated States of Micronesia" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -90987,6 +99637,7 @@ "Faroe Islands" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -90997,6 +99648,7 @@ "France" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -91007,6 +99659,7 @@ "Metropolitan France" ], "Added": "2005-10-16", + "Scope": "None", "Deprecated": "1997-07-14", "Comments": [], "Prefix": [], @@ -91019,6 +99672,7 @@ "Gabon" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -91029,6 +99683,7 @@ "United Kingdom" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [ "as of 2006-03-29 GB no longer includes the Channel Islands and Isle of Man; see GG, JE, IM" ], @@ -91041,6 +99696,7 @@ "Grenada" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -91051,6 +99707,7 @@ "Georgia" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -91061,6 +99718,7 @@ "French Guiana" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -91071,6 +99729,7 @@ "Guernsey" ], "Added": "2006-03-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -91081,6 +99740,7 @@ "Ghana" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -91091,6 +99751,7 @@ "Gibraltar" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -91101,6 +99762,7 @@ "Greenland" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -91111,6 +99773,7 @@ "Gambia" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -91121,6 +99784,7 @@ "Guinea" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -91131,6 +99795,7 @@ "Guadeloupe" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -91141,6 +99806,7 @@ "Equatorial Guinea" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -91151,6 +99817,7 @@ "Greece" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -91161,6 +99828,7 @@ "South Georgia and the South Sandwich Islands" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -91171,6 +99839,7 @@ "Guatemala" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -91181,6 +99850,7 @@ "Guam" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -91191,6 +99861,7 @@ "Guinea-Bissau" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -91201,6 +99872,7 @@ "Guyana" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -91211,6 +99883,7 @@ "Hong Kong" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -91221,6 +99894,7 @@ "Heard Island and McDonald Islands" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -91231,6 +99905,7 @@ "Honduras" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -91241,6 +99916,7 @@ "Croatia" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -91251,6 +99927,7 @@ "Haiti" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -91261,6 +99938,7 @@ "Hungary" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -91271,6 +99949,7 @@ "Canary Islands" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -91281,6 +99960,7 @@ "Indonesia" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -91291,6 +99971,7 @@ "Ireland" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -91301,6 +99982,7 @@ "Israel" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -91311,6 +99993,7 @@ "Isle of Man" ], "Added": "2006-03-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -91321,6 +100004,7 @@ "India" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -91331,6 +100015,7 @@ "British Indian Ocean Territory" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -91341,6 +100026,7 @@ "Iraq" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -91351,6 +100037,7 @@ "Islamic Republic of Iran" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -91361,6 +100048,7 @@ "Iceland" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -91371,6 +100059,7 @@ "Italy" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -91381,6 +100070,7 @@ "Jersey" ], "Added": "2006-03-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -91391,6 +100081,7 @@ "Jamaica" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -91401,6 +100092,7 @@ "Jordan" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -91411,6 +100103,7 @@ "Japan" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -91421,6 +100114,7 @@ "Kenya" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -91431,6 +100125,7 @@ "Kyrgyzstan" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -91441,6 +100136,7 @@ "Cambodia" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -91451,6 +100147,7 @@ "Kiribati" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -91461,6 +100158,7 @@ "Comoros" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -91471,6 +100169,7 @@ "Saint Kitts and Nevis" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -91481,6 +100180,7 @@ "Democratic People\u0027s Republic of Korea" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -91491,6 +100191,7 @@ "Republic of Korea" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -91501,6 +100202,7 @@ "Kuwait" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -91511,6 +100213,7 @@ "Cayman Islands" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -91521,6 +100224,7 @@ "Kazakhstan" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -91531,6 +100235,7 @@ "Lao People\u0027s Democratic Republic" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -91541,6 +100246,7 @@ "Lebanon" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -91551,6 +100257,7 @@ "Saint Lucia" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -91561,6 +100268,7 @@ "Liechtenstein" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -91571,6 +100279,7 @@ "Sri Lanka" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -91581,6 +100290,7 @@ "Liberia" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -91591,6 +100301,7 @@ "Lesotho" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -91601,6 +100312,7 @@ "Lithuania" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -91611,6 +100323,7 @@ "Luxembourg" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -91621,6 +100334,7 @@ "Latvia" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -91631,6 +100345,7 @@ "Libya" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -91641,6 +100356,7 @@ "Morocco" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -91651,6 +100367,7 @@ "Monaco" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -91661,6 +100378,7 @@ "Moldova" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -91671,6 +100389,7 @@ "Montenegro" ], "Added": "2006-10-05", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -91681,6 +100400,7 @@ "Saint Martin (French part)" ], "Added": "2007-11-02", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -91691,6 +100411,7 @@ "Madagascar" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -91701,6 +100422,7 @@ "Marshall Islands" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -91711,6 +100433,7 @@ "North Macedonia" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -91721,6 +100444,7 @@ "Mali" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -91731,6 +100455,7 @@ "Myanmar" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -91741,6 +100466,7 @@ "Mongolia" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -91751,6 +100477,7 @@ "Macao" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -91761,6 +100488,7 @@ "Northern Mariana Islands" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -91771,6 +100499,7 @@ "Martinique" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -91781,6 +100510,7 @@ "Mauritania" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -91791,6 +100521,7 @@ "Montserrat" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -91801,6 +100532,7 @@ "Malta" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -91811,6 +100543,7 @@ "Mauritius" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -91821,6 +100554,7 @@ "Maldives" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -91831,6 +100565,7 @@ "Malawi" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -91841,6 +100576,7 @@ "Mexico" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -91851,6 +100587,7 @@ "Malaysia" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -91861,6 +100598,7 @@ "Mozambique" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -91871,6 +100609,7 @@ "Namibia" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -91881,6 +100620,7 @@ "New Caledonia" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -91891,6 +100631,7 @@ "Niger" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -91901,6 +100642,7 @@ "Norfolk Island" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -91911,6 +100653,7 @@ "Nigeria" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -91921,6 +100664,7 @@ "Nicaragua" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -91931,6 +100675,7 @@ "Netherlands" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -91941,6 +100686,7 @@ "Norway" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -91951,6 +100697,7 @@ "Nepal" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -91961,6 +100708,7 @@ "Nauru" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -91971,6 +100719,7 @@ "Neutral Zone" ], "Added": "2005-10-16", + "Scope": "None", "Deprecated": "1993-07-12", "Comments": [], "Prefix": [] @@ -91982,6 +100731,7 @@ "Niue" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -91992,6 +100742,7 @@ "New Zealand" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -92002,6 +100753,7 @@ "Oman" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -92012,6 +100764,7 @@ "Panama" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -92022,6 +100775,7 @@ "Peru" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -92032,6 +100786,7 @@ "French Polynesia" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -92042,6 +100797,7 @@ "Papua New Guinea" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -92052,6 +100808,7 @@ "Philippines" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -92062,6 +100819,7 @@ "Pakistan" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -92072,6 +100830,7 @@ "Poland" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -92082,6 +100841,7 @@ "Saint Pierre and Miquelon" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -92092,6 +100852,7 @@ "Pitcairn" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -92102,6 +100863,7 @@ "Puerto Rico" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -92112,6 +100874,7 @@ "State of Palestine" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -92122,6 +100885,7 @@ "Portugal" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -92132,6 +100896,7 @@ "Palau" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -92142,6 +100907,7 @@ "Paraguay" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -92152,6 +100918,7 @@ "Qatar" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -92162,6 +100929,7 @@ "Private use" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -92172,6 +100940,7 @@ "R\u00E9union" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -92182,6 +100951,7 @@ "Romania" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -92192,6 +100962,7 @@ "Serbia" ], "Added": "2006-10-05", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -92202,6 +100973,7 @@ "Russian Federation" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -92212,6 +100984,7 @@ "Rwanda" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -92222,6 +100995,7 @@ "Saudi Arabia" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -92232,6 +101006,7 @@ "Solomon Islands" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -92242,6 +101017,7 @@ "Seychelles" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -92252,6 +101028,7 @@ "Sudan" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -92262,6 +101039,7 @@ "Sweden" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -92272,6 +101050,7 @@ "Singapore" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -92282,6 +101061,7 @@ "Saint Helena, Ascension and Tristan da Cunha" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -92292,6 +101072,7 @@ "Slovenia" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -92302,6 +101083,7 @@ "Svalbard and Jan Mayen" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -92312,6 +101094,7 @@ "Slovakia" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -92322,6 +101105,7 @@ "Sierra Leone" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -92332,6 +101116,7 @@ "San Marino" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -92342,6 +101127,7 @@ "Senegal" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -92352,6 +101138,7 @@ "Somalia" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -92362,6 +101149,7 @@ "Suriname" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -92372,6 +101160,7 @@ "South Sudan" ], "Added": "2011-08-25", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -92382,6 +101171,7 @@ "Sao Tome and Principe" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -92392,6 +101182,7 @@ "Union of Soviet Socialist Republics" ], "Added": "2005-10-16", + "Scope": "None", "Deprecated": "1992-08-30", "Comments": [], "Prefix": [] @@ -92403,6 +101194,7 @@ "El Salvador" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -92413,6 +101205,7 @@ "Sint Maarten (Dutch part)" ], "Added": "2011-01-07", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -92423,6 +101216,7 @@ "Syrian Arab Republic" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -92435,6 +101229,7 @@ "Swaziland" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -92445,6 +101240,7 @@ "Tristan da Cunha" ], "Added": "2009-07-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -92455,6 +101251,7 @@ "Turks and Caicos Islands" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -92465,6 +101262,7 @@ "Chad" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -92475,6 +101273,7 @@ "French Southern Territories" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -92485,6 +101284,7 @@ "Togo" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -92495,6 +101295,7 @@ "Thailand" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -92505,6 +101306,7 @@ "Tajikistan" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -92515,6 +101317,7 @@ "Tokelau" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -92525,6 +101328,7 @@ "Timor-Leste" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -92535,6 +101339,7 @@ "Turkmenistan" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -92545,6 +101350,7 @@ "Tunisia" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -92555,6 +101361,7 @@ "Tonga" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -92565,6 +101372,7 @@ "East Timor" ], "Added": "2005-10-16", + "Scope": "None", "Deprecated": "2002-05-20", "Comments": [], "Prefix": [], @@ -92578,6 +101386,7 @@ "Turkey" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -92588,6 +101397,7 @@ "Trinidad and Tobago" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -92598,6 +101408,7 @@ "Tuvalu" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -92608,6 +101419,7 @@ "Taiwan, Province of China" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -92618,6 +101430,7 @@ "United Republic of Tanzania" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -92628,6 +101441,7 @@ "Ukraine" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -92638,6 +101452,7 @@ "Uganda" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -92648,6 +101463,7 @@ "United States Minor Outlying Islands" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -92658,6 +101474,7 @@ "United Nations" ], "Added": "2016-07-14", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -92668,6 +101485,7 @@ "United States" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -92678,6 +101496,7 @@ "Uruguay" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -92688,6 +101507,7 @@ "Uzbekistan" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -92698,6 +101518,7 @@ "Holy See (Vatican City State)" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -92708,6 +101529,7 @@ "Saint Vincent and the Grenadines" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -92718,6 +101540,7 @@ "Venezuela" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -92728,6 +101551,7 @@ "British Virgin Islands" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -92738,6 +101562,7 @@ "U.S. Virgin Islands" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -92748,6 +101573,7 @@ "Viet Nam" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -92758,6 +101584,7 @@ "Vanuatu" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -92768,6 +101595,7 @@ "Wallis and Futuna" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -92778,6 +101606,7 @@ "Samoa" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -92788,6 +101617,7 @@ "Private use" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -92798,6 +101628,7 @@ "Democratic Yemen" ], "Added": "2005-10-16", + "Scope": "None", "Deprecated": "1990-08-14", "Comments": [], "Prefix": [], @@ -92810,6 +101641,7 @@ "Yemen" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -92820,6 +101652,7 @@ "Mayotte" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -92830,6 +101663,7 @@ "Yugoslavia" ], "Added": "2005-10-16", + "Scope": "None", "Deprecated": "2003-07-23", "Comments": [ "see BA, HR, ME, MK, RS, or SI" @@ -92843,6 +101677,7 @@ "South Africa" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -92853,6 +101688,7 @@ "Zambia" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -92863,6 +101699,7 @@ "Zaire" ], "Added": "2005-10-16", + "Scope": "None", "Deprecated": "1997-07-14", "Comments": [], "Prefix": [], @@ -92875,6 +101712,7 @@ "Zimbabwe" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -92885,6 +101723,7 @@ "Private use" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -92895,6 +101734,7 @@ "World" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -92905,6 +101745,7 @@ "Africa" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -92915,6 +101756,7 @@ "North America" ], "Added": "2010-08-16", + "Scope": "None", "Comments": [ "Includes Northern America (021), Caribbean (029), and Central America (013); see also 021" ], @@ -92927,6 +101769,7 @@ "South America" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -92937,6 +101780,7 @@ "Oceania" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -92947,6 +101791,7 @@ "Western Africa" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -92957,6 +101802,7 @@ "Central America" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -92967,6 +101813,7 @@ "Eastern Africa" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -92977,6 +101824,7 @@ "Northern Africa" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -92987,6 +101835,7 @@ "Middle Africa" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -92997,6 +101846,7 @@ "Southern Africa" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -93007,6 +101857,7 @@ "Americas" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -93017,6 +101868,7 @@ "Northern America" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [ "Does not include Caribbean (029) or Central America (013); see also 003" ], @@ -93029,6 +101881,7 @@ "Caribbean" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -93039,6 +101892,7 @@ "Eastern Asia" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -93049,6 +101903,7 @@ "Southern Asia" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -93059,6 +101914,7 @@ "South-Eastern Asia" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -93069,6 +101925,7 @@ "Southern Europe" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -93079,6 +101936,7 @@ "Australia and New Zealand" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -93089,6 +101947,7 @@ "Melanesia" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -93099,6 +101958,7 @@ "Micronesia" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -93109,6 +101969,7 @@ "Polynesia" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -93119,6 +101980,7 @@ "Asia" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -93129,6 +101991,7 @@ "Central Asia" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -93139,6 +102002,7 @@ "Western Asia" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -93149,6 +102013,7 @@ "Europe" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -93159,6 +102024,7 @@ "Eastern Europe" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -93169,6 +102035,7 @@ "Northern Europe" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -93179,6 +102046,7 @@ "Western Europe" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -93189,6 +102057,7 @@ "Sub-Saharan Africa" ], "Added": "2017-04-18", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -93199,6 +102068,7 @@ "Latin America and the Caribbean" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -93209,6 +102079,7 @@ "Late Middle French (to 1606)" ], "Added": "2007-03-20", + "Scope": "None", "Comments": [ "16th century French as in Jean Nicot, \u0022Thresor de la langue francoyse\u0022, 1606, but also including some French similar to that of Rabelais" ], @@ -93223,6 +102094,7 @@ "Early Modern French" ], "Added": "2007-03-20", + "Scope": "None", "Comments": [ "17th century French, as catalogued in the \u0022Dictionnaire de l\u0027acad\u00E9mie fran\u00E7oise\u0022, 4eme ed. 1694; frequently includes elements of Middle French, as this is a transitional period" ], @@ -93237,6 +102109,7 @@ "Traditional German orthography" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [ "de" @@ -93249,6 +102122,7 @@ "\u0022Academic\u0022 (\u0022governmental\u0022) variant of Belarusian as codified in 1959" ], "Added": "2008-09-30", + "Scope": "None", "Comments": [], "Prefix": [ "be" @@ -93261,6 +102135,7 @@ "Standardized Resian orthography" ], "Added": "2007-07-28", + "Scope": "None", "Comments": [ "For standardized Resian an orthography was published in 1994." ], @@ -93279,6 +102154,7 @@ "German orthography of 1996" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [ "de" @@ -93291,6 +102167,7 @@ "Orthographic formulation of 1943 - Official in Brazil (Formul\u00E1rio Ortogr\u00E1fico de 1943 - Oficial no Brasil)" ], "Added": "2015-05-06", + "Scope": "None", "Comments": [ "Denotes conventions established by the Academia Brasileira de Letras in 1943 and generally used in Brazil until 2009" ], @@ -93305,6 +102182,7 @@ "Akhmimic dialect of Coptic" ], "Added": "2025-07-14", + "Scope": "None", "Comments": [], "Prefix": [ "cop" @@ -93317,6 +102195,7 @@ "Akuapem Twi" ], "Added": "2017-06-05", + "Scope": "None", "Comments": [], "Prefix": [ "tw" @@ -93329,6 +102208,7 @@ "ALA-LC Romanization, 1997 edition" ], "Added": "2009-12-09", + "Scope": "None", "Comments": [ "Romanizations recommended by the American Library Association and the Library of Congress, in \u0022ALA-LC Romanization Tables: Transliteration Schemes for Non-Roman Scripts\u0022 (1997), ISBN 978-0-8444-0940-5." ], @@ -93342,6 +102222,7 @@ "Boni dialect" ], "Added": "2009-09-05", + "Scope": "None", "Comments": [ "Aluku dialect of the \u0022Busi Nenge Tongo\u0022 English-based Creole continuum in Eastern Suriname and Western French Guiana" ], @@ -93356,6 +102237,7 @@ "Anpezo standard of Ladin" ], "Added": "2024-03-04", + "Scope": "None", "Comments": [ "Represents the standard written form of Ladin in Anpezo" ], @@ -93370,6 +102252,7 @@ "Portuguese Language Orthographic Agreement of 1990 (Acordo Ortogr\u00E1fico da L\u00EDngua Portuguesa de 1990)" ], "Added": "2015-05-06", + "Scope": "None", "Comments": [ "Portuguese orthography conventions established in 1990 but not brought into effect until 2009" ], @@ -93385,6 +102268,7 @@ "Aranese" ], "Added": "2018-04-22", + "Scope": "None", "Comments": [ "Occitan variant spoken in the Val d\u0027Aran" ], @@ -93399,6 +102283,7 @@ "Eastern Armenian" ], "Added": "2006-09-18", + "Scope": "None", "Deprecated": "2018-03-24", "Comments": [ "Preferred tag is hy" @@ -93414,6 +102299,7 @@ "Western Armenian" ], "Added": "2006-09-18", + "Scope": "None", "Deprecated": "2018-03-24", "Comments": [ "Preferred tag is hyw" @@ -93430,6 +102316,7 @@ "Arkaika Esperanto" ], "Added": "2020-12-17", + "Scope": "None", "Comments": [ "Archaic Esperanto variant devised by Manuel Halvelik" ], @@ -93445,6 +102332,7 @@ "Ashanti Twi" ], "Added": "2017-06-05", + "Scope": "None", "Comments": [], "Prefix": [ "tw" @@ -93457,6 +102345,7 @@ "Auvergnat" ], "Added": "2018-04-22", + "Scope": "None", "Comments": [ "Occitan variant spoken in Auvergne" ], @@ -93471,6 +102360,7 @@ "Unified Turkic Latin Alphabet (Historical)" ], "Added": "2007-04-18", + "Scope": "None", "Comments": [ "Denotes alphabet used in Turkic republics/regions of the former USSR in late 1920s, and throughout 1930s, which aspired to represent equivalent phonemes in a unified fashion. Also known as: New Turkic Alphabet; Birl\u04D9\u015Fdirilmi\u015F Jeni Tyrk \u04D8lifbas\u044C (Birlesdirilmis Jeni Tyrk Elifbasi); Ja\u014Balif (Janalif)." ], @@ -93494,6 +102384,7 @@ "The Balanka dialect of Anii" ], "Added": "2014-02-15", + "Scope": "None", "Comments": [ "Balanka is one of 19 Anii dialects." ], @@ -93508,6 +102399,7 @@ "The Barlavento dialect group of Kabuverdianu" ], "Added": "2013-12-10", + "Scope": "None", "Comments": [ "Barlavento is one of the two main dialect groups of Kabuverdianu." ], @@ -93522,6 +102414,7 @@ "Basic English" ], "Added": "2015-12-29", + "Scope": "None", "Comments": [], "Prefix": [ "en" @@ -93534,6 +102427,7 @@ "Buddhist Hybrid Sanskrit" ], "Added": "2010-07-28", + "Scope": "None", "Comments": [], "Prefix": [ "sa" @@ -93546,6 +102440,7 @@ "BCI Blissymbolics AV" ], "Added": "2023-05-11", + "Scope": "None", "Comments": [ "Name given to a subset of the variety of Blissymbolics curated by Blissymbolics Communication International, as represented by entries in the BCI Authorized Vocabulary" ], @@ -93560,6 +102455,7 @@ "BCI Blissymbolics" ], "Added": "2023-05-11", + "Scope": "None", "Comments": [ "Name given to the variety of Blissymbolics curated by Blissymbolics Communication International" ], @@ -93574,6 +102470,7 @@ "Biscayan dialect of Basque" ], "Added": "2010-04-13", + "Scope": "None", "Comments": [], "Prefix": [ "eu" @@ -93587,6 +102484,7 @@ "The Bila dialect of Resian" ], "Added": "2007-07-05", + "Scope": "None", "Comments": [ "The dialect of San Giorgio/Bila is one of the four major local dialects of Resian" ], @@ -93601,6 +102499,7 @@ "Black American Sign Language dialect" ], "Added": "2023-07-31", + "Scope": "None", "Comments": [ "Black American Sign Language (BASL) or Black Sign Variation (BSV) is a dialect of American Sign Language (ASL)" ], @@ -93616,6 +102515,7 @@ "Bohairic dialect of Coptic" ], "Added": "2025-07-14", + "Scope": "None", "Comments": [], "Prefix": [ "cop" @@ -93628,6 +102528,7 @@ "Slovene in Bohori\u010D alphabet" ], "Added": "2012-06-27", + "Scope": "None", "Comments": [ "The subtag represents the alphabet codified by Adam Bohori\u010D in 1584 and used from the first printed Slovene book and up to the mid-19th century." ], @@ -93642,6 +102543,7 @@ "Boontling" ], "Added": "2006-09-18", + "Scope": "None", "Comments": [ "Jargon embedded in American English" ], @@ -93656,6 +102558,7 @@ "Bornholmsk" ], "Added": "2019-03-27", + "Scope": "None", "Comments": [], "Prefix": [ "da" @@ -93668,6 +102571,7 @@ "Cisalpine" ], "Added": "2018-04-22", + "Scope": "None", "Comments": [ "Occitan variant spoken in northwestern Italy" ], @@ -93682,6 +102586,7 @@ "Portuguese-Brazilian Orthographic Convention of 1945 (Conven\u00E7\u00E3o Ortogr\u00E1fica Luso-Brasileira de 1945)" ], "Added": "2015-05-06", + "Scope": "None", "Comments": [ "Portuguese orthography conventions established in 1945, generally in effect until 2009. This reform was not ratified in Brazil." ], @@ -93698,6 +102603,7 @@ "Anglo-Cornish" ], "Added": "2015-12-07", + "Scope": "None", "Comments": [], "Prefix": [ "en" @@ -93710,6 +102616,7 @@ "Occitan variants of the Croissant area" ], "Added": "2018-04-22", + "Scope": "None", "Comments": [], "Prefix": [ "oc" @@ -93722,6 +102629,7 @@ "Slovene in Dajnko alphabet" ], "Added": "2012-06-27", + "Scope": "None", "Comments": [ "The subtag represents the alphabet codified by Peter Dajnko and used from 1824 to 1839 mostly in Styria (in what is now Eastern Slovenia)." ], @@ -93736,6 +102644,7 @@ "Serbian with Ekavian pronunciation" ], "Added": "2013-12-02", + "Scope": "None", "Comments": [], "Prefix": [ "sr", @@ -93750,6 +102659,7 @@ "Early Modern English (1500-1700)" ], "Added": "2012-02-05", + "Scope": "None", "Comments": [], "Prefix": [ "en" @@ -93762,6 +102672,7 @@ "Fascia standard of Ladin" ], "Added": "2024-03-04", + "Scope": "None", "Comments": [ "Represents the standard written form of Ladin in Fascia which unified the three subvarieties Cazet, Brach and Moenat" ], @@ -93776,6 +102687,7 @@ "Fayyumic dialect of Coptic" ], "Added": "2025-07-14", + "Scope": "None", "Comments": [], "Prefix": [ "cop" @@ -93788,6 +102700,7 @@ "Fodom standard of Ladin" ], "Added": "2024-03-04", + "Scope": "None", "Comments": [ "Represents the standard written form of Ladin in Livinallongo and Colle Santa Lucia" ], @@ -93802,6 +102715,7 @@ "International Phonetic Alphabet" ], "Added": "2006-12-11", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -93812,6 +102726,7 @@ "Kirshenbaum Phonetic Alphabet" ], "Added": "2018-04-22", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -93823,6 +102738,7 @@ "Americanist Phonetic Notation" ], "Added": "2016-06-24", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -93833,6 +102749,7 @@ "Uralic Phonetic Alphabet" ], "Added": "2006-12-11", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -93843,6 +102760,7 @@ "X-SAMPA transcription" ], "Added": "2010-10-23", + "Scope": "None", "Comments": [ "Indicates that the content is transcribed according to X-SAMPA" ], @@ -93855,6 +102773,7 @@ "Gallo" ], "Added": "2021-08-05", + "Scope": "None", "Comments": [], "Prefix": [ "fr" @@ -93867,6 +102786,7 @@ "Gascon" ], "Added": "2018-04-22", + "Scope": "None", "Comments": [ "Occitan variant spoken in Gascony" ], @@ -93881,6 +102801,7 @@ "Gherd\u00EBina standard of Ladin" ], "Added": "2024-03-04", + "Scope": "None", "Comments": [ "Represents the standard written form of Ladin in Gherd\u00EBina" ], @@ -93895,6 +102816,7 @@ "Classical Occitan orthography" ], "Added": "2018-04-22", + "Scope": "None", "Comments": [ "Classical written standard for Occitan developed in 1935 by Alib\u00E8rt" ], @@ -93919,6 +102841,7 @@ "Italian-inspired Occitan orthography" ], "Added": "2018-04-22", + "Scope": "None", "Comments": [], "Prefix": [ "oc", @@ -93934,6 +102857,7 @@ "Mistralian or Mistralian-inspired Occitan orthography" ], "Added": "2018-04-22", + "Scope": "None", "Comments": [ "Written standard developed by Romanilha in 1853 and used by Mistral and the F\u00E9libres, including derived standards such as Escolo d\u00F3u Po, Escolo Gaston Febus, and others" ], @@ -93958,6 +102882,7 @@ "The H\u00E0 N\u1ED9i variant of Vietnamese" ], "Added": "2025-03-10", + "Scope": "None", "Comments": [], "Prefix": [ "vi" @@ -93970,6 +102895,7 @@ "Hepburn romanization" ], "Added": "2009-10-01", + "Scope": "None", "Comments": [], "Prefix": [ "ja-Latn" @@ -93982,6 +102908,7 @@ "Hepburn romanization, Library of Congress method" ], "Added": "2009-10-01", + "Scope": "None", "Deprecated": "2010-02-07", "Comments": [ "Preferred tag is ja-Latn-alalc97" @@ -93998,6 +102925,7 @@ "Norwegian in H\u00F8gnorsk (High Norwegian) orthography" ], "Added": "2010-01-02", + "Scope": "None", "Comments": [ "Norwegian following Ivar Aasen\u0027s orthographical principles, including modern usage." ], @@ -94012,6 +102940,7 @@ "Standard H-system orthographic fallback for spelling Esperanto" ], "Added": "2017-03-14", + "Scope": "None", "Comments": [], "Prefix": [ "eo" @@ -94024,6 +102953,7 @@ "The Hu\u1EBF (province Th\u1EEBa Thi\u00EAn) variant of Vietnamese" ], "Added": "2025-03-10", + "Scope": "None", "Comments": [], "Prefix": [ "vi" @@ -94036,6 +102966,7 @@ "Serbian with Ijekavian pronunciation" ], "Added": "2013-12-02", + "Scope": "None", "Comments": [], "Prefix": [ "sr", @@ -94050,6 +102981,7 @@ "Epic Sanskrit" ], "Added": "2010-07-28", + "Scope": "None", "Comments": [], "Prefix": [ "sa" @@ -94062,6 +102994,7 @@ "Bulgarian in 1899 orthography" ], "Added": "2017-12-13", + "Scope": "None", "Comments": [ "Bulgarian orthography introduced by Todor Ivanchov in 1899" ], @@ -94076,6 +103009,7 @@ "Jauer dialect of Romansh" ], "Added": "2010-06-29", + "Scope": "None", "Comments": [ "The spoken dialect of the Val M\u00FCstair, which has no written standard." ], @@ -94090,6 +103024,7 @@ "Jyutping Cantonese Romanization" ], "Added": "2010-10-23", + "Scope": "None", "Comments": [ "Jyutping romanization of Cantonese" ], @@ -94104,6 +103039,7 @@ "Common Cornish orthography of Revived Cornish" ], "Added": "2008-10-14", + "Scope": "None", "Comments": [], "Prefix": [ "kw" @@ -94117,6 +103053,7 @@ "Allattaasitaamut" ], "Added": "2024-07-20", + "Scope": "None", "Comments": [ "Orthography for Greenlandic designed by Samuel Kleinschmidt, used from 1851 to 1973." ], @@ -94132,6 +103069,7 @@ "The Kociewie dialect of Polish" ], "Added": "2014-11-27", + "Scope": "None", "Comments": [ "The dialect of Kociewie is spoken in the region around Starogard Gda\u0144ski, Tczew and \u015Awiecie in northern Poland." ], @@ -94147,6 +103085,7 @@ "Kernowek Standard" ], "Added": "2012-06-27", + "Scope": "None", "Comments": [], "Prefix": [ "kw" @@ -94159,6 +103098,7 @@ "Classical Sanskrit" ], "Added": "2010-07-28", + "Scope": "None", "Deprecated": "2024-06-08", "Comments": [ "Preferred tag is cls" @@ -94174,6 +103114,7 @@ "Ancient Egyptian in Leiden Unified Transliteration" ], "Added": "2025-02-06", + "Scope": "None", "Comments": [ "Recommended by the International Association of Egyptologists" ], @@ -94188,6 +103129,7 @@ "Limousin" ], "Added": "2018-04-22", + "Scope": "None", "Comments": [ "Occitan variant spoken in Limousin" ], @@ -94202,6 +103144,7 @@ "Languedocien" ], "Added": "2018-04-22", + "Scope": "None", "Comments": [ "Occitan variant spoken in Languedoc" ], @@ -94217,6 +103160,7 @@ "The Lipovec dialect of Resian" ], "Added": "2007-08-11", + "Scope": "None", "Comments": [ "The dialect of Lipovaz/Lipovec is one of the minor local dialects of Resian" ], @@ -94231,6 +103175,7 @@ "The Latgalian language orthography codified in 1929" ], "Added": "2022-08-05", + "Scope": "None", "Comments": [], "Prefix": [ "ltg" @@ -94243,6 +103188,7 @@ "The Latgalian language orthography codified in the language law in 2007" ], "Added": "2022-06-23", + "Scope": "None", "Comments": [], "Prefix": [ "ltg" @@ -94255,6 +103201,7 @@ "Post-1917 Russian orthography" ], "Added": "2010-10-10", + "Scope": "None", "Comments": [ "Russian orthography as established by the 1917/1918 orthographic reforms" ], @@ -94269,6 +103216,7 @@ "Lycopolitan alias Subakhmimic dialect of Coptic" ], "Added": "2025-07-14", + "Scope": "None", "Comments": [], "Prefix": [ "cop" @@ -94281,6 +103229,7 @@ "Ancient Egyptian hieroglyphs encoded in Manuel de Codage" ], "Added": "2025-02-06", + "Scope": "None", "Comments": [], "Prefix": [ "egy" @@ -94293,6 +103242,7 @@ "Ancient Egyptian transliteration encoded in Manuel de Codage" ], "Added": "2025-02-06", + "Scope": "None", "Comments": [], "Prefix": [ "egy" @@ -94305,6 +103255,7 @@ "Mesokemic alias Oxyrhynchite dialect of Coptic" ], "Added": "2025-07-14", + "Scope": "None", "Comments": [], "Prefix": [ "cop" @@ -94317,6 +103268,7 @@ "Slovene in Metelko alphabet" ], "Added": "2012-06-27", + "Scope": "None", "Comments": [ "The subtag represents the alphabet codified by Franc Serafin Metelko and used from 1825 to 1833." ], @@ -94331,6 +103283,7 @@ "Monotonic Greek" ], "Added": "2006-12-11", + "Scope": "None", "Comments": [], "Prefix": [ "el" @@ -94344,6 +103297,7 @@ "Aukan dialect" ], "Added": "2009-09-05", + "Scope": "None", "Comments": [ "Ndyuka dialect of the \u0022Busi Nenge Tongo\u0022 English-based Creole continuum in Eastern Suriname and Western French Guiana" ], @@ -94359,6 +103313,7 @@ "Nadiza dialect" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [ "sl" @@ -94371,6 +103326,7 @@ "Newfoundland English" ], "Added": "2015-11-25", + "Scope": "None", "Comments": [], "Prefix": [ "en-CA" @@ -94383,6 +103339,7 @@ "Ni\u00E7ard" ], "Added": "2018-04-22", + "Scope": "None", "Comments": [ "Occitan variant spoken in Nice" ], @@ -94398,6 +103355,7 @@ "The Njiva dialect of Resian" ], "Added": "2007-07-05", + "Scope": "None", "Comments": [ "The dialect of Gniva/Njiva is one of the four major local dialects of Resian" ], @@ -94418,6 +103376,7 @@ "Modern Volap\u00FCk" ], "Added": "2012-01-28", + "Scope": "None", "Comments": [], "Prefix": [ "vo" @@ -94431,6 +103390,7 @@ "The Osojane dialect of Resian" ], "Added": "2007-07-05", + "Scope": "None", "Comments": [ "The dialect of Oseacco/Osojane is one of the four major local dialects of Resian" ], @@ -94445,6 +103405,7 @@ "Oxford English Dictionary spelling" ], "Added": "2015-04-17", + "Scope": "None", "Comments": [], "Prefix": [ "en" @@ -94457,6 +103418,7 @@ "Pahawh Hmong Second Stage Reduced orthography" ], "Added": "2017-01-13", + "Scope": "None", "Comments": [], "Prefix": [ "mww", @@ -94470,6 +103432,7 @@ "Pahawh Hmong Third Stage Reduced orthography" ], "Added": "2017-01-13", + "Scope": "None", "Comments": [], "Prefix": [ "mww", @@ -94483,6 +103446,7 @@ "Pahawh Hmong Final Version orthography" ], "Added": "2017-01-13", + "Scope": "None", "Comments": [], "Prefix": [ "mww", @@ -94496,6 +103460,7 @@ "Pamaka dialect" ], "Added": "2009-09-05", + "Scope": "None", "Comments": [ "Pamaka dialect of the \u0022Busi Nenge Tongo\u0022 English-based Creole continuum in Eastern Suriname and Western French Guiana" ], @@ -94512,6 +103477,7 @@ "Interlingua de Peano" ], "Added": "2020-03-12", + "Scope": "None", "Comments": [ "Peano\u2019s Interlingua, created in 1903 by Giuseppe Peano as an international auxiliary language" ], @@ -94527,6 +103493,7 @@ "Pe\u030Dh-\u014De-j\u012B orthography/romanization" ], "Added": "2024-03-04", + "Scope": "None", "Comments": [ "Modern Hokkien Vernacular Romanization System, evolved from the New Dictionary in the Amoy by John Van Nest Talmage in 1894" ], @@ -94541,6 +103508,7 @@ "Petrine orthography" ], "Added": "2010-10-10", + "Scope": "None", "Comments": [ "Russian orthography from the Petrine orthographic reforms of 1708 to the 1917 orthographic reform" ], @@ -94555,6 +103523,7 @@ "Pinyin romanization" ], "Added": "2008-10-14", + "Scope": "None", "Comments": [], "Prefix": [ "zh-Latn", @@ -94568,6 +103537,7 @@ "Polytonic Greek" ], "Added": "2006-12-11", + "Scope": "None", "Comments": [], "Prefix": [ "el" @@ -94580,6 +103550,7 @@ "Proven\u00E7al" ], "Added": "2018-04-22", + "Scope": "None", "Comments": [ "Occitan variant spoken in Provence" ], @@ -94594,6 +103565,7 @@ "Puter idiom of Romansh" ], "Added": "2010-06-29", + "Scope": "None", "Comments": [ "Puter is one of the five traditional written standards or \u0022idioms\u0022 of the Romansh language." ], @@ -94611,6 +103583,7 @@ "Classic Volap\u00FCk" ], "Added": "2012-01-28", + "Scope": "None", "Comments": [], "Prefix": [ "vo" @@ -94625,6 +103598,7 @@ "Rezijan" ], "Added": "2005-10-16", + "Scope": "None", "Comments": [], "Prefix": [ "sl" @@ -94637,6 +103611,7 @@ "Rumantsch Grischun" ], "Added": "2010-06-29", + "Scope": "None", "Comments": [ "Supraregional Romansh written standard" ], @@ -94651,6 +103626,7 @@ "Sahidic dialect of Coptic" ], "Added": "2025-07-14", + "Scope": "None", "Comments": [], "Prefix": [ "cop" @@ -94663,6 +103639,7 @@ "The S\u00E0i G\u00F2n variant of Vietnamese" ], "Added": "2025-03-10", + "Scope": "None", "Comments": [], "Prefix": [ "vi" @@ -94675,6 +103652,7 @@ "Scottish Standard English" ], "Added": "2007-08-31", + "Scope": "None", "Comments": [], "Prefix": [ "en" @@ -94687,6 +103665,7 @@ "Scouse" ], "Added": "2006-09-18", + "Scope": "None", "Comments": [ "English Liverpudlian dialect known as \u0027Scouse\u0027" ], @@ -94701,6 +103680,7 @@ "Simplified form" ], "Added": "2015-12-29", + "Scope": "None", "Comments": [], "Prefix": [] }, @@ -94712,6 +103692,7 @@ "The Solbica dialect of Resian" ], "Added": "2007-07-05", + "Scope": "None", "Comments": [ "The dialect of Stolvizza/Solbica is one of the four major local dialects of Resian" ], @@ -94726,6 +103707,7 @@ "The Sotavento dialect group of Kabuverdianu" ], "Added": "2013-12-10", + "Scope": "None", "Comments": [ "Sotavento is one of the two main dialect groups of Kabuverdianu." ], @@ -94740,6 +103722,7 @@ "Spanglish" ], "Added": "2017-02-23", + "Scope": "None", "Comments": [ "A variety of contact dialects of English and Spanish" ], @@ -94755,6 +103738,7 @@ "Surmiran idiom of Romansh" ], "Added": "2010-06-29", + "Scope": "None", "Comments": [ "Surmiran is one of the five traditional written standards or \u0022idioms\u0022 of the Romansh language." ], @@ -94769,6 +103753,7 @@ "Sursilvan idiom of Romansh" ], "Added": "2010-06-29", + "Scope": "None", "Comments": [ "Sursilvan is one of the five traditional written standards or \u0022idioms\u0022 of the Romansh language." ], @@ -94783,6 +103768,7 @@ "Sutsilvan idiom of Romansh" ], "Added": "2010-06-29", + "Scope": "None", "Comments": [ "Sutsilvan is one of the five traditional written standards or \u0022idioms\u0022 of the Romansh language." ], @@ -94798,6 +103784,7 @@ "South Jutish" ], "Added": "2021-07-17", + "Scope": "None", "Comments": [], "Prefix": [ "da" @@ -94811,6 +103798,7 @@ "T\u00E2i-l\u00F4 orthography/romanization" ], "Added": "2024-03-04", + "Scope": "None", "Comments": [ "Taiwanese Hokkien Romanization System (T\u00E2i-l\u00F4) published in 2006 by the Taiwan Ministry of Education" ], @@ -94825,6 +103813,7 @@ "Belarusian in Taraskievica orthography" ], "Added": "2007-04-27", + "Scope": "None", "Comments": [ "The subtag represents Branislau Taraskievic\u0027s Belarusian orthography as published in \u0022Bielaruski klasycny pravapis\u0022 by Juras Buslakou, Vincuk Viacorka, Zmicier Sanko, and Zmicier Sauka (Vilnia- Miensk 2005)." ], @@ -94839,6 +103828,7 @@ "Tongyong Pinyin romanization" ], "Added": "2020-06-08", + "Scope": "None", "Comments": [ "Former official transcription standard for Mandarin Chinese in Taiwan." ], @@ -94855,6 +103845,7 @@ "\u00D8stgr\u00F8nlandsk" ], "Added": "2020-07-16", + "Scope": "None", "Comments": [ "Also known as Tunumiit oraasiat" ], @@ -94869,6 +103860,7 @@ "Unified Cornish orthography of Revived Cornish" ], "Added": "2008-10-14", + "Scope": "None", "Comments": [], "Prefix": [ "kw" @@ -94881,6 +103873,7 @@ "Unified Cornish Revised orthography of Revived Cornish" ], "Added": "2008-10-14", + "Scope": "None", "Comments": [], "Prefix": [ "kw" @@ -94893,6 +103886,7 @@ "Ulster dialect of Scots" ], "Added": "2010-04-10", + "Scope": "None", "Comments": [], "Prefix": [ "sco" @@ -94905,6 +103899,7 @@ "Unifon phonetic alphabet" ], "Added": "2013-10-02", + "Scope": "None", "Comments": [], "Prefix": [ "en", @@ -94921,6 +103916,7 @@ "Vedic Sanskrit" ], "Added": "2010-07-28", + "Scope": "None", "Deprecated": "2024-06-08", "Comments": [ "The most ancient dialect of Sanskrit used in verse and prose composed until about the 4th century B.C.E.", @@ -94937,6 +103933,7 @@ "Val Badia standard of Ladin" ], "Added": "2024-03-04", + "Scope": "None", "Comments": [ "Represents the standard written form of Ladin in the Val Badia, unifying the three variants Mar\u00F4, Mesaval and Badiot spoken in this valley" ], @@ -94951,6 +103948,7 @@ "Valencian" ], "Added": "2007-03-06", + "Scope": "None", "Comments": [ "Variety spoken in the \u0022Comunidad Valenciana\u0022 region of Spain, where it is co-official with Spanish." ], @@ -94965,6 +103963,7 @@ "Vallader idiom of Romansh" ], "Added": "2010-06-29", + "Scope": "None", "Comments": [ "Vallader is one of the five traditional written standards or \u0022idioms\u0022 of the Romansh language." ], @@ -94979,6 +103978,7 @@ "Latvian orthography used before 1920s (\u0022vec\u0101 druka\u0022)" ], "Added": "2020-09-26", + "Scope": "None", "Comments": [ "The subtag represents the old orthography of the Latvian language used during c. 1600s\u20131920s." ], @@ -94993,6 +103993,7 @@ "The Viennese dialect of German" ], "Added": "2025-06-22", + "Scope": "None", "Comments": [], "Prefix": [ "de" @@ -95005,6 +104006,7 @@ "Vivaro-Alpine" ], "Added": "2018-04-22", + "Scope": "None", "Comments": [ "Occitan variant spoken in northeastern Occitania" ], @@ -95019,6 +104021,7 @@ "Wade-Giles romanization" ], "Added": "2008-10-03", + "Scope": "None", "Comments": [], "Prefix": [ "zh-Latn" @@ -95031,6 +104034,7 @@ "Standard X-system orthographic fallback for spelling Esperanto" ], "Added": "2017-03-14", + "Scope": "None", "Comments": [], "Prefix": [ "eo" @@ -95042,6 +104046,7 @@ "Lojban" ], "Added": "2001-11-11", + "Scope": "None", "Deprecated": "2003-09-02", "Comments": [], "Prefix": [], @@ -95054,6 +104059,7 @@ "Gaulish" ], "Added": "2001-05-25", + "Scope": "None", "Deprecated": "2015-03-29", "Comments": [ "see xcg, xga, xtg" @@ -95067,6 +104073,7 @@ "English, Oxford English Dictionary spelling" ], "Added": "2003-07-09", + "Scope": "None", "Deprecated": "2015-04-17", "Comments": [], "Prefix": [], @@ -95079,6 +104086,7 @@ "Amis" ], "Added": "1999-05-25", + "Scope": "None", "Deprecated": "2009-07-29", "Comments": [], "Prefix": [], @@ -95091,6 +104099,7 @@ "Bunun" ], "Added": "1999-05-25", + "Scope": "None", "Deprecated": "2009-07-29", "Comments": [], "Prefix": [], @@ -95103,6 +104112,7 @@ "Default Language" ], "Added": "1998-03-10", + "Scope": "None", "Comments": [], "Prefix": [], "Tag": "i-default" @@ -95113,6 +104123,7 @@ "Enochian" ], "Added": "2002-07-03", + "Scope": "None", "Deprecated": "2015-03-29", "Comments": [], "Prefix": [], @@ -95124,6 +104135,7 @@ "Hakka" ], "Added": "1999-01-31", + "Scope": "None", "Deprecated": "2000-01-10", "Comments": [], "Prefix": [], @@ -95136,6 +104148,7 @@ "Klingon" ], "Added": "1999-05-26", + "Scope": "None", "Deprecated": "2004-02-24", "Comments": [], "Prefix": [], @@ -95148,6 +104161,7 @@ "Luxembourgish" ], "Added": "1997-09-19", + "Scope": "None", "Deprecated": "1998-09-09", "Comments": [], "Prefix": [], @@ -95160,6 +104174,7 @@ "Mingo" ], "Added": "1997-09-19", + "Scope": "None", "Comments": [], "Prefix": [], "Tag": "i-mingo" @@ -95170,6 +104185,7 @@ "Navajo" ], "Added": "1997-09-19", + "Scope": "None", "Deprecated": "2000-02-18", "Comments": [], "Prefix": [], @@ -95182,6 +104198,7 @@ "Paiwan" ], "Added": "1999-05-25", + "Scope": "None", "Deprecated": "2009-07-29", "Comments": [], "Prefix": [], @@ -95194,6 +104211,7 @@ "Tao" ], "Added": "1999-05-25", + "Scope": "None", "Deprecated": "2009-07-29", "Comments": [], "Prefix": [], @@ -95206,6 +104224,7 @@ "Tayal" ], "Added": "1999-05-25", + "Scope": "None", "Deprecated": "2009-07-29", "Comments": [], "Prefix": [], @@ -95218,6 +104237,7 @@ "Tsou" ], "Added": "1999-05-25", + "Scope": "None", "Deprecated": "2009-07-29", "Comments": [], "Prefix": [], @@ -95230,6 +104250,7 @@ "Norwegian Bokmal" ], "Added": "1995-08-23", + "Scope": "None", "Deprecated": "2000-02-18", "Comments": [], "Prefix": [], @@ -95242,6 +104263,7 @@ "Norwegian Nynorsk" ], "Added": "1995-08-23", + "Scope": "None", "Deprecated": "2000-02-18", "Comments": [], "Prefix": [], @@ -95254,6 +104276,7 @@ "Belgian-French Sign Language" ], "Added": "2001-11-11", + "Scope": "None", "Deprecated": "2009-07-29", "Comments": [], "Prefix": [], @@ -95266,6 +104289,7 @@ "Belgian-Flemish Sign Language" ], "Added": "2001-11-11", + "Scope": "None", "Deprecated": "2009-07-29", "Comments": [], "Prefix": [], @@ -95278,6 +104302,7 @@ "Swiss German Sign Language" ], "Added": "2001-11-11", + "Scope": "None", "Deprecated": "2009-07-29", "Comments": [], "Prefix": [], @@ -95290,6 +104315,7 @@ "Mandarin or Standard Chinese" ], "Added": "1999-12-18", + "Scope": "None", "Deprecated": "2005-07-15", "Comments": [], "Prefix": [], @@ -95302,6 +104328,7 @@ "Hakka" ], "Added": "1999-12-18", + "Scope": "None", "Deprecated": "2009-07-29", "Comments": [], "Prefix": [], @@ -95314,6 +104341,7 @@ "Min, Fuzhou, Hokkien, Amoy, or Taiwanese" ], "Added": "1999-12-18", + "Scope": "None", "Deprecated": "2009-07-29", "Comments": [ "see cdo, cpx, czo, mnp, nan" @@ -95327,6 +104355,7 @@ "Minnan, Hokkien, Amoy, Taiwanese, Southern Min, Southern Fujian, Hoklo, Southern Fukien, Ho-lo" ], "Added": "2001-03-26", + "Scope": "None", "Deprecated": "2009-07-29", "Comments": [], "Prefix": [], @@ -95339,6 +104368,7 @@ "Xiang or Hunanese" ], "Added": "1999-12-18", + "Scope": "None", "Deprecated": "2009-07-29", "Comments": [], "Prefix": [], @@ -95351,6 +104381,7 @@ "Azerbaijani in Arabic script" ], "Added": "2003-05-30", + "Scope": "None", "Comments": [], "Prefix": [], "Tag": "az-Arab" @@ -95361,6 +104392,7 @@ "Azerbaijani in Cyrillic script" ], "Added": "2003-05-30", + "Scope": "None", "Comments": [], "Prefix": [], "Tag": "az-Cyrl" @@ -95371,6 +104403,7 @@ "Azerbaijani in Latin script" ], "Added": "2003-05-30", + "Scope": "None", "Comments": [], "Prefix": [], "Tag": "az-Latn" @@ -95381,6 +104414,7 @@ "Belarusian in Latin script" ], "Added": "2005-01-06", + "Scope": "None", "Comments": [], "Prefix": [], "Tag": "be-Latn" @@ -95391,6 +104425,7 @@ "Bosnian in Cyrillic script" ], "Added": "2005-02-17", + "Scope": "None", "Comments": [], "Prefix": [], "Tag": "bs-Cyrl" @@ -95401,6 +104436,7 @@ "Bosnian in Latin script" ], "Added": "2005-02-17", + "Scope": "None", "Comments": [], "Prefix": [], "Tag": "bs-Latn" @@ -95411,6 +104447,7 @@ "German, traditional orthography" ], "Added": "2001-07-17", + "Scope": "None", "Comments": [], "Prefix": [], "Tag": "de-1901" @@ -95421,6 +104458,7 @@ "German, orthography of 1996" ], "Added": "2001-07-17", + "Scope": "None", "Comments": [], "Prefix": [], "Tag": "de-1996" @@ -95431,6 +104469,7 @@ "German, Austrian variant, traditional orthography" ], "Added": "2001-07-17", + "Scope": "None", "Comments": [], "Prefix": [], "Tag": "de-AT-1901" @@ -95441,6 +104480,7 @@ "German, Austrian variant, orthography of 1996" ], "Added": "2001-07-17", + "Scope": "None", "Comments": [], "Prefix": [], "Tag": "de-AT-1996" @@ -95451,6 +104491,7 @@ "German, Swiss variant, traditional orthography" ], "Added": "2001-07-17", + "Scope": "None", "Comments": [], "Prefix": [], "Tag": "de-CH-1901" @@ -95461,6 +104502,7 @@ "German, Swiss variant, orthography of 1996" ], "Added": "2001-07-17", + "Scope": "None", "Comments": [], "Prefix": [], "Tag": "de-CH-1996" @@ -95471,6 +104513,7 @@ "German, German variant, traditional orthography" ], "Added": "2001-07-17", + "Scope": "None", "Comments": [], "Prefix": [], "Tag": "de-DE-1901" @@ -95481,6 +104524,7 @@ "German, German variant, orthography of 1996" ], "Added": "2001-07-17", + "Scope": "None", "Comments": [], "Prefix": [], "Tag": "de-DE-1996" @@ -95491,6 +104535,7 @@ "Boontling" ], "Added": "2003-02-14", + "Scope": "None", "Comments": [], "Prefix": [], "Tag": "en-boont" @@ -95501,6 +104546,7 @@ "Scouse" ], "Added": "2000-05-25", + "Scope": "None", "Comments": [], "Prefix": [], "Tag": "en-scouse" @@ -95511,6 +104557,7 @@ "Latin American Spanish" ], "Added": "2005-07-15", + "Scope": "None", "Comments": [], "Prefix": [], "Tag": "es-419" @@ -95521,6 +104568,7 @@ "Inuktitut in Canadian Aboriginal Syllabic script" ], "Added": "2005-02-17", + "Scope": "None", "Comments": [], "Prefix": [], "Tag": "iu-Cans" @@ -95531,6 +104579,7 @@ "Inuktitut in Latin script" ], "Added": "2005-02-17", + "Scope": "None", "Comments": [], "Prefix": [], "Tag": "iu-Latn" @@ -95541,6 +104590,7 @@ "Mongolian in Cyrillic script" ], "Added": "2005-02-17", + "Scope": "None", "Comments": [], "Prefix": [], "Tag": "mn-Cyrl" @@ -95551,6 +104601,7 @@ "Mongolian in Mongolian script" ], "Added": "2005-02-17", + "Scope": "None", "Comments": [], "Prefix": [], "Tag": "mn-Mong" @@ -95561,6 +104612,7 @@ "Brazilian Sign Language" ], "Added": "2001-11-11", + "Scope": "None", "Deprecated": "2009-07-29", "Comments": [], "Prefix": [], @@ -95573,6 +104625,7 @@ "Colombian Sign Language" ], "Added": "2001-11-11", + "Scope": "None", "Deprecated": "2009-07-29", "Comments": [], "Prefix": [], @@ -95585,6 +104638,7 @@ "German Sign Language" ], "Added": "2001-11-11", + "Scope": "None", "Deprecated": "2009-07-29", "Comments": [], "Prefix": [], @@ -95597,6 +104651,7 @@ "Danish Sign Language" ], "Added": "2001-11-11", + "Scope": "None", "Deprecated": "2009-07-29", "Comments": [], "Prefix": [], @@ -95609,6 +104664,7 @@ "Spanish Sign Language" ], "Added": "2001-11-11", + "Scope": "None", "Deprecated": "2009-07-29", "Comments": [], "Prefix": [], @@ -95621,6 +104677,7 @@ "French Sign Language" ], "Added": "2001-11-11", + "Scope": "None", "Deprecated": "2009-07-29", "Comments": [], "Prefix": [], @@ -95633,6 +104690,7 @@ "British Sign Language" ], "Added": "2001-03-02", + "Scope": "None", "Deprecated": "2009-07-29", "Comments": [], "Prefix": [], @@ -95645,6 +104703,7 @@ "Greek Sign Language" ], "Added": "2001-11-11", + "Scope": "None", "Deprecated": "2009-07-29", "Comments": [], "Prefix": [], @@ -95657,6 +104716,7 @@ "Irish Sign Language" ], "Added": "2001-03-02", + "Scope": "None", "Deprecated": "2009-07-29", "Comments": [], "Prefix": [], @@ -95669,6 +104729,7 @@ "Italian Sign Language" ], "Added": "2001-11-11", + "Scope": "None", "Deprecated": "2009-07-29", "Comments": [], "Prefix": [], @@ -95681,6 +104742,7 @@ "Japanese Sign Language" ], "Added": "2001-11-11", + "Scope": "None", "Deprecated": "2009-07-29", "Comments": [], "Prefix": [], @@ -95693,6 +104755,7 @@ "Mexican Sign Language" ], "Added": "2001-11-11", + "Scope": "None", "Deprecated": "2009-07-29", "Comments": [], "Prefix": [], @@ -95705,6 +104768,7 @@ "Nicaraguan Sign Language" ], "Added": "2001-03-02", + "Scope": "None", "Deprecated": "2009-07-29", "Comments": [], "Prefix": [], @@ -95717,6 +104781,7 @@ "Dutch Sign Language" ], "Added": "2001-11-11", + "Scope": "None", "Deprecated": "2009-07-29", "Comments": [], "Prefix": [], @@ -95729,6 +104794,7 @@ "Norwegian Sign Language" ], "Added": "2001-11-11", + "Scope": "None", "Deprecated": "2009-07-29", "Comments": [], "Prefix": [], @@ -95741,6 +104807,7 @@ "Portuguese Sign Language" ], "Added": "2001-11-11", + "Scope": "None", "Deprecated": "2009-07-29", "Comments": [], "Prefix": [], @@ -95753,6 +104820,7 @@ "Swedish Sign Language" ], "Added": "2001-11-11", + "Scope": "None", "Deprecated": "2009-07-29", "Comments": [], "Prefix": [], @@ -95765,6 +104833,7 @@ "American Sign Language" ], "Added": "2001-03-02", + "Scope": "None", "Deprecated": "2009-07-29", "Comments": [], "Prefix": [], @@ -95777,6 +104846,7 @@ "South African Sign Language" ], "Added": "2001-11-11", + "Scope": "None", "Deprecated": "2009-07-29", "Comments": [], "Prefix": [], @@ -95789,6 +104859,7 @@ "Natisone dialect, Nadiza dialect" ], "Added": "2004-06-01", + "Scope": "None", "Comments": [], "Prefix": [], "Tag": "sl-nedis" @@ -95799,6 +104870,7 @@ "Resian, Resianic, Rezijan" ], "Added": "2003-10-09", + "Scope": "None", "Comments": [], "Prefix": [], "Tag": "sl-rozaj" @@ -95809,6 +104881,7 @@ "Serbian in Cyrillic script" ], "Added": "2003-05-30", + "Scope": "None", "Comments": [], "Prefix": [], "Tag": "sr-Cyrl" @@ -95819,6 +104892,7 @@ "Serbian in Latin script" ], "Added": "2003-05-30", + "Scope": "None", "Comments": [], "Prefix": [], "Tag": "sr-Latn" @@ -95829,6 +104903,7 @@ "Tajik in Arabic script" ], "Added": "2005-02-17", + "Scope": "None", "Comments": [], "Prefix": [], "Tag": "tg-Arab" @@ -95839,6 +104914,7 @@ "Tajik in Cyrillic script" ], "Added": "2005-02-17", + "Scope": "None", "Comments": [], "Prefix": [], "Tag": "tg-Cyrl" @@ -95849,6 +104925,7 @@ "Uzbek in Cyrillic script" ], "Added": "2003-05-30", + "Scope": "None", "Comments": [], "Prefix": [], "Tag": "uz-Cyrl" @@ -95859,6 +104936,7 @@ "Uzbek in Latin script" ], "Added": "2003-05-30", + "Scope": "None", "Comments": [], "Prefix": [], "Tag": "uz-Latn" @@ -95869,6 +104947,7 @@ "Yiddish, in Latin script" ], "Added": "2003-01-07", + "Scope": "None", "Comments": [], "Prefix": [], "Tag": "yi-Latn" @@ -95879,6 +104958,7 @@ "Mandarin Chinese" ], "Added": "2005-07-15", + "Scope": "None", "Deprecated": "2009-07-29", "Comments": [], "Prefix": [], @@ -95891,6 +104971,7 @@ "Mandarin Chinese (Simplified)" ], "Added": "2005-07-15", + "Scope": "None", "Deprecated": "2009-07-29", "Comments": [], "Prefix": [], @@ -95903,6 +104984,7 @@ "Mandarin Chinese (Traditional)" ], "Added": "2005-07-15", + "Scope": "None", "Deprecated": "2009-07-29", "Comments": [], "Prefix": [], @@ -95915,6 +104997,7 @@ "Kan or Gan" ], "Added": "1999-12-18", + "Scope": "None", "Deprecated": "2009-07-29", "Comments": [], "Prefix": [], @@ -95927,6 +105010,7 @@ "simplified Chinese" ], "Added": "2003-05-30", + "Scope": "None", "Comments": [], "Prefix": [], "Tag": "zh-Hans" @@ -95937,6 +105021,7 @@ "PRC Mainland Chinese in simplified script" ], "Added": "2005-04-13", + "Scope": "None", "Comments": [], "Prefix": [], "Tag": "zh-Hans-CN" @@ -95947,6 +105032,7 @@ "Hong Kong Chinese in simplified script" ], "Added": "2005-04-11", + "Scope": "None", "Comments": [], "Prefix": [], "Tag": "zh-Hans-HK" @@ -95957,6 +105043,7 @@ "Macao Chinese in simplified script" ], "Added": "2005-04-11", + "Scope": "None", "Comments": [], "Prefix": [], "Tag": "zh-Hans-MO" @@ -95967,6 +105054,7 @@ "Singapore Chinese in simplified script" ], "Added": "2005-04-11", + "Scope": "None", "Comments": [], "Prefix": [], "Tag": "zh-Hans-SG" @@ -95977,6 +105065,7 @@ "Taiwan Chinese in simplified script" ], "Added": "2005-04-11", + "Scope": "None", "Comments": [], "Prefix": [], "Tag": "zh-Hans-TW" @@ -95987,6 +105076,7 @@ "traditional Chinese" ], "Added": "2003-05-30", + "Scope": "None", "Comments": [], "Prefix": [], "Tag": "zh-Hant" @@ -95997,6 +105087,7 @@ "PRC Mainland Chinese in traditional script" ], "Added": "2005-04-13", + "Scope": "None", "Comments": [], "Prefix": [], "Tag": "zh-Hant-CN" @@ -96007,6 +105098,7 @@ "Hong Kong Chinese in traditional script" ], "Added": "2005-04-11", + "Scope": "None", "Comments": [], "Prefix": [], "Tag": "zh-Hant-HK" @@ -96017,6 +105109,7 @@ "Macao Chinese in traditional script" ], "Added": "2005-04-11", + "Scope": "None", "Comments": [], "Prefix": [], "Tag": "zh-Hant-MO" @@ -96027,6 +105120,7 @@ "Singapore Chinese in traditional script" ], "Added": "2005-04-11", + "Scope": "None", "Comments": [], "Prefix": [], "Tag": "zh-Hant-SG" @@ -96037,6 +105131,7 @@ "Taiwan Chinese in traditional script" ], "Added": "2005-04-11", + "Scope": "None", "Comments": [], "Prefix": [], "Tag": "zh-Hant-TW" @@ -96047,6 +105142,7 @@ "Shanghaiese or Wu" ], "Added": "1999-12-18", + "Scope": "None", "Deprecated": "2009-07-29", "Comments": [], "Prefix": [], @@ -96059,6 +105155,7 @@ "Cantonese" ], "Added": "1999-12-18", + "Scope": "None", "Deprecated": "2009-07-29", "Comments": [], "Prefix": [], diff --git a/LanguageTags.sln b/LanguageTags.sln deleted file mode 100644 index fd8d18e..0000000 --- a/LanguageTags.sln +++ /dev/null @@ -1,67 +0,0 @@ - -Microsoft Visual Studio Solution File, Format Version 12.00 -# Visual Studio Version 17 -VisualStudioVersion = 17.2.32210.308 -MinimumVisualStudioVersion = 10.0.40219.1 -Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{C02ADEE0-B2CB-465B-912B-41D102239980}" - ProjectSection(SolutionItems) = preProject - .gitattributes = .gitattributes - .gitignore = .gitignore - LICENSE = LICENSE - README.md = README.md - version.json = version.json - EndProjectSection -EndProject -Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "LanguageData", "LanguageData", "{7E189F23-48EE-44B2-A102-0FDF27BE9C88}" - ProjectSection(SolutionItems) = preProject - LanguageData\iso6392 = LanguageData\iso6392 - LanguageData\iso6392.json = LanguageData\iso6392.json - LanguageData\iso6393 = LanguageData\iso6393 - LanguageData\iso6393.json = LanguageData\iso6393.json - LanguageData\rfc5646 = LanguageData\rfc5646 - LanguageData\rfc5646.json = LanguageData\rfc5646.json - EndProjectSection -EndProject -Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "GitHub", "GitHub", "{6AEC3BF4-00CE-4C23-A003-82F12FCBA630}" - ProjectSection(SolutionItems) = preProject - .github\dependabot.yml = .github\dependabot.yml - .github\workflows\merge-bot-pr.yml = .github\workflows\merge-bot-pr.yml - .github\workflows\publish-release.yml = .github\workflows\publish-release.yml - .github\workflows\update-languagedata.yml = .github\workflows\update-languagedata.yml - EndProjectSection -EndProject -Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "LanguageTags", "LanguageTags\LanguageTags.csproj", "{0C347342-311D-4EF8-839C-22D5E2B83345}" -EndProject -Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "LanguageTagsTests", "LanguageTagsTests\LanguageTagsTests.csproj", "{02D62FA1-FB2D-49FD-AA04-96E2B459C9A8}" - ProjectSection(ProjectDependencies) = postProject - {0C347342-311D-4EF8-839C-22D5E2B83345} = {0C347342-311D-4EF8-839C-22D5E2B83345} - EndProjectSection -EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "LanguageTagsCreate", "LanguageTagsCreate\LanguageTagsCreate.csproj", "{BFC9267B-FA9E-A42D-A1C8-0D28D3245B76}" -EndProject -Global - GlobalSection(SolutionConfigurationPlatforms) = preSolution - Debug|Any CPU = Debug|Any CPU - Release|Any CPU = Release|Any CPU - EndGlobalSection - GlobalSection(ProjectConfigurationPlatforms) = postSolution - {0C347342-311D-4EF8-839C-22D5E2B83345}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {0C347342-311D-4EF8-839C-22D5E2B83345}.Debug|Any CPU.Build.0 = Debug|Any CPU - {0C347342-311D-4EF8-839C-22D5E2B83345}.Release|Any CPU.ActiveCfg = Release|Any CPU - {0C347342-311D-4EF8-839C-22D5E2B83345}.Release|Any CPU.Build.0 = Release|Any CPU - {02D62FA1-FB2D-49FD-AA04-96E2B459C9A8}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {02D62FA1-FB2D-49FD-AA04-96E2B459C9A8}.Debug|Any CPU.Build.0 = Debug|Any CPU - {02D62FA1-FB2D-49FD-AA04-96E2B459C9A8}.Release|Any CPU.ActiveCfg = Release|Any CPU - {02D62FA1-FB2D-49FD-AA04-96E2B459C9A8}.Release|Any CPU.Build.0 = Release|Any CPU - {BFC9267B-FA9E-A42D-A1C8-0D28D3245B76}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {BFC9267B-FA9E-A42D-A1C8-0D28D3245B76}.Debug|Any CPU.Build.0 = Debug|Any CPU - {BFC9267B-FA9E-A42D-A1C8-0D28D3245B76}.Release|Any CPU.ActiveCfg = Release|Any CPU - {BFC9267B-FA9E-A42D-A1C8-0D28D3245B76}.Release|Any CPU.Build.0 = Release|Any CPU - EndGlobalSection - GlobalSection(SolutionProperties) = preSolution - HideSolutionNode = FALSE - EndGlobalSection - GlobalSection(ExtensibilityGlobals) = postSolution - SolutionGuid = {F2A0A473-E965-4EF2-ACB0-8276D0127ED2} - EndGlobalSection -EndGlobal diff --git a/LanguageTags.slnx b/LanguageTags.slnx new file mode 100644 index 0000000..7db519c --- /dev/null +++ b/LanguageTags.slnx @@ -0,0 +1,28 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/LanguageTags/Iso6392Data.cs b/LanguageTags/Iso6392Data.cs index 3238713..6380460 100644 --- a/LanguageTags/Iso6392Data.cs +++ b/LanguageTags/Iso6392Data.cs @@ -1,7 +1,6 @@ using System; using System.Collections.Generic; using System.Collections.Immutable; -using System.Diagnostics; using System.Globalization; using System.IO; using System.Linq; @@ -10,22 +9,20 @@ namespace ptr727.LanguageTags; +/// +/// Provides access to ISO 639-2 language code data. +/// public partial class Iso6392Data { - internal static void WriteFile(string fileName, string value) - { - // Always write as CRLF with newline at the end - if (value.Contains('\n') && !value.Contains('\r')) - { - value = value.Replace("\n", "\r\n"); - } - value = value.TrimEnd() + "\r\n"; - File.WriteAllText(fileName, value); - } - - public const string DataUri = "https://www.loc.gov/standards/iso639-2/ISO-639-2_utf-8.txt"; - public const string DataFileName = "iso6392"; - + internal const string DataUri = "https://www.loc.gov/standards/iso639-2/ISO-639-2_utf-8.txt"; + internal const string DataFileName = "iso6392"; + + /// + /// Loads ISO 639-2 data from a file. + /// + /// The path to the data file. + /// The loaded . + /// Thrown when the file contains invalid data. public static Iso6392Data LoadData(string fileName) { // https://www.loc.gov/standards/iso639-2/ascii_8bits.html @@ -38,44 +35,56 @@ public static Iso6392Data LoadData(string fileName) // LF line terminator // Read line by line - List recordList = []; + List recordList = []; using StreamReader lineReader = new(File.OpenRead(fileName)); while (lineReader.ReadLine() is { } line) { // Parse using pipe character List records = [.. line.Split('|').Select(item => item.Trim())]; - Debug.Assert(records.Count == 5); + if (records.Count != 5) + { + throw new InvalidDataException($"Invalid data found in ISO 639-2 record: {line}"); + } // Populate record - Record record = new() + Iso6392Record record = new() { Part2B = string.IsNullOrEmpty(records[0]) ? null : records[0], Part2T = string.IsNullOrEmpty(records[1]) ? null : records[1], Part1 = string.IsNullOrEmpty(records[2]) ? null : records[2], RefName = string.IsNullOrEmpty(records[3]) ? null : records[3], }; - Debug.Assert(!string.IsNullOrEmpty(record.Part2B)); - Debug.Assert(!string.IsNullOrEmpty(record.RefName)); + if (string.IsNullOrEmpty(record.Part2B) || string.IsNullOrEmpty(record.RefName)) + { + throw new InvalidDataException($"Invalid data found in ISO 639-2 record: {line}"); + } recordList.Add(record); } - - return new Iso6392Data { RecordList = [.. recordList] }; + return recordList.Count == 0 + ? throw new InvalidDataException($"No data found in ISO 639-2 file: {fileName}") + : new Iso6392Data { RecordList = [.. recordList] }; } - public static Iso6392Data LoadJson(string fileName) => - JsonSerializer.Deserialize( + /// + /// Loads ISO 639-2 data from a JSON file. + /// + /// The path to the JSON file. + /// The loaded or null if deserialization fails. + public static Iso6392Data? LoadJson(string fileName) => + JsonSerializer.Deserialize( File.ReadAllText(fileName), - JsonOptions.JsonReadOptions + LanguageJsonContext.Default.Iso6392Data ); - public static void SaveJson(string fileName, Iso6392Data iso6392) => + internal static void SaveJson(string fileName, Iso6392Data iso6392) => File.WriteAllText( fileName, - JsonSerializer.Serialize(iso6392, JsonOptions.JsonWriteOptions) + JsonSerializer.Serialize(iso6392, LanguageJsonContext.Default.Iso6392Data) ); - public static void GenCode(string fileName, Iso6392Data iso6392) + internal static void GenCode(string fileName, Iso6392Data iso6392) { + ArgumentNullException.ThrowIfNull(iso6392); StringBuilder stringBuilder = new(); _ = stringBuilder .Append( @@ -95,7 +104,7 @@ public static Iso6392Data Create() => ) .Append("\r\n"); - foreach (Record record in iso6392.RecordList) + foreach (Iso6392Record record in iso6392.RecordList) { _ = stringBuilder .Append( @@ -103,49 +112,12 @@ public static Iso6392Data Create() => $$""" new() { - """ - ) - .Append("\r\n"); - if (!string.IsNullOrEmpty(record.Part2B)) - { - _ = stringBuilder - .Append( - CultureInfo.InvariantCulture, - $" Part2B = \"{record.Part2B}\"," - ) - .Append("\r\n"); - } - if (!string.IsNullOrEmpty(record.Part2T)) - { - _ = stringBuilder - .Append( - CultureInfo.InvariantCulture, - $" Part2T = \"{record.Part2T}\"," - ) - .Append("\r\n"); - } - if (!string.IsNullOrEmpty(record.Part1)) - { - _ = stringBuilder - .Append( - CultureInfo.InvariantCulture, - $" Part1 = \"{record.Part1}\"," - ) - .Append("\r\n"); - } - if (!string.IsNullOrEmpty(record.RefName)) - { - _ = stringBuilder - .Append( - CultureInfo.InvariantCulture, - $" RefName = \"{record.RefName}\"," - ) - .Append("\r\n"); - } - _ = stringBuilder - .Append( - CultureInfo.InvariantCulture, - $$""" + Part2B = {{LanguageSchema.GetCodeGenString(record.Part2B)}}, + Part2T = {{LanguageSchema.GetCodeGenString(record.Part2T)}}, + Part1 = {{LanguageSchema.GetCodeGenString(record.Part1)}}, + RefName = {{LanguageSchema.GetCodeGenString( + record.RefName + )}}, }, """ ) @@ -161,30 +133,29 @@ public static Iso6392Data Create() => ) .Append("\r\n"); - WriteFile(fileName, stringBuilder.ToString()); + LanguageSchema.WriteFile(fileName, stringBuilder.ToString()); } - public record Record + /// + /// Gets the collection of ISO 639-2 language records. + /// + public required ImmutableArray RecordList { get; init; } + + /// + /// Finds an ISO 639-2 language record by language code or description. + /// + /// The language code or description to search for. + /// If true, searches in the reference name field; otherwise, only searches language codes. + /// The matching or null if not found. + public Iso6392Record? Find(string? languageTag, bool includeDescription) { - // 639-2 Bibliographic - public string Part2B { get; init; } - - // 639-2 Terminology - public string Part2T { get; init; } - - // 639-1 - public string Part1 { get; init; } - - // English name - public string RefName { get; init; } - } - - public ImmutableArray RecordList { get; init; } + if (string.IsNullOrEmpty(languageTag)) + { + return null; + } - public Record Find(string languageTag, bool includeDescription) - { // Find the matching language entry - Record record = null; + Iso6392Record? record = null; // 693 3 letter form if (languageTag.Length == 3) @@ -252,3 +223,29 @@ record = RecordList.FirstOrDefault(item => return null; } } + +/// +/// Represents an ISO 639-2 language code record. +/// +public record Iso6392Record +{ + /// + /// Gets the ISO 639-2/B bibliographic code (3 letters). + /// + public string? Part2B { get; init; } + + /// + /// Gets the ISO 639-2/T terminology code (3 letters). + /// + public string? Part2T { get; init; } + + /// + /// Gets the ISO 639-1 code (2 letters). + /// + public string? Part1 { get; init; } + + /// + /// Gets the English reference name of the language. + /// + public string? RefName { get; init; } +} diff --git a/LanguageTags/Iso6392DataGen.cs b/LanguageTags/Iso6392DataGen.cs index 634bbb2..8f30c8c 100644 --- a/LanguageTags/Iso6392DataGen.cs +++ b/LanguageTags/Iso6392DataGen.cs @@ -12,35 +12,87 @@ public static Iso6392Data Create() => new() { Part2B = "aar", + Part2T = null, Part1 = "aa", RefName = "Afar", }, new() { Part2B = "abk", + Part2T = null, Part1 = "ab", RefName = "Abkhazian", }, - new() { Part2B = "ace", RefName = "Achinese" }, - new() { Part2B = "ach", RefName = "Acoli" }, - new() { Part2B = "ada", RefName = "Adangme" }, - new() { Part2B = "ady", RefName = "Adyghe; Adygei" }, - new() { Part2B = "afa", RefName = "Afro-Asiatic languages" }, - new() { Part2B = "afh", RefName = "Afrihili" }, + new() + { + Part2B = "ace", + Part2T = null, + Part1 = null, + RefName = "Achinese", + }, + new() + { + Part2B = "ach", + Part2T = null, + Part1 = null, + RefName = "Acoli", + }, + new() + { + Part2B = "ada", + Part2T = null, + Part1 = null, + RefName = "Adangme", + }, + new() + { + Part2B = "ady", + Part2T = null, + Part1 = null, + RefName = "Adyghe; Adygei", + }, + new() + { + Part2B = "afa", + Part2T = null, + Part1 = null, + RefName = "Afro-Asiatic languages", + }, + new() + { + Part2B = "afh", + Part2T = null, + Part1 = null, + RefName = "Afrihili", + }, new() { Part2B = "afr", + Part2T = null, Part1 = "af", RefName = "Afrikaans", }, - new() { Part2B = "ain", RefName = "Ainu" }, + new() + { + Part2B = "ain", + Part2T = null, + Part1 = null, + RefName = "Ainu", + }, new() { Part2B = "aka", + Part2T = null, Part1 = "ak", RefName = "Akan", }, - new() { Part2B = "akk", RefName = "Akkadian" }, + new() + { + Part2B = "akk", + Part2T = null, + Part1 = null, + RefName = "Akkadian", + }, new() { Part2B = "alb", @@ -48,32 +100,73 @@ public static Iso6392Data Create() => Part1 = "sq", RefName = "Albanian", }, - new() { Part2B = "ale", RefName = "Aleut" }, - new() { Part2B = "alg", RefName = "Algonquian languages" }, - new() { Part2B = "alt", RefName = "Southern Altai" }, + new() + { + Part2B = "ale", + Part2T = null, + Part1 = null, + RefName = "Aleut", + }, + new() + { + Part2B = "alg", + Part2T = null, + Part1 = null, + RefName = "Algonquian languages", + }, + new() + { + Part2B = "alt", + Part2T = null, + Part1 = null, + RefName = "Southern Altai", + }, new() { Part2B = "amh", + Part2T = null, Part1 = "am", RefName = "Amharic", }, - new() { Part2B = "ang", RefName = "English, Old (ca.450-1100)" }, - new() { Part2B = "anp", RefName = "Angika" }, - new() { Part2B = "apa", RefName = "Apache languages" }, + new() + { + Part2B = "ang", + Part2T = null, + Part1 = null, + RefName = "English, Old (ca.450-1100)", + }, + new() + { + Part2B = "anp", + Part2T = null, + Part1 = null, + RefName = "Angika", + }, + new() + { + Part2B = "apa", + Part2T = null, + Part1 = null, + RefName = "Apache languages", + }, new() { Part2B = "ara", + Part2T = null, Part1 = "ar", RefName = "Arabic", }, new() { Part2B = "arc", + Part2T = null, + Part1 = null, RefName = "Official Aramaic (700-300 BCE); Imperial Aramaic (700-300 BCE)", }, new() { Part2B = "arg", + Part2T = null, Part1 = "an", RefName = "Aragonese", }, @@ -84,60 +177,139 @@ public static Iso6392Data Create() => Part1 = "hy", RefName = "Armenian", }, - new() { Part2B = "arn", RefName = "Mapudungun; Mapuche" }, - new() { Part2B = "arp", RefName = "Arapaho" }, - new() { Part2B = "art", RefName = "Artificial languages" }, - new() { Part2B = "arw", RefName = "Arawak" }, + new() + { + Part2B = "arn", + Part2T = null, + Part1 = null, + RefName = "Mapudungun; Mapuche", + }, + new() + { + Part2B = "arp", + Part2T = null, + Part1 = null, + RefName = "Arapaho", + }, + new() + { + Part2B = "art", + Part2T = null, + Part1 = null, + RefName = "Artificial languages", + }, + new() + { + Part2B = "arw", + Part2T = null, + Part1 = null, + RefName = "Arawak", + }, new() { Part2B = "asm", + Part2T = null, Part1 = "as", RefName = "Assamese", }, - new() { Part2B = "ast", RefName = "Asturian; Bable; Leonese; Asturleonese" }, - new() { Part2B = "ath", RefName = "Athapascan languages" }, - new() { Part2B = "aus", RefName = "Australian languages" }, + new() + { + Part2B = "ast", + Part2T = null, + Part1 = null, + RefName = "Asturian; Bable; Leonese; Asturleonese", + }, + new() + { + Part2B = "ath", + Part2T = null, + Part1 = null, + RefName = "Athapascan languages", + }, + new() + { + Part2B = "aus", + Part2T = null, + Part1 = null, + RefName = "Australian languages", + }, new() { Part2B = "ava", + Part2T = null, Part1 = "av", RefName = "Avaric", }, new() { Part2B = "ave", + Part2T = null, Part1 = "ae", RefName = "Avestan", }, - new() { Part2B = "awa", RefName = "Awadhi" }, + new() + { + Part2B = "awa", + Part2T = null, + Part1 = null, + RefName = "Awadhi", + }, new() { Part2B = "aym", + Part2T = null, Part1 = "ay", RefName = "Aymara", }, new() { Part2B = "aze", + Part2T = null, Part1 = "az", RefName = "Azerbaijani", }, - new() { Part2B = "bad", RefName = "Banda languages" }, - new() { Part2B = "bai", RefName = "Bamileke languages" }, + new() + { + Part2B = "bad", + Part2T = null, + Part1 = null, + RefName = "Banda languages", + }, + new() + { + Part2B = "bai", + Part2T = null, + Part1 = null, + RefName = "Bamileke languages", + }, new() { Part2B = "bak", + Part2T = null, Part1 = "ba", RefName = "Bashkir", }, - new() { Part2B = "bal", RefName = "Baluchi" }, + new() + { + Part2B = "bal", + Part2T = null, + Part1 = null, + RefName = "Baluchi", + }, new() { Part2B = "bam", + Part2T = null, Part1 = "bm", RefName = "Bambara", }, - new() { Part2B = "ban", RefName = "Balinese" }, + new() + { + Part2B = "ban", + Part2T = null, + Part1 = null, + RefName = "Balinese", + }, new() { Part2B = "baq", @@ -145,54 +317,150 @@ public static Iso6392Data Create() => Part1 = "eu", RefName = "Basque", }, - new() { Part2B = "bas", RefName = "Basa" }, - new() { Part2B = "bat", RefName = "Baltic languages" }, - new() { Part2B = "bej", RefName = "Beja; Bedawiyet" }, + new() + { + Part2B = "bas", + Part2T = null, + Part1 = null, + RefName = "Basa", + }, + new() + { + Part2B = "bat", + Part2T = null, + Part1 = null, + RefName = "Baltic languages", + }, + new() + { + Part2B = "bej", + Part2T = null, + Part1 = null, + RefName = "Beja; Bedawiyet", + }, new() { Part2B = "bel", + Part2T = null, Part1 = "be", RefName = "Belarusian", }, - new() { Part2B = "bem", RefName = "Bemba" }, + new() + { + Part2B = "bem", + Part2T = null, + Part1 = null, + RefName = "Bemba", + }, new() { Part2B = "ben", + Part2T = null, Part1 = "bn", RefName = "Bengali", }, - new() { Part2B = "ber", RefName = "Berber languages" }, - new() { Part2B = "bho", RefName = "Bhojpuri" }, - new() { Part2B = "bih", RefName = "Bihari languages" }, - new() { Part2B = "bik", RefName = "Bikol" }, - new() { Part2B = "bin", RefName = "Bini; Edo" }, + new() + { + Part2B = "ber", + Part2T = null, + Part1 = null, + RefName = "Berber languages", + }, + new() + { + Part2B = "bho", + Part2T = null, + Part1 = null, + RefName = "Bhojpuri", + }, + new() + { + Part2B = "bih", + Part2T = null, + Part1 = null, + RefName = "Bihari languages", + }, + new() + { + Part2B = "bik", + Part2T = null, + Part1 = null, + RefName = "Bikol", + }, + new() + { + Part2B = "bin", + Part2T = null, + Part1 = null, + RefName = "Bini; Edo", + }, new() { Part2B = "bis", + Part2T = null, Part1 = "bi", RefName = "Bislama", }, - new() { Part2B = "bla", RefName = "Siksika" }, - new() { Part2B = "bnt", RefName = "Bantu languages" }, + new() + { + Part2B = "bla", + Part2T = null, + Part1 = null, + RefName = "Siksika", + }, + new() + { + Part2B = "bnt", + Part2T = null, + Part1 = null, + RefName = "Bantu languages", + }, new() { Part2B = "bos", + Part2T = null, Part1 = "bs", RefName = "Bosnian", }, - new() { Part2B = "bra", RefName = "Braj" }, + new() + { + Part2B = "bra", + Part2T = null, + Part1 = null, + RefName = "Braj", + }, new() { Part2B = "bre", + Part2T = null, Part1 = "br", RefName = "Breton", }, - new() { Part2B = "btk", RefName = "Batak languages" }, - new() { Part2B = "bua", RefName = "Buriat" }, - new() { Part2B = "bug", RefName = "Buginese" }, + new() + { + Part2B = "btk", + Part2T = null, + Part1 = null, + RefName = "Batak languages", + }, + new() + { + Part2B = "bua", + Part2T = null, + Part1 = null, + RefName = "Buriat", + }, + new() + { + Part2B = "bug", + Part2T = null, + Part1 = null, + RefName = "Buginese", + }, new() { Part2B = "bul", + Part2T = null, Part1 = "bg", RefName = "Bulgarian", }, @@ -203,33 +471,90 @@ public static Iso6392Data Create() => Part1 = "my", RefName = "Burmese", }, - new() { Part2B = "byn", RefName = "Blin; Bilin" }, - new() { Part2B = "cad", RefName = "Caddo" }, - new() { Part2B = "cai", RefName = "Central American Indian languages" }, - new() { Part2B = "car", RefName = "Galibi Carib" }, + new() + { + Part2B = "byn", + Part2T = null, + Part1 = null, + RefName = "Blin; Bilin", + }, + new() + { + Part2B = "cad", + Part2T = null, + Part1 = null, + RefName = "Caddo", + }, + new() + { + Part2B = "cai", + Part2T = null, + Part1 = null, + RefName = "Central American Indian languages", + }, + new() + { + Part2B = "car", + Part2T = null, + Part1 = null, + RefName = "Galibi Carib", + }, new() { Part2B = "cat", + Part2T = null, Part1 = "ca", RefName = "Catalan; Valencian", }, - new() { Part2B = "cau", RefName = "Caucasian languages" }, - new() { Part2B = "ceb", RefName = "Cebuano" }, - new() { Part2B = "cel", RefName = "Celtic languages" }, + new() + { + Part2B = "cau", + Part2T = null, + Part1 = null, + RefName = "Caucasian languages", + }, + new() + { + Part2B = "ceb", + Part2T = null, + Part1 = null, + RefName = "Cebuano", + }, + new() + { + Part2B = "cel", + Part2T = null, + Part1 = null, + RefName = "Celtic languages", + }, new() { Part2B = "cha", + Part2T = null, Part1 = "ch", RefName = "Chamorro", }, - new() { Part2B = "chb", RefName = "Chibcha" }, + new() + { + Part2B = "chb", + Part2T = null, + Part1 = null, + RefName = "Chibcha", + }, new() { Part2B = "che", + Part2T = null, Part1 = "ce", RefName = "Chechen", }, - new() { Part2B = "chg", RefName = "Chagatai" }, + new() + { + Part2B = "chg", + Part2T = null, + Part1 = null, + RefName = "Chagatai", + }, new() { Part2B = "chi", @@ -237,15 +562,52 @@ public static Iso6392Data Create() => Part1 = "zh", RefName = "Chinese", }, - new() { Part2B = "chk", RefName = "Chuukese" }, - new() { Part2B = "chm", RefName = "Mari" }, - new() { Part2B = "chn", RefName = "Chinook jargon" }, - new() { Part2B = "cho", RefName = "Choctaw" }, - new() { Part2B = "chp", RefName = "Chipewyan; Dene Suline" }, - new() { Part2B = "chr", RefName = "Cherokee" }, + new() + { + Part2B = "chk", + Part2T = null, + Part1 = null, + RefName = "Chuukese", + }, + new() + { + Part2B = "chm", + Part2T = null, + Part1 = null, + RefName = "Mari", + }, + new() + { + Part2B = "chn", + Part2T = null, + Part1 = null, + RefName = "Chinook jargon", + }, + new() + { + Part2B = "cho", + Part2T = null, + Part1 = null, + RefName = "Choctaw", + }, + new() + { + Part2B = "chp", + Part2T = null, + Part1 = null, + RefName = "Chipewyan; Dene Suline", + }, + new() + { + Part2B = "chr", + Part2T = null, + Part1 = null, + RefName = "Cherokee", + }, new() { Part2B = "chu", + Part2T = null, Part1 = "cu", RefName = "Church Slavic; Old Slavonic; Church Slavonic; Old Bulgarian; Old Church Slavonic", @@ -253,38 +615,108 @@ public static Iso6392Data Create() => new() { Part2B = "chv", + Part2T = null, Part1 = "cv", RefName = "Chuvash", }, - new() { Part2B = "chy", RefName = "Cheyenne" }, - new() { Part2B = "cmc", RefName = "Chamic languages" }, - new() { Part2B = "cnr", RefName = "Montenegrin" }, - new() { Part2B = "cop", RefName = "Coptic" }, + new() + { + Part2B = "chy", + Part2T = null, + Part1 = null, + RefName = "Cheyenne", + }, + new() + { + Part2B = "cmc", + Part2T = null, + Part1 = null, + RefName = "Chamic languages", + }, + new() + { + Part2B = "cnr", + Part2T = null, + Part1 = null, + RefName = "Montenegrin", + }, + new() + { + Part2B = "cop", + Part2T = null, + Part1 = null, + RefName = "Coptic", + }, new() { Part2B = "cor", + Part2T = null, Part1 = "kw", RefName = "Cornish", }, new() { Part2B = "cos", + Part2T = null, Part1 = "co", RefName = "Corsican", }, - new() { Part2B = "cpe", RefName = "Creoles and pidgins, English based" }, - new() { Part2B = "cpf", RefName = "Creoles and pidgins, French-based" }, - new() { Part2B = "cpp", RefName = "Creoles and pidgins, Portuguese-based" }, + new() + { + Part2B = "cpe", + Part2T = null, + Part1 = null, + RefName = "Creoles and pidgins, English based", + }, + new() + { + Part2B = "cpf", + Part2T = null, + Part1 = null, + RefName = "Creoles and pidgins, French-based", + }, + new() + { + Part2B = "cpp", + Part2T = null, + Part1 = null, + RefName = "Creoles and pidgins, Portuguese-based", + }, new() { Part2B = "cre", + Part2T = null, Part1 = "cr", RefName = "Cree", }, - new() { Part2B = "crh", RefName = "Crimean Tatar; Crimean Turkish" }, - new() { Part2B = "crp", RefName = "Creoles and pidgins" }, - new() { Part2B = "csb", RefName = "Kashubian" }, - new() { Part2B = "cus", RefName = "Cushitic languages" }, + new() + { + Part2B = "crh", + Part2T = null, + Part1 = null, + RefName = "Crimean Tatar; Crimean Turkish", + }, + new() + { + Part2B = "crp", + Part2T = null, + Part1 = null, + RefName = "Creoles and pidgins", + }, + new() + { + Part2B = "csb", + Part2T = null, + Part1 = null, + RefName = "Kashubian", + }, + new() + { + Part2B = "cus", + Part2T = null, + Part1 = null, + RefName = "Cushitic languages", + }, new() { Part2B = "cze", @@ -292,30 +724,104 @@ public static Iso6392Data Create() => Part1 = "cs", RefName = "Czech", }, - new() { Part2B = "dak", RefName = "Dakota" }, + new() + { + Part2B = "dak", + Part2T = null, + Part1 = null, + RefName = "Dakota", + }, new() { Part2B = "dan", + Part2T = null, Part1 = "da", RefName = "Danish", }, - new() { Part2B = "dar", RefName = "Dargwa" }, - new() { Part2B = "day", RefName = "Land Dayak languages" }, - new() { Part2B = "del", RefName = "Delaware" }, - new() { Part2B = "den", RefName = "Slave (Athapascan)" }, - new() { Part2B = "dgr", RefName = "Tlicho; Dogrib" }, - new() { Part2B = "din", RefName = "Dinka" }, + new() + { + Part2B = "dar", + Part2T = null, + Part1 = null, + RefName = "Dargwa", + }, + new() + { + Part2B = "day", + Part2T = null, + Part1 = null, + RefName = "Land Dayak languages", + }, + new() + { + Part2B = "del", + Part2T = null, + Part1 = null, + RefName = "Delaware", + }, + new() + { + Part2B = "den", + Part2T = null, + Part1 = null, + RefName = "Slave (Athapascan)", + }, + new() + { + Part2B = "dgr", + Part2T = null, + Part1 = null, + RefName = "Tlicho; Dogrib", + }, + new() + { + Part2B = "din", + Part2T = null, + Part1 = null, + RefName = "Dinka", + }, new() { Part2B = "div", + Part2T = null, Part1 = "dv", RefName = "Divehi; Dhivehi; Maldivian", }, - new() { Part2B = "doi", RefName = "Dogri" }, - new() { Part2B = "dra", RefName = "Dravidian languages" }, - new() { Part2B = "dsb", RefName = "Lower Sorbian" }, - new() { Part2B = "dua", RefName = "Duala" }, - new() { Part2B = "dum", RefName = "Dutch, Middle (ca.1050-1350)" }, + new() + { + Part2B = "doi", + Part2T = null, + Part1 = null, + RefName = "Dogri", + }, + new() + { + Part2B = "dra", + Part2T = null, + Part1 = null, + RefName = "Dravidian languages", + }, + new() + { + Part2B = "dsb", + Part2T = null, + Part1 = null, + RefName = "Lower Sorbian", + }, + new() + { + Part2B = "dua", + Part2T = null, + Part1 = null, + RefName = "Duala", + }, + new() + { + Part2B = "dum", + Part2T = null, + Part1 = null, + RefName = "Dutch, Middle (ca.1050-1350)", + }, new() { Part2B = "dut", @@ -323,66 +829,146 @@ public static Iso6392Data Create() => Part1 = "nl", RefName = "Dutch; Flemish", }, - new() { Part2B = "dyu", RefName = "Dyula" }, + new() + { + Part2B = "dyu", + Part2T = null, + Part1 = null, + RefName = "Dyula", + }, new() { Part2B = "dzo", + Part2T = null, Part1 = "dz", RefName = "Dzongkha", }, - new() { Part2B = "efi", RefName = "Efik" }, - new() { Part2B = "egy", RefName = "Egyptian (Ancient)" }, - new() { Part2B = "eka", RefName = "Ekajuk" }, - new() { Part2B = "elx", RefName = "Elamite" }, + new() + { + Part2B = "efi", + Part2T = null, + Part1 = null, + RefName = "Efik", + }, + new() + { + Part2B = "egy", + Part2T = null, + Part1 = null, + RefName = "Egyptian (Ancient)", + }, + new() + { + Part2B = "eka", + Part2T = null, + Part1 = null, + RefName = "Ekajuk", + }, + new() + { + Part2B = "elx", + Part2T = null, + Part1 = null, + RefName = "Elamite", + }, new() { Part2B = "eng", + Part2T = null, Part1 = "en", RefName = "English", }, - new() { Part2B = "enm", RefName = "English, Middle (1100-1500)" }, + new() + { + Part2B = "enm", + Part2T = null, + Part1 = null, + RefName = "English, Middle (1100-1500)", + }, new() { Part2B = "epo", + Part2T = null, Part1 = "eo", RefName = "Esperanto", }, new() { Part2B = "est", + Part2T = null, Part1 = "et", RefName = "Estonian", }, new() { Part2B = "ewe", + Part2T = null, Part1 = "ee", RefName = "Ewe", }, - new() { Part2B = "ewo", RefName = "Ewondo" }, - new() { Part2B = "fan", RefName = "Fang" }, + new() + { + Part2B = "ewo", + Part2T = null, + Part1 = null, + RefName = "Ewondo", + }, + new() + { + Part2B = "fan", + Part2T = null, + Part1 = null, + RefName = "Fang", + }, new() { Part2B = "fao", + Part2T = null, Part1 = "fo", RefName = "Faroese", }, - new() { Part2B = "fat", RefName = "Fanti" }, + new() + { + Part2B = "fat", + Part2T = null, + Part1 = null, + RefName = "Fanti", + }, new() { Part2B = "fij", + Part2T = null, Part1 = "fj", RefName = "Fijian", }, - new() { Part2B = "fil", RefName = "Filipino; Pilipino" }, + new() + { + Part2B = "fil", + Part2T = null, + Part1 = null, + RefName = "Filipino; Pilipino", + }, new() { Part2B = "fin", + Part2T = null, Part1 = "fi", RefName = "Finnish", }, - new() { Part2B = "fiu", RefName = "Finno-Ugrian languages" }, - new() { Part2B = "fon", RefName = "Fon" }, + new() + { + Part2B = "fiu", + Part2T = null, + Part1 = null, + RefName = "Finno-Ugrian languages", + }, + new() + { + Part2B = "fon", + Part2T = null, + Part1 = null, + RefName = "Fon", + }, new() { Part2B = "fre", @@ -390,27 +976,83 @@ public static Iso6392Data Create() => Part1 = "fr", RefName = "French", }, - new() { Part2B = "frm", RefName = "French, Middle (ca.1400-1600)" }, - new() { Part2B = "fro", RefName = "French, Old (842-ca.1400)" }, - new() { Part2B = "frr", RefName = "Northern Frisian" }, - new() { Part2B = "frs", RefName = "Eastern Frisian" }, + new() + { + Part2B = "frm", + Part2T = null, + Part1 = null, + RefName = "French, Middle (ca.1400-1600)", + }, + new() + { + Part2B = "fro", + Part2T = null, + Part1 = null, + RefName = "French, Old (842-ca.1400)", + }, + new() + { + Part2B = "frr", + Part2T = null, + Part1 = null, + RefName = "Northern Frisian", + }, + new() + { + Part2B = "frs", + Part2T = null, + Part1 = null, + RefName = "Eastern Frisian", + }, new() { Part2B = "fry", + Part2T = null, Part1 = "fy", RefName = "Western Frisian", }, new() { Part2B = "ful", + Part2T = null, Part1 = "ff", RefName = "Fulah", }, - new() { Part2B = "fur", RefName = "Friulian" }, - new() { Part2B = "gaa", RefName = "Ga" }, - new() { Part2B = "gay", RefName = "Gayo" }, - new() { Part2B = "gba", RefName = "Gbaya" }, - new() { Part2B = "gem", RefName = "Germanic languages" }, + new() + { + Part2B = "fur", + Part2T = null, + Part1 = null, + RefName = "Friulian", + }, + new() + { + Part2B = "gaa", + Part2T = null, + Part1 = null, + RefName = "Ga", + }, + new() + { + Part2B = "gay", + Part2T = null, + Part1 = null, + RefName = "Gayo", + }, + new() + { + Part2B = "gba", + Part2T = null, + Part1 = null, + RefName = "Gbaya", + }, + new() + { + Part2B = "gem", + Part2T = null, + Part1 = null, + RefName = "Germanic languages", + }, new() { Part2B = "geo", @@ -425,39 +1067,97 @@ public static Iso6392Data Create() => Part1 = "de", RefName = "German", }, - new() { Part2B = "gez", RefName = "Geez" }, - new() { Part2B = "gil", RefName = "Gilbertese" }, + new() + { + Part2B = "gez", + Part2T = null, + Part1 = null, + RefName = "Geez", + }, + new() + { + Part2B = "gil", + Part2T = null, + Part1 = null, + RefName = "Gilbertese", + }, new() { Part2B = "gla", + Part2T = null, Part1 = "gd", RefName = "Gaelic; Scottish Gaelic", }, new() { Part2B = "gle", + Part2T = null, Part1 = "ga", RefName = "Irish", }, new() { Part2B = "glg", + Part2T = null, Part1 = "gl", RefName = "Galician", }, new() { Part2B = "glv", + Part2T = null, Part1 = "gv", RefName = "Manx", }, - new() { Part2B = "gmh", RefName = "German, Middle High (ca.1050-1500)" }, - new() { Part2B = "goh", RefName = "German, Old High (ca.750-1050)" }, - new() { Part2B = "gon", RefName = "Gondi" }, - new() { Part2B = "gor", RefName = "Gorontalo" }, - new() { Part2B = "got", RefName = "Gothic" }, - new() { Part2B = "grb", RefName = "Grebo" }, - new() { Part2B = "grc", RefName = "Greek, Ancient (to 1453)" }, + new() + { + Part2B = "gmh", + Part2T = null, + Part1 = null, + RefName = "German, Middle High (ca.1050-1500)", + }, + new() + { + Part2B = "goh", + Part2T = null, + Part1 = null, + RefName = "German, Old High (ca.750-1050)", + }, + new() + { + Part2B = "gon", + Part2T = null, + Part1 = null, + RefName = "Gondi", + }, + new() + { + Part2B = "gor", + Part2T = null, + Part1 = null, + RefName = "Gorontalo", + }, + new() + { + Part2B = "got", + Part2T = null, + Part1 = null, + RefName = "Gothic", + }, + new() + { + Part2B = "grb", + Part2T = null, + Part1 = null, + RefName = "Grebo", + }, + new() + { + Part2B = "grc", + Part2T = null, + Part1 = null, + RefName = "Greek, Ancient (to 1453)", + }, new() { Part2B = "gre", @@ -468,77 +1168,154 @@ public static Iso6392Data Create() => new() { Part2B = "grn", + Part2T = null, Part1 = "gn", RefName = "Guarani", }, - new() { Part2B = "gsw", RefName = "Swiss German; Alemannic; Alsatian" }, + new() + { + Part2B = "gsw", + Part2T = null, + Part1 = null, + RefName = "Swiss German; Alemannic; Alsatian", + }, new() { Part2B = "guj", + Part2T = null, Part1 = "gu", RefName = "Gujarati", }, - new() { Part2B = "gwi", RefName = "Gwich'in" }, - new() { Part2B = "hai", RefName = "Haida" }, + new() + { + Part2B = "gwi", + Part2T = null, + Part1 = null, + RefName = "Gwich'in", + }, + new() + { + Part2B = "hai", + Part2T = null, + Part1 = null, + RefName = "Haida", + }, new() { Part2B = "hat", + Part2T = null, Part1 = "ht", RefName = "Haitian; Haitian Creole", }, new() { Part2B = "hau", + Part2T = null, Part1 = "ha", RefName = "Hausa", }, - new() { Part2B = "haw", RefName = "Hawaiian" }, + new() + { + Part2B = "haw", + Part2T = null, + Part1 = null, + RefName = "Hawaiian", + }, new() { Part2B = "heb", + Part2T = null, Part1 = "he", RefName = "Hebrew", }, new() { Part2B = "her", + Part2T = null, Part1 = "hz", RefName = "Herero", }, - new() { Part2B = "hil", RefName = "Hiligaynon" }, - new() { Part2B = "him", RefName = "Himachali languages; Western Pahari languages" }, + new() + { + Part2B = "hil", + Part2T = null, + Part1 = null, + RefName = "Hiligaynon", + }, + new() + { + Part2B = "him", + Part2T = null, + Part1 = null, + RefName = "Himachali languages; Western Pahari languages", + }, new() { Part2B = "hin", + Part2T = null, Part1 = "hi", RefName = "Hindi", }, - new() { Part2B = "hit", RefName = "Hittite" }, - new() { Part2B = "hmn", RefName = "Hmong; Mong" }, + new() + { + Part2B = "hit", + Part2T = null, + Part1 = null, + RefName = "Hittite", + }, + new() + { + Part2B = "hmn", + Part2T = null, + Part1 = null, + RefName = "Hmong; Mong", + }, new() { Part2B = "hmo", + Part2T = null, Part1 = "ho", RefName = "Hiri Motu", }, new() { Part2B = "hrv", + Part2T = null, Part1 = "hr", RefName = "Croatian", }, - new() { Part2B = "hsb", RefName = "Upper Sorbian" }, + new() + { + Part2B = "hsb", + Part2T = null, + Part1 = null, + RefName = "Upper Sorbian", + }, new() { Part2B = "hun", + Part2T = null, Part1 = "hu", RefName = "Hungarian", }, - new() { Part2B = "hup", RefName = "Hupa" }, - new() { Part2B = "iba", RefName = "Iban" }, + new() + { + Part2B = "hup", + Part2T = null, + Part1 = null, + RefName = "Hupa", + }, + new() + { + Part2B = "iba", + Part2T = null, + Part1 = null, + RefName = "Iban", + }, new() { Part2B = "ibo", + Part2T = null, Part1 = "ig", RefName = "Igbo", }, @@ -552,242 +1329,521 @@ public static Iso6392Data Create() => new() { Part2B = "ido", + Part2T = null, Part1 = "io", RefName = "Ido", }, new() { Part2B = "iii", + Part2T = null, Part1 = "ii", RefName = "Sichuan Yi; Nuosu", }, - new() { Part2B = "ijo", RefName = "Ijo languages" }, + new() + { + Part2B = "ijo", + Part2T = null, + Part1 = null, + RefName = "Ijo languages", + }, new() { Part2B = "iku", + Part2T = null, Part1 = "iu", RefName = "Inuktitut", }, new() { Part2B = "ile", + Part2T = null, Part1 = "ie", RefName = "Interlingue; Occidental", }, - new() { Part2B = "ilo", RefName = "Iloko" }, + new() + { + Part2B = "ilo", + Part2T = null, + Part1 = null, + RefName = "Iloko", + }, new() { Part2B = "ina", + Part2T = null, Part1 = "ia", RefName = "Interlingua (International Auxiliary Language Association)", }, - new() { Part2B = "inc", RefName = "Indic languages" }, + new() + { + Part2B = "inc", + Part2T = null, + Part1 = null, + RefName = "Indic languages", + }, new() { Part2B = "ind", + Part2T = null, Part1 = "id", RefName = "Indonesian", }, - new() { Part2B = "ine", RefName = "Indo-European languages" }, - new() { Part2B = "inh", RefName = "Ingush" }, new() { - Part2B = "ipk", - Part1 = "ik", - RefName = "Inupiaq", + Part2B = "ine", + Part2T = null, + Part1 = null, + RefName = "Indo-European languages", + }, + new() + { + Part2B = "inh", + Part2T = null, + Part1 = null, + RefName = "Ingush", + }, + new() + { + Part2B = "ipk", + Part2T = null, + Part1 = "ik", + RefName = "Inupiaq", + }, + new() + { + Part2B = "ira", + Part2T = null, + Part1 = null, + RefName = "Iranian languages", + }, + new() + { + Part2B = "iro", + Part2T = null, + Part1 = null, + RefName = "Iroquoian languages", + }, + new() + { + Part2B = "ita", + Part2T = null, + Part1 = "it", + RefName = "Italian", + }, + new() + { + Part2B = "jav", + Part2T = null, + Part1 = "jv", + RefName = "Javanese", + }, + new() + { + Part2B = "jbo", + Part2T = null, + Part1 = null, + RefName = "Lojban", + }, + new() + { + Part2B = "jpn", + Part2T = null, + Part1 = "ja", + RefName = "Japanese", + }, + new() + { + Part2B = "jpr", + Part2T = null, + Part1 = null, + RefName = "Judeo-Persian", + }, + new() + { + Part2B = "jrb", + Part2T = null, + Part1 = null, + RefName = "Judeo-Arabic", }, - new() { Part2B = "ira", RefName = "Iranian languages" }, - new() { Part2B = "iro", RefName = "Iroquoian languages" }, new() { - Part2B = "ita", - Part1 = "it", - RefName = "Italian", + Part2B = "kaa", + Part2T = null, + Part1 = null, + RefName = "Kara-Kalpak", }, new() { - Part2B = "jav", - Part1 = "jv", - RefName = "Javanese", + Part2B = "kab", + Part2T = null, + Part1 = null, + RefName = "Kabyle", }, - new() { Part2B = "jbo", RefName = "Lojban" }, new() { - Part2B = "jpn", - Part1 = "ja", - RefName = "Japanese", + Part2B = "kac", + Part2T = null, + Part1 = null, + RefName = "Kachin; Jingpho", }, - new() { Part2B = "jpr", RefName = "Judeo-Persian" }, - new() { Part2B = "jrb", RefName = "Judeo-Arabic" }, - new() { Part2B = "kaa", RefName = "Kara-Kalpak" }, - new() { Part2B = "kab", RefName = "Kabyle" }, - new() { Part2B = "kac", RefName = "Kachin; Jingpho" }, new() { Part2B = "kal", + Part2T = null, Part1 = "kl", RefName = "Kalaallisut; Greenlandic", }, - new() { Part2B = "kam", RefName = "Kamba" }, + new() + { + Part2B = "kam", + Part2T = null, + Part1 = null, + RefName = "Kamba", + }, new() { Part2B = "kan", + Part2T = null, Part1 = "kn", RefName = "Kannada", }, - new() { Part2B = "kar", RefName = "Karen languages" }, + new() + { + Part2B = "kar", + Part2T = null, + Part1 = null, + RefName = "Karen languages", + }, new() { Part2B = "kas", + Part2T = null, Part1 = "ks", RefName = "Kashmiri", }, new() { Part2B = "kau", + Part2T = null, Part1 = "kr", RefName = "Kanuri", }, - new() { Part2B = "kaw", RefName = "Kawi" }, + new() + { + Part2B = "kaw", + Part2T = null, + Part1 = null, + RefName = "Kawi", + }, new() { Part2B = "kaz", + Part2T = null, Part1 = "kk", RefName = "Kazakh", }, - new() { Part2B = "kbd", RefName = "Kabardian" }, - new() { Part2B = "kha", RefName = "Khasi" }, - new() { Part2B = "khi", RefName = "Khoisan languages" }, + new() + { + Part2B = "kbd", + Part2T = null, + Part1 = null, + RefName = "Kabardian", + }, + new() + { + Part2B = "kha", + Part2T = null, + Part1 = null, + RefName = "Khasi", + }, + new() + { + Part2B = "khi", + Part2T = null, + Part1 = null, + RefName = "Khoisan languages", + }, new() { Part2B = "khm", + Part2T = null, Part1 = "km", RefName = "Central Khmer", }, - new() { Part2B = "kho", RefName = "Khotanese; Sakan" }, + new() + { + Part2B = "kho", + Part2T = null, + Part1 = null, + RefName = "Khotanese; Sakan", + }, new() { Part2B = "kik", + Part2T = null, Part1 = "ki", RefName = "Kikuyu; Gikuyu", }, new() { Part2B = "kin", + Part2T = null, Part1 = "rw", RefName = "Kinyarwanda", }, new() { Part2B = "kir", + Part2T = null, Part1 = "ky", RefName = "Kirghiz; Kyrgyz", }, - new() { Part2B = "kmb", RefName = "Kimbundu" }, - new() { Part2B = "kok", RefName = "Konkani" }, + new() + { + Part2B = "kmb", + Part2T = null, + Part1 = null, + RefName = "Kimbundu", + }, + new() + { + Part2B = "kok", + Part2T = null, + Part1 = null, + RefName = "Konkani", + }, new() { Part2B = "kom", + Part2T = null, Part1 = "kv", RefName = "Komi", }, new() { Part2B = "kon", + Part2T = null, Part1 = "kg", RefName = "Kongo", }, new() { Part2B = "kor", + Part2T = null, Part1 = "ko", RefName = "Korean", }, - new() { Part2B = "kos", RefName = "Kosraean" }, - new() { Part2B = "kpe", RefName = "Kpelle" }, - new() { Part2B = "krc", RefName = "Karachay-Balkar" }, - new() { Part2B = "krl", RefName = "Karelian" }, - new() { Part2B = "kro", RefName = "Kru languages" }, - new() { Part2B = "kru", RefName = "Kurukh" }, + new() + { + Part2B = "kos", + Part2T = null, + Part1 = null, + RefName = "Kosraean", + }, + new() + { + Part2B = "kpe", + Part2T = null, + Part1 = null, + RefName = "Kpelle", + }, + new() + { + Part2B = "krc", + Part2T = null, + Part1 = null, + RefName = "Karachay-Balkar", + }, + new() + { + Part2B = "krl", + Part2T = null, + Part1 = null, + RefName = "Karelian", + }, + new() + { + Part2B = "kro", + Part2T = null, + Part1 = null, + RefName = "Kru languages", + }, + new() + { + Part2B = "kru", + Part2T = null, + Part1 = null, + RefName = "Kurukh", + }, new() { Part2B = "kua", + Part2T = null, Part1 = "kj", RefName = "Kuanyama; Kwanyama", }, - new() { Part2B = "kum", RefName = "Kumyk" }, + new() + { + Part2B = "kum", + Part2T = null, + Part1 = null, + RefName = "Kumyk", + }, new() { Part2B = "kur", + Part2T = null, Part1 = "ku", RefName = "Kurdish", }, - new() { Part2B = "kut", RefName = "Kutenai" }, - new() { Part2B = "lad", RefName = "Ladino" }, - new() { Part2B = "lah", RefName = "Lahnda" }, - new() { Part2B = "lam", RefName = "Lamba" }, + new() + { + Part2B = "kut", + Part2T = null, + Part1 = null, + RefName = "Kutenai", + }, + new() + { + Part2B = "lad", + Part2T = null, + Part1 = null, + RefName = "Ladino", + }, + new() + { + Part2B = "lah", + Part2T = null, + Part1 = null, + RefName = "Lahnda", + }, + new() + { + Part2B = "lam", + Part2T = null, + Part1 = null, + RefName = "Lamba", + }, new() { Part2B = "lao", + Part2T = null, Part1 = "lo", RefName = "Lao", }, new() { Part2B = "lat", + Part2T = null, Part1 = "la", RefName = "Latin", }, new() { Part2B = "lav", + Part2T = null, Part1 = "lv", RefName = "Latvian", }, - new() { Part2B = "lez", RefName = "Lezghian" }, + new() + { + Part2B = "lez", + Part2T = null, + Part1 = null, + RefName = "Lezghian", + }, new() { Part2B = "lim", + Part2T = null, Part1 = "li", RefName = "Limburgan; Limburger; Limburgish", }, new() { Part2B = "lin", + Part2T = null, Part1 = "ln", RefName = "Lingala", }, new() { Part2B = "lit", + Part2T = null, Part1 = "lt", RefName = "Lithuanian", }, - new() { Part2B = "lol", RefName = "Mongo" }, - new() { Part2B = "loz", RefName = "Lozi" }, + new() + { + Part2B = "lol", + Part2T = null, + Part1 = null, + RefName = "Mongo", + }, + new() + { + Part2B = "loz", + Part2T = null, + Part1 = null, + RefName = "Lozi", + }, new() { Part2B = "ltz", + Part2T = null, Part1 = "lb", RefName = "Luxembourgish; Letzeburgesch", }, - new() { Part2B = "lua", RefName = "Luba-Lulua" }, + new() + { + Part2B = "lua", + Part2T = null, + Part1 = null, + RefName = "Luba-Lulua", + }, new() { Part2B = "lub", + Part2T = null, Part1 = "lu", RefName = "Luba-Katanga", }, new() { Part2B = "lug", + Part2T = null, Part1 = "lg", RefName = "Ganda", }, - new() { Part2B = "lui", RefName = "Luiseno" }, - new() { Part2B = "lun", RefName = "Lunda" }, - new() { Part2B = "luo", RefName = "Luo (Kenya and Tanzania)" }, - new() { Part2B = "lus", RefName = "Lushai" }, + new() + { + Part2B = "lui", + Part2T = null, + Part1 = null, + RefName = "Luiseno", + }, + new() + { + Part2B = "lun", + Part2T = null, + Part1 = null, + RefName = "Lunda", + }, + new() + { + Part2B = "luo", + Part2T = null, + Part1 = null, + RefName = "Luo (Kenya and Tanzania)", + }, + new() + { + Part2B = "lus", + Part2T = null, + Part1 = null, + RefName = "Lushai", + }, new() { Part2B = "mac", @@ -795,23 +1851,55 @@ public static Iso6392Data Create() => Part1 = "mk", RefName = "Macedonian", }, - new() { Part2B = "mad", RefName = "Madurese" }, - new() { Part2B = "mag", RefName = "Magahi" }, + new() + { + Part2B = "mad", + Part2T = null, + Part1 = null, + RefName = "Madurese", + }, + new() + { + Part2B = "mag", + Part2T = null, + Part1 = null, + RefName = "Magahi", + }, new() { Part2B = "mah", + Part2T = null, Part1 = "mh", RefName = "Marshallese", }, - new() { Part2B = "mai", RefName = "Maithili" }, - new() { Part2B = "mak", RefName = "Makasar" }, + new() + { + Part2B = "mai", + Part2T = null, + Part1 = null, + RefName = "Maithili", + }, + new() + { + Part2B = "mak", + Part2T = null, + Part1 = null, + RefName = "Makasar", + }, new() { Part2B = "mal", + Part2T = null, Part1 = "ml", RefName = "Malayalam", }, - new() { Part2B = "man", RefName = "Mandingo" }, + new() + { + Part2B = "man", + Part2T = null, + Part1 = null, + RefName = "Mandingo", + }, new() { Part2B = "mao", @@ -819,14 +1907,27 @@ public static Iso6392Data Create() => Part1 = "mi", RefName = "Maori", }, - new() { Part2B = "map", RefName = "Austronesian languages" }, + new() + { + Part2B = "map", + Part2T = null, + Part1 = null, + RefName = "Austronesian languages", + }, new() { Part2B = "mar", + Part2T = null, Part1 = "mr", RefName = "Marathi", }, - new() { Part2B = "mas", RefName = "Masai" }, + new() + { + Part2B = "mas", + Part2T = null, + Part1 = null, + RefName = "Masai", + }, new() { Part2B = "may", @@ -834,176 +1935,475 @@ public static Iso6392Data Create() => Part1 = "ms", RefName = "Malay", }, - new() { Part2B = "mdf", RefName = "Moksha" }, - new() { Part2B = "mdr", RefName = "Mandar" }, - new() { Part2B = "men", RefName = "Mende" }, - new() { Part2B = "mga", RefName = "Irish, Middle (900-1200)" }, - new() { Part2B = "mic", RefName = "Mi'kmaq; Micmac" }, - new() { Part2B = "min", RefName = "Minangkabau" }, - new() { Part2B = "mis", RefName = "Uncoded languages" }, - new() { Part2B = "mkh", RefName = "Mon-Khmer languages" }, + new() + { + Part2B = "mdf", + Part2T = null, + Part1 = null, + RefName = "Moksha", + }, + new() + { + Part2B = "mdr", + Part2T = null, + Part1 = null, + RefName = "Mandar", + }, + new() + { + Part2B = "men", + Part2T = null, + Part1 = null, + RefName = "Mende", + }, + new() + { + Part2B = "mga", + Part2T = null, + Part1 = null, + RefName = "Irish, Middle (900-1200)", + }, + new() + { + Part2B = "mic", + Part2T = null, + Part1 = null, + RefName = "Mi'kmaq; Micmac", + }, + new() + { + Part2B = "min", + Part2T = null, + Part1 = null, + RefName = "Minangkabau", + }, + new() + { + Part2B = "mis", + Part2T = null, + Part1 = null, + RefName = "Uncoded languages", + }, + new() + { + Part2B = "mkh", + Part2T = null, + Part1 = null, + RefName = "Mon-Khmer languages", + }, new() { Part2B = "mlg", + Part2T = null, Part1 = "mg", RefName = "Malagasy", }, new() { Part2B = "mlt", + Part2T = null, Part1 = "mt", RefName = "Maltese", }, - new() { Part2B = "mnc", RefName = "Manchu" }, - new() { Part2B = "mni", RefName = "Manipuri" }, - new() { Part2B = "mno", RefName = "Manobo languages" }, - new() { Part2B = "moh", RefName = "Mohawk" }, + new() + { + Part2B = "mnc", + Part2T = null, + Part1 = null, + RefName = "Manchu", + }, + new() + { + Part2B = "mni", + Part2T = null, + Part1 = null, + RefName = "Manipuri", + }, + new() + { + Part2B = "mno", + Part2T = null, + Part1 = null, + RefName = "Manobo languages", + }, + new() + { + Part2B = "moh", + Part2T = null, + Part1 = null, + RefName = "Mohawk", + }, new() { Part2B = "mon", + Part2T = null, Part1 = "mn", RefName = "Mongolian", }, - new() { Part2B = "mos", RefName = "Mossi" }, - new() { Part2B = "mul", RefName = "Multiple languages" }, - new() { Part2B = "mun", RefName = "Munda languages" }, - new() { Part2B = "mus", RefName = "Creek" }, - new() { Part2B = "mwl", RefName = "Mirandese" }, - new() { Part2B = "mwr", RefName = "Marwari" }, - new() { Part2B = "myn", RefName = "Mayan languages" }, - new() { Part2B = "myv", RefName = "Erzya" }, - new() { Part2B = "nah", RefName = "Nahuatl languages" }, - new() { Part2B = "nai", RefName = "North American Indian languages" }, - new() { Part2B = "nap", RefName = "Neapolitan" }, + new() + { + Part2B = "mos", + Part2T = null, + Part1 = null, + RefName = "Mossi", + }, + new() + { + Part2B = "mul", + Part2T = null, + Part1 = null, + RefName = "Multiple languages", + }, + new() + { + Part2B = "mun", + Part2T = null, + Part1 = null, + RefName = "Munda languages", + }, + new() + { + Part2B = "mus", + Part2T = null, + Part1 = null, + RefName = "Creek", + }, + new() + { + Part2B = "mwl", + Part2T = null, + Part1 = null, + RefName = "Mirandese", + }, + new() + { + Part2B = "mwr", + Part2T = null, + Part1 = null, + RefName = "Marwari", + }, + new() + { + Part2B = "myn", + Part2T = null, + Part1 = null, + RefName = "Mayan languages", + }, + new() + { + Part2B = "myv", + Part2T = null, + Part1 = null, + RefName = "Erzya", + }, + new() + { + Part2B = "nah", + Part2T = null, + Part1 = null, + RefName = "Nahuatl languages", + }, + new() + { + Part2B = "nai", + Part2T = null, + Part1 = null, + RefName = "North American Indian languages", + }, + new() + { + Part2B = "nap", + Part2T = null, + Part1 = null, + RefName = "Neapolitan", + }, new() { Part2B = "nau", + Part2T = null, Part1 = "na", RefName = "Nauru", }, new() { Part2B = "nav", + Part2T = null, Part1 = "nv", RefName = "Navajo; Navaho", }, new() { Part2B = "nbl", + Part2T = null, Part1 = "nr", RefName = "South Ndebele", }, new() { Part2B = "nde", + Part2T = null, Part1 = "nd", RefName = "North Ndebele", }, new() { Part2B = "ndo", + Part2T = null, Part1 = "ng", RefName = "Ndonga", }, new() { Part2B = "nds", + Part2T = null, + Part1 = null, RefName = "Low German; Low Saxon; German, Low; Saxon, Low", }, new() { Part2B = "nep", + Part2T = null, Part1 = "ne", RefName = "Nepali", }, - new() { Part2B = "new", RefName = "Nepal Bhasa; Newar; Newari" }, - new() { Part2B = "nia", RefName = "Nias" }, - new() { Part2B = "nic", RefName = "Niger-Kordofanian languages" }, - new() { Part2B = "niu", RefName = "Niuean" }, + new() + { + Part2B = "new", + Part2T = null, + Part1 = null, + RefName = "Nepal Bhasa; Newar; Newari", + }, + new() + { + Part2B = "nia", + Part2T = null, + Part1 = null, + RefName = "Nias", + }, + new() + { + Part2B = "nic", + Part2T = null, + Part1 = null, + RefName = "Niger-Kordofanian languages", + }, + new() + { + Part2B = "niu", + Part2T = null, + Part1 = null, + RefName = "Niuean", + }, new() { Part2B = "nno", + Part2T = null, Part1 = "nn", RefName = "Norwegian Nynorsk", }, new() { Part2B = "nob", + Part2T = null, Part1 = "nb", RefName = "Norwegian Bokmål", }, - new() { Part2B = "nog", RefName = "Nogai" }, - new() { Part2B = "non", RefName = "Norse, Old" }, + new() + { + Part2B = "nog", + Part2T = null, + Part1 = null, + RefName = "Nogai", + }, + new() + { + Part2B = "non", + Part2T = null, + Part1 = null, + RefName = "Norse, Old", + }, new() { Part2B = "nor", + Part2T = null, Part1 = "no", RefName = "Norwegian", }, - new() { Part2B = "nqo", RefName = "N'Ko" }, - new() { Part2B = "nso", RefName = "Pedi; Sepedi; Northern Sotho" }, - new() { Part2B = "nub", RefName = "Nubian languages" }, + new() + { + Part2B = "nqo", + Part2T = null, + Part1 = null, + RefName = "N'Ko", + }, + new() + { + Part2B = "nso", + Part2T = null, + Part1 = null, + RefName = "Pedi; Sepedi; Northern Sotho", + }, + new() + { + Part2B = "nub", + Part2T = null, + Part1 = null, + RefName = "Nubian languages", + }, new() { Part2B = "nwc", + Part2T = null, + Part1 = null, RefName = "Classical Newari; Old Newari; Classical Nepal Bhasa", }, new() { Part2B = "nya", + Part2T = null, Part1 = "ny", RefName = "Chichewa; Chewa; Nyanja", }, - new() { Part2B = "nym", RefName = "Nyamwezi" }, - new() { Part2B = "nyn", RefName = "Nyankole" }, - new() { Part2B = "nyo", RefName = "Nyoro" }, - new() { Part2B = "nzi", RefName = "Nzima" }, + new() + { + Part2B = "nym", + Part2T = null, + Part1 = null, + RefName = "Nyamwezi", + }, + new() + { + Part2B = "nyn", + Part2T = null, + Part1 = null, + RefName = "Nyankole", + }, + new() + { + Part2B = "nyo", + Part2T = null, + Part1 = null, + RefName = "Nyoro", + }, + new() + { + Part2B = "nzi", + Part2T = null, + Part1 = null, + RefName = "Nzima", + }, new() { Part2B = "oci", + Part2T = null, Part1 = "oc", RefName = "Occitan (post 1500)", }, new() { Part2B = "oji", + Part2T = null, Part1 = "oj", RefName = "Ojibwa", }, new() { Part2B = "ori", + Part2T = null, Part1 = "or", RefName = "Oriya", }, new() { Part2B = "orm", + Part2T = null, Part1 = "om", RefName = "Oromo", }, - new() { Part2B = "osa", RefName = "Osage" }, + new() + { + Part2B = "osa", + Part2T = null, + Part1 = null, + RefName = "Osage", + }, new() { Part2B = "oss", + Part2T = null, Part1 = "os", RefName = "Ossetian; Ossetic", }, - new() { Part2B = "ota", RefName = "Turkish, Ottoman (1500-1928)" }, - new() { Part2B = "oto", RefName = "Otomian languages" }, - new() { Part2B = "paa", RefName = "Papuan languages" }, - new() { Part2B = "pag", RefName = "Pangasinan" }, - new() { Part2B = "pal", RefName = "Pahlavi" }, - new() { Part2B = "pam", RefName = "Pampanga; Kapampangan" }, + new() + { + Part2B = "ota", + Part2T = null, + Part1 = null, + RefName = "Turkish, Ottoman (1500-1928)", + }, + new() + { + Part2B = "oto", + Part2T = null, + Part1 = null, + RefName = "Otomian languages", + }, + new() + { + Part2B = "paa", + Part2T = null, + Part1 = null, + RefName = "Papuan languages", + }, + new() + { + Part2B = "pag", + Part2T = null, + Part1 = null, + RefName = "Pangasinan", + }, + new() + { + Part2B = "pal", + Part2T = null, + Part1 = null, + RefName = "Pahlavi", + }, + new() + { + Part2B = "pam", + Part2T = null, + Part1 = null, + RefName = "Pampanga; Kapampangan", + }, new() { Part2B = "pan", + Part2T = null, Part1 = "pa", RefName = "Panjabi; Punjabi", }, - new() { Part2B = "pap", RefName = "Papiamento" }, - new() { Part2B = "pau", RefName = "Palauan" }, - new() { Part2B = "peo", RefName = "Persian, Old (ca.600-400 B.C.)" }, + new() + { + Part2B = "pap", + Part2T = null, + Part1 = null, + RefName = "Papiamento", + }, + new() + { + Part2B = "pau", + Part2T = null, + Part1 = null, + RefName = "Palauan", + }, + new() + { + Part2B = "peo", + Part2T = null, + Part1 = null, + RefName = "Persian, Old (ca.600-400 B.C.)", + }, new() { Part2B = "per", @@ -1011,57 +2411,125 @@ public static Iso6392Data Create() => Part1 = "fa", RefName = "Persian", }, - new() { Part2B = "phi", RefName = "Philippine languages" }, - new() { Part2B = "phn", RefName = "Phoenician" }, + new() + { + Part2B = "phi", + Part2T = null, + Part1 = null, + RefName = "Philippine languages", + }, + new() + { + Part2B = "phn", + Part2T = null, + Part1 = null, + RefName = "Phoenician", + }, new() { Part2B = "pli", + Part2T = null, Part1 = "pi", RefName = "Pali", }, new() { Part2B = "pol", + Part2T = null, Part1 = "pl", RefName = "Polish", }, - new() { Part2B = "pon", RefName = "Pohnpeian" }, + new() + { + Part2B = "pon", + Part2T = null, + Part1 = null, + RefName = "Pohnpeian", + }, new() { Part2B = "por", + Part2T = null, Part1 = "pt", RefName = "Portuguese", }, - new() { Part2B = "pra", RefName = "Prakrit languages" }, + new() + { + Part2B = "pra", + Part2T = null, + Part1 = null, + RefName = "Prakrit languages", + }, new() { Part2B = "pro", + Part2T = null, + Part1 = null, RefName = "Provençal, Old (to 1500); Occitan, Old (to 1500)", }, new() { Part2B = "pus", + Part2T = null, Part1 = "ps", RefName = "Pushto; Pashto", }, - new() { Part2B = "qaa-qtz", RefName = "Reserved for local use" }, + new() + { + Part2B = "qaa-qtz", + Part2T = null, + Part1 = null, + RefName = "Reserved for local use", + }, new() { Part2B = "que", + Part2T = null, Part1 = "qu", RefName = "Quechua", }, - new() { Part2B = "raj", RefName = "Rajasthani" }, - new() { Part2B = "rap", RefName = "Rapanui" }, - new() { Part2B = "rar", RefName = "Rarotongan; Cook Islands Maori" }, - new() { Part2B = "roa", RefName = "Romance languages" }, + new() + { + Part2B = "raj", + Part2T = null, + Part1 = null, + RefName = "Rajasthani", + }, + new() + { + Part2B = "rap", + Part2T = null, + Part1 = null, + RefName = "Rapanui", + }, + new() + { + Part2B = "rar", + Part2T = null, + Part1 = null, + RefName = "Rarotongan; Cook Islands Maori", + }, + new() + { + Part2B = "roa", + Part2T = null, + Part1 = null, + RefName = "Romance languages", + }, new() { Part2B = "roh", + Part2T = null, Part1 = "rm", RefName = "Romansh", }, - new() { Part2B = "rom", RefName = "Romany" }, + new() + { + Part2B = "rom", + Part2T = null, + Part1 = null, + RefName = "Romany", + }, new() { Part2B = "rum", @@ -1072,52 +2540,171 @@ public static Iso6392Data Create() => new() { Part2B = "run", + Part2T = null, Part1 = "rn", RefName = "Rundi", }, - new() { Part2B = "rup", RefName = "Aromanian; Arumanian; Macedo-Romanian" }, + new() + { + Part2B = "rup", + Part2T = null, + Part1 = null, + RefName = "Aromanian; Arumanian; Macedo-Romanian", + }, new() { Part2B = "rus", + Part2T = null, Part1 = "ru", RefName = "Russian", }, - new() { Part2B = "sad", RefName = "Sandawe" }, + new() + { + Part2B = "sad", + Part2T = null, + Part1 = null, + RefName = "Sandawe", + }, new() { Part2B = "sag", + Part2T = null, Part1 = "sg", RefName = "Sango", }, - new() { Part2B = "sah", RefName = "Yakut" }, - new() { Part2B = "sai", RefName = "South American Indian languages" }, - new() { Part2B = "sal", RefName = "Salishan languages" }, - new() { Part2B = "sam", RefName = "Samaritan Aramaic" }, + new() + { + Part2B = "sah", + Part2T = null, + Part1 = null, + RefName = "Yakut", + }, + new() + { + Part2B = "sai", + Part2T = null, + Part1 = null, + RefName = "South American Indian languages", + }, + new() + { + Part2B = "sal", + Part2T = null, + Part1 = null, + RefName = "Salishan languages", + }, + new() + { + Part2B = "sam", + Part2T = null, + Part1 = null, + RefName = "Samaritan Aramaic", + }, new() { Part2B = "san", + Part2T = null, Part1 = "sa", RefName = "Sanskrit", }, - new() { Part2B = "sas", RefName = "Sasak" }, - new() { Part2B = "sat", RefName = "Santali" }, - new() { Part2B = "scn", RefName = "Sicilian" }, - new() { Part2B = "sco", RefName = "Scots" }, - new() { Part2B = "sel", RefName = "Selkup" }, - new() { Part2B = "sem", RefName = "Semitic languages" }, - new() { Part2B = "sga", RefName = "Irish, Old (to 900)" }, - new() { Part2B = "sgn", RefName = "Sign Languages" }, - new() { Part2B = "shn", RefName = "Shan" }, - new() { Part2B = "sid", RefName = "Sidamo" }, + new() + { + Part2B = "sas", + Part2T = null, + Part1 = null, + RefName = "Sasak", + }, + new() + { + Part2B = "sat", + Part2T = null, + Part1 = null, + RefName = "Santali", + }, + new() + { + Part2B = "scn", + Part2T = null, + Part1 = null, + RefName = "Sicilian", + }, + new() + { + Part2B = "sco", + Part2T = null, + Part1 = null, + RefName = "Scots", + }, + new() + { + Part2B = "sel", + Part2T = null, + Part1 = null, + RefName = "Selkup", + }, + new() + { + Part2B = "sem", + Part2T = null, + Part1 = null, + RefName = "Semitic languages", + }, + new() + { + Part2B = "sga", + Part2T = null, + Part1 = null, + RefName = "Irish, Old (to 900)", + }, + new() + { + Part2B = "sgn", + Part2T = null, + Part1 = null, + RefName = "Sign Languages", + }, + new() + { + Part2B = "shn", + Part2T = null, + Part1 = null, + RefName = "Shan", + }, + new() + { + Part2B = "sid", + Part2T = null, + Part1 = null, + RefName = "Sidamo", + }, new() { Part2B = "sin", + Part2T = null, Part1 = "si", RefName = "Sinhala; Sinhalese", }, - new() { Part2B = "sio", RefName = "Siouan languages" }, - new() { Part2B = "sit", RefName = "Sino-Tibetan languages" }, - new() { Part2B = "sla", RefName = "Slavic languages" }, + new() + { + Part2B = "sio", + Part2T = null, + Part1 = null, + RefName = "Siouan languages", + }, + new() + { + Part2B = "sit", + Part2T = null, + Part1 = null, + RefName = "Sino-Tibetan languages", + }, + new() + { + Part2B = "sla", + Part2T = null, + Part1 = null, + RefName = "Slavic languages", + }, new() { Part2B = "slo", @@ -1128,146 +2715,287 @@ public static Iso6392Data Create() => new() { Part2B = "slv", + Part2T = null, Part1 = "sl", RefName = "Slovenian", }, - new() { Part2B = "sma", RefName = "Southern Sami" }, + new() + { + Part2B = "sma", + Part2T = null, + Part1 = null, + RefName = "Southern Sami", + }, new() { Part2B = "sme", + Part2T = null, Part1 = "se", RefName = "Northern Sami", }, - new() { Part2B = "smi", RefName = "Sami languages" }, - new() { Part2B = "smj", RefName = "Lule Sami" }, - new() { Part2B = "smn", RefName = "Inari Sami" }, + new() + { + Part2B = "smi", + Part2T = null, + Part1 = null, + RefName = "Sami languages", + }, + new() + { + Part2B = "smj", + Part2T = null, + Part1 = null, + RefName = "Lule Sami", + }, + new() + { + Part2B = "smn", + Part2T = null, + Part1 = null, + RefName = "Inari Sami", + }, new() { Part2B = "smo", + Part2T = null, Part1 = "sm", RefName = "Samoan", }, - new() { Part2B = "sms", RefName = "Skolt Sami" }, + new() + { + Part2B = "sms", + Part2T = null, + Part1 = null, + RefName = "Skolt Sami", + }, new() { Part2B = "sna", + Part2T = null, Part1 = "sn", RefName = "Shona", }, new() { Part2B = "snd", + Part2T = null, Part1 = "sd", RefName = "Sindhi", }, - new() { Part2B = "snk", RefName = "Soninke" }, - new() { Part2B = "sog", RefName = "Sogdian" }, + new() + { + Part2B = "snk", + Part2T = null, + Part1 = null, + RefName = "Soninke", + }, + new() + { + Part2B = "sog", + Part2T = null, + Part1 = null, + RefName = "Sogdian", + }, new() { Part2B = "som", + Part2T = null, Part1 = "so", RefName = "Somali", }, - new() { Part2B = "son", RefName = "Songhai languages" }, + new() + { + Part2B = "son", + Part2T = null, + Part1 = null, + RefName = "Songhai languages", + }, new() { Part2B = "sot", + Part2T = null, Part1 = "st", RefName = "Sotho, Southern", }, new() { Part2B = "spa", + Part2T = null, Part1 = "es", RefName = "Spanish; Castilian", }, new() { Part2B = "srd", + Part2T = null, Part1 = "sc", RefName = "Sardinian", }, - new() { Part2B = "srn", RefName = "Sranan Tongo" }, + new() + { + Part2B = "srn", + Part2T = null, + Part1 = null, + RefName = "Sranan Tongo", + }, new() { Part2B = "srp", + Part2T = null, Part1 = "sr", RefName = "Serbian", }, - new() { Part2B = "srr", RefName = "Serer" }, - new() { Part2B = "ssa", RefName = "Nilo-Saharan languages" }, + new() + { + Part2B = "srr", + Part2T = null, + Part1 = null, + RefName = "Serer", + }, + new() + { + Part2B = "ssa", + Part2T = null, + Part1 = null, + RefName = "Nilo-Saharan languages", + }, new() { Part2B = "ssw", + Part2T = null, Part1 = "ss", RefName = "Swati", }, - new() { Part2B = "suk", RefName = "Sukuma" }, + new() + { + Part2B = "suk", + Part2T = null, + Part1 = null, + RefName = "Sukuma", + }, new() { Part2B = "sun", + Part2T = null, Part1 = "su", RefName = "Sundanese", }, - new() { Part2B = "sus", RefName = "Susu" }, - new() { Part2B = "sux", RefName = "Sumerian" }, + new() + { + Part2B = "sus", + Part2T = null, + Part1 = null, + RefName = "Susu", + }, + new() + { + Part2B = "sux", + Part2T = null, + Part1 = null, + RefName = "Sumerian", + }, new() { Part2B = "swa", + Part2T = null, Part1 = "sw", RefName = "Swahili", }, new() { Part2B = "swe", + Part2T = null, Part1 = "sv", RefName = "Swedish", }, - new() { Part2B = "syc", RefName = "Classical Syriac" }, - new() { Part2B = "syr", RefName = "Syriac" }, + new() + { + Part2B = "syc", + Part2T = null, + Part1 = null, + RefName = "Classical Syriac", + }, + new() + { + Part2B = "syr", + Part2T = null, + Part1 = null, + RefName = "Syriac", + }, new() { Part2B = "tah", + Part2T = null, Part1 = "ty", RefName = "Tahitian", }, - new() { Part2B = "tai", RefName = "Tai languages" }, + new() + { + Part2B = "tai", + Part2T = null, + Part1 = null, + RefName = "Tai languages", + }, new() { Part2B = "tam", + Part2T = null, Part1 = "ta", RefName = "Tamil", }, new() { Part2B = "tat", + Part2T = null, Part1 = "tt", RefName = "Tatar", }, new() { Part2B = "tel", + Part2T = null, Part1 = "te", RefName = "Telugu", }, - new() { Part2B = "tem", RefName = "Timne" }, - new() { Part2B = "ter", RefName = "Tereno" }, - new() { Part2B = "tet", RefName = "Tetum" }, + new() + { + Part2B = "tem", + Part2T = null, + Part1 = null, + RefName = "Timne", + }, + new() + { + Part2B = "ter", + Part2T = null, + Part1 = null, + RefName = "Tereno", + }, + new() + { + Part2B = "tet", + Part2T = null, + Part1 = null, + RefName = "Tetum", + }, new() { Part2B = "tgk", + Part2T = null, Part1 = "tg", RefName = "Tajik", }, new() { Part2B = "tgl", + Part2T = null, Part1 = "tl", RefName = "Tagalog", }, new() { Part2B = "tha", + Part2T = null, Part1 = "th", RefName = "Thai", }, @@ -1278,114 +3006,272 @@ public static Iso6392Data Create() => Part1 = "bo", RefName = "Tibetan", }, - new() { Part2B = "tig", RefName = "Tigre" }, + new() + { + Part2B = "tig", + Part2T = null, + Part1 = null, + RefName = "Tigre", + }, new() { Part2B = "tir", + Part2T = null, Part1 = "ti", RefName = "Tigrinya", }, - new() { Part2B = "tiv", RefName = "Tiv" }, - new() { Part2B = "tkl", RefName = "Tokelau" }, - new() { Part2B = "tlh", RefName = "Klingon; tlhIngan-Hol" }, - new() { Part2B = "tli", RefName = "Tlingit" }, - new() { Part2B = "tmh", RefName = "Tamashek" }, - new() { Part2B = "tog", RefName = "Tonga (Nyasa)" }, + new() + { + Part2B = "tiv", + Part2T = null, + Part1 = null, + RefName = "Tiv", + }, + new() + { + Part2B = "tkl", + Part2T = null, + Part1 = null, + RefName = "Tokelau", + }, + new() + { + Part2B = "tlh", + Part2T = null, + Part1 = null, + RefName = "Klingon; tlhIngan-Hol", + }, + new() + { + Part2B = "tli", + Part2T = null, + Part1 = null, + RefName = "Tlingit", + }, + new() + { + Part2B = "tmh", + Part2T = null, + Part1 = null, + RefName = "Tamashek", + }, + new() + { + Part2B = "tog", + Part2T = null, + Part1 = null, + RefName = "Tonga (Nyasa)", + }, new() { Part2B = "ton", + Part2T = null, Part1 = "to", RefName = "Tonga (Tonga Islands)", }, - new() { Part2B = "tpi", RefName = "Tok Pisin" }, - new() { Part2B = "tsi", RefName = "Tsimshian" }, + new() + { + Part2B = "tpi", + Part2T = null, + Part1 = null, + RefName = "Tok Pisin", + }, + new() + { + Part2B = "tsi", + Part2T = null, + Part1 = null, + RefName = "Tsimshian", + }, new() { Part2B = "tsn", + Part2T = null, Part1 = "tn", RefName = "Tswana", }, new() { Part2B = "tso", + Part2T = null, Part1 = "ts", RefName = "Tsonga", }, new() { Part2B = "tuk", + Part2T = null, Part1 = "tk", RefName = "Turkmen", }, - new() { Part2B = "tum", RefName = "Tumbuka" }, - new() { Part2B = "tup", RefName = "Tupi languages" }, + new() + { + Part2B = "tum", + Part2T = null, + Part1 = null, + RefName = "Tumbuka", + }, + new() + { + Part2B = "tup", + Part2T = null, + Part1 = null, + RefName = "Tupi languages", + }, new() { Part2B = "tur", + Part2T = null, Part1 = "tr", RefName = "Turkish", }, - new() { Part2B = "tut", RefName = "Altaic languages" }, - new() { Part2B = "tvl", RefName = "Tuvalu" }, + new() + { + Part2B = "tut", + Part2T = null, + Part1 = null, + RefName = "Altaic languages", + }, + new() + { + Part2B = "tvl", + Part2T = null, + Part1 = null, + RefName = "Tuvalu", + }, new() { Part2B = "twi", + Part2T = null, Part1 = "tw", RefName = "Twi", }, - new() { Part2B = "tyv", RefName = "Tuvinian" }, - new() { Part2B = "udm", RefName = "Udmurt" }, - new() { Part2B = "uga", RefName = "Ugaritic" }, + new() + { + Part2B = "tyv", + Part2T = null, + Part1 = null, + RefName = "Tuvinian", + }, + new() + { + Part2B = "udm", + Part2T = null, + Part1 = null, + RefName = "Udmurt", + }, + new() + { + Part2B = "uga", + Part2T = null, + Part1 = null, + RefName = "Ugaritic", + }, new() { Part2B = "uig", + Part2T = null, Part1 = "ug", RefName = "Uighur; Uyghur", }, new() { Part2B = "ukr", + Part2T = null, Part1 = "uk", RefName = "Ukrainian", }, - new() { Part2B = "umb", RefName = "Umbundu" }, - new() { Part2B = "und", RefName = "Undetermined" }, + new() + { + Part2B = "umb", + Part2T = null, + Part1 = null, + RefName = "Umbundu", + }, + new() + { + Part2B = "und", + Part2T = null, + Part1 = null, + RefName = "Undetermined", + }, new() { Part2B = "urd", + Part2T = null, Part1 = "ur", RefName = "Urdu", }, new() { Part2B = "uzb", + Part2T = null, Part1 = "uz", RefName = "Uzbek", }, - new() { Part2B = "vai", RefName = "Vai" }, + new() + { + Part2B = "vai", + Part2T = null, + Part1 = null, + RefName = "Vai", + }, new() { Part2B = "ven", + Part2T = null, Part1 = "ve", RefName = "Venda", }, new() { Part2B = "vie", + Part2T = null, Part1 = "vi", RefName = "Vietnamese", }, new() { Part2B = "vol", + Part2T = null, Part1 = "vo", RefName = "Volapük", }, - new() { Part2B = "vot", RefName = "Votic" }, - new() { Part2B = "wak", RefName = "Wakashan languages" }, - new() { Part2B = "wal", RefName = "Wolaitta; Wolaytta" }, - new() { Part2B = "war", RefName = "Waray" }, - new() { Part2B = "was", RefName = "Washo" }, + new() + { + Part2B = "vot", + Part2T = null, + Part1 = null, + RefName = "Votic", + }, + new() + { + Part2B = "wak", + Part2T = null, + Part1 = null, + RefName = "Wakashan languages", + }, + new() + { + Part2B = "wal", + Part2T = null, + Part1 = null, + RefName = "Wolaitta; Wolaytta", + }, + new() + { + Part2B = "war", + Part2T = null, + Part1 = null, + RefName = "Waray", + }, + new() + { + Part2B = "was", + Part2T = null, + Part1 = null, + RefName = "Washo", + }, new() { Part2B = "wel", @@ -1393,63 +3279,144 @@ public static Iso6392Data Create() => Part1 = "cy", RefName = "Welsh", }, - new() { Part2B = "wen", RefName = "Sorbian languages" }, + new() + { + Part2B = "wen", + Part2T = null, + Part1 = null, + RefName = "Sorbian languages", + }, new() { Part2B = "wln", + Part2T = null, Part1 = "wa", RefName = "Walloon", }, new() { Part2B = "wol", + Part2T = null, Part1 = "wo", RefName = "Wolof", }, - new() { Part2B = "xal", RefName = "Kalmyk; Oirat" }, + new() + { + Part2B = "xal", + Part2T = null, + Part1 = null, + RefName = "Kalmyk; Oirat", + }, new() { Part2B = "xho", + Part2T = null, Part1 = "xh", RefName = "Xhosa", }, - new() { Part2B = "yao", RefName = "Yao" }, - new() { Part2B = "yap", RefName = "Yapese" }, + new() + { + Part2B = "yao", + Part2T = null, + Part1 = null, + RefName = "Yao", + }, + new() + { + Part2B = "yap", + Part2T = null, + Part1 = null, + RefName = "Yapese", + }, new() { Part2B = "yid", + Part2T = null, Part1 = "yi", RefName = "Yiddish", }, new() { Part2B = "yor", + Part2T = null, Part1 = "yo", RefName = "Yoruba", }, - new() { Part2B = "ypk", RefName = "Yupik languages" }, - new() { Part2B = "zap", RefName = "Zapotec" }, - new() { Part2B = "zbl", RefName = "Blissymbols; Blissymbolics; Bliss" }, - new() { Part2B = "zen", RefName = "Zenaga" }, - new() { Part2B = "zgh", RefName = "Standard Moroccan Tamazight" }, + new() + { + Part2B = "ypk", + Part2T = null, + Part1 = null, + RefName = "Yupik languages", + }, + new() + { + Part2B = "zap", + Part2T = null, + Part1 = null, + RefName = "Zapotec", + }, + new() + { + Part2B = "zbl", + Part2T = null, + Part1 = null, + RefName = "Blissymbols; Blissymbolics; Bliss", + }, + new() + { + Part2B = "zen", + Part2T = null, + Part1 = null, + RefName = "Zenaga", + }, + new() + { + Part2B = "zgh", + Part2T = null, + Part1 = null, + RefName = "Standard Moroccan Tamazight", + }, new() { Part2B = "zha", + Part2T = null, Part1 = "za", RefName = "Zhuang; Chuang", }, - new() { Part2B = "znd", RefName = "Zande languages" }, + new() + { + Part2B = "znd", + Part2T = null, + Part1 = null, + RefName = "Zande languages", + }, new() { Part2B = "zul", + Part2T = null, Part1 = "zu", RefName = "Zulu", }, - new() { Part2B = "zun", RefName = "Zuni" }, - new() { Part2B = "zxx", RefName = "No linguistic content; Not applicable" }, + new() + { + Part2B = "zun", + Part2T = null, + Part1 = null, + RefName = "Zuni", + }, + new() + { + Part2B = "zxx", + Part2T = null, + Part1 = null, + RefName = "No linguistic content; Not applicable", + }, new() { Part2B = "zza", + Part2T = null, + Part1 = null, RefName = "Zaza; Dimili; Dimli; Kirdki; Kirmanjki; Zazaki", }, ], diff --git a/LanguageTags/Iso6393Data.cs b/LanguageTags/Iso6393Data.cs index b58d7a9..02a7cad 100644 --- a/LanguageTags/Iso6393Data.cs +++ b/LanguageTags/Iso6393Data.cs @@ -1,7 +1,6 @@ using System; using System.Collections.Generic; using System.Collections.Immutable; -using System.Diagnostics; using System.Globalization; using System.IO; using System.Linq; @@ -10,12 +9,21 @@ namespace ptr727.LanguageTags; +/// +/// Provides access to ISO 639-3 language code data. +/// public partial class Iso6393Data { - public const string DataUri = + internal const string DataUri = "https://iso639-3.sil.org/sites/iso639-3/files/downloads/iso-639-3.tab"; - public const string DataFileName = "iso6393"; + internal const string DataFileName = "iso6393"; + /// + /// Loads ISO 639-3 data from a file. + /// + /// The path to the data file. + /// The loaded . + /// Thrown when the file contains invalid data. public static Iso6393Data LoadData(string fileName) { // https://iso639-3.sil.org/code_tables/download_tables @@ -30,21 +38,31 @@ public static Iso6393Data LoadData(string fileName) // Read header // Id Part2b Part2t Part1 Scope Language_Type Ref_Name Comment - List recordList = []; + List recordList = []; using StreamReader lineReader = new(File.OpenRead(fileName)); - string line = lineReader.ReadLine(); - Debug.Assert(!string.IsNullOrEmpty(line)); - Debug.Assert(line.Split('\t').Length == 8); + string? line = lineReader.ReadLine(); + if (string.IsNullOrEmpty(line)) + { + throw new InvalidDataException($"Missing header line in ISO 639-3 file: {fileName}"); + } + List records = [.. line.Split('\t').Select(item => item.Trim())]; + if (records.Count != 8) + { + throw new InvalidDataException($"Invalid data found in ISO 639-3 record: {line}"); + } // Read line by line while ((line = lineReader.ReadLine()) is not null) { // Parse using tab character - List records = [.. line.Split('\t').Select(item => item.Trim())]; - Debug.Assert(records.Count == 8); + records = [.. line.Split('\t').Select(item => item.Trim())]; + if (records.Count != 8) + { + throw new InvalidDataException($"Invalid data found in ISO 639-3 record: {line}"); + } // Populate record - Record record = new() + Iso6393Record record = new() { Id = string.IsNullOrEmpty(records[0]) ? null : records[0], Part2B = string.IsNullOrEmpty(records[1]) ? null : records[1], @@ -55,30 +73,42 @@ public static Iso6393Data LoadData(string fileName) RefName = string.IsNullOrEmpty(records[6]) ? null : records[6], Comment = string.IsNullOrEmpty(records[7]) ? null : records[7], }; - Debug.Assert(!string.IsNullOrEmpty(record.Id)); - Debug.Assert(!string.IsNullOrEmpty(record.Scope)); - Debug.Assert(!string.IsNullOrEmpty(record.LanguageType)); - Debug.Assert(!string.IsNullOrEmpty(record.RefName)); + if ( + string.IsNullOrEmpty(record.Id) + || string.IsNullOrEmpty(record.Scope) + || string.IsNullOrEmpty(record.LanguageType) + || string.IsNullOrEmpty(record.RefName) + ) + { + throw new InvalidDataException($"Invalid data found in ISO 639-3 record: {line}"); + } recordList.Add(record); } - - return new Iso6393Data { RecordList = [.. recordList] }; + return recordList.Count == 0 + ? throw new InvalidDataException($"No data found in ISO 639-3 file: {fileName}") + : new Iso6393Data { RecordList = [.. recordList] }; } - public static Iso6393Data LoadJson(string fileName) => - JsonSerializer.Deserialize( + /// + /// Loads ISO 639-3 data from a JSON file. + /// + /// The path to the JSON file. + /// The loaded or null if deserialization fails. + public static Iso6393Data? LoadJson(string fileName) => + JsonSerializer.Deserialize( File.ReadAllText(fileName), - JsonOptions.JsonReadOptions + LanguageJsonContext.Default.Iso6393Data ); - public static void SaveJson(string fileName, Iso6393Data iso6393) => + internal static void SaveJson(string fileName, Iso6393Data iso6393) => File.WriteAllText( fileName, - JsonSerializer.Serialize(iso6393, JsonOptions.JsonWriteOptions) + JsonSerializer.Serialize(iso6393, LanguageJsonContext.Default.Iso6393Data) ); - public static void GenCode(string fileName, Iso6393Data iso6393) + internal static void GenCode(string fileName, Iso6393Data iso6393) { + ArgumentNullException.ThrowIfNull(iso6393); StringBuilder stringBuilder = new(); _ = stringBuilder .Append( @@ -98,7 +128,7 @@ public static Iso6393Data Create() => ) .Append("\r\n"); - foreach (Record record in iso6393.RecordList) + foreach (Iso6393Record record in iso6393.RecordList) { _ = stringBuilder .Append( @@ -106,85 +136,17 @@ public static Iso6393Data Create() => $$""" new() { - """ - ) - .Append("\r\n"); - if (!string.IsNullOrEmpty(record.Id)) - { - _ = stringBuilder - .Append( - CultureInfo.InvariantCulture, - $" Id = \"{record.Id}\"," - ) - .Append("\r\n"); - } - if (!string.IsNullOrEmpty(record.Part2B)) - { - _ = stringBuilder - .Append( - CultureInfo.InvariantCulture, - $" Part2B = \"{record.Part2B}\"," - ) - .Append("\r\n"); - } - if (!string.IsNullOrEmpty(record.Part2T)) - { - _ = stringBuilder - .Append( - CultureInfo.InvariantCulture, - $" Part2T = \"{record.Part2T}\"," - ) - .Append("\r\n"); - } - if (!string.IsNullOrEmpty(record.Part1)) - { - _ = stringBuilder - .Append( - CultureInfo.InvariantCulture, - $" Part1 = \"{record.Part1}\"," - ) - .Append("\r\n"); - } - if (!string.IsNullOrEmpty(record.Scope)) - { - _ = stringBuilder - .Append( - CultureInfo.InvariantCulture, - $" Scope = \"{record.Scope}\"," - ) - .Append("\r\n"); - } - if (!string.IsNullOrEmpty(record.LanguageType)) - { - _ = stringBuilder - .Append( - CultureInfo.InvariantCulture, - $" LanguageType = \"{record.LanguageType}\"," - ) - .Append("\r\n"); - } - if (!string.IsNullOrEmpty(record.RefName)) - { - _ = stringBuilder - .Append( - CultureInfo.InvariantCulture, - $" RefName = \"{record.RefName}\"," - ) - .Append("\r\n"); - } - if (!string.IsNullOrEmpty(record.Comment)) - { - _ = stringBuilder - .Append( - CultureInfo.InvariantCulture, - $" Comment = \"{record.Comment}\"," - ) - .Append("\r\n"); - } - _ = stringBuilder - .Append( - """ - }, + Id = {{LanguageSchema.GetCodeGenString(record.Id)}}, + Part2B = {{LanguageSchema.GetCodeGenString(record.Part2B)}}, + Part2T = {{LanguageSchema.GetCodeGenString(record.Part2T)}}, + Part1 = {{LanguageSchema.GetCodeGenString(record.Part1)}}, + Scope = {{LanguageSchema.GetCodeGenString(record.Scope)}}, + LanguageType = {{LanguageSchema.GetCodeGenString( + record.LanguageType + )}}, + RefName = {{LanguageSchema.GetCodeGenString( + record.RefName + )}}, """ ) .Append("\r\n"); @@ -199,42 +161,29 @@ public static Iso6393Data Create() => ) .Append("\r\n"); - Iso6392Data.WriteFile(fileName, stringBuilder.ToString()); - } - - public record Record - { - // The three-letter 639-3 identifier - public string Id { get; init; } - - // Equivalent 639-2 identifier of the bibliographic applications code set, if there is one - public string Part2B { get; init; } - - // Equivalent 639-2 identifier of the terminology applications code set, if there is one - public string Part2T { get; init; } - - // Equivalent 639-1 identifier, if there is one - public string Part1 { get; init; } - - // I(ndividual), M(acrolanguage), S(pecial) - public string Scope { get; init; } - - // A(ncient), C(onstructed), E(xtinct), H(istorical), L(iving), S(pecial) - public string LanguageType { get; init; } - - // Reference language name - public string RefName { get; init; } - - // Comment relating to one or more of the columns - public string Comment { get; init; } + LanguageSchema.WriteFile(fileName, stringBuilder.ToString()); } - public ImmutableArray RecordList { get; init; } + /// + /// Gets the collection of ISO 639-3 language records. + /// + public required ImmutableArray RecordList { get; init; } - public Record Find(string languageTag, bool includeDescription) + /// + /// Finds an ISO 639-3 language record by language code or description. + /// + /// The language code or description to search for. + /// If true, searches in the reference name field; otherwise, only searches language codes. + /// The matching or null if not found. + public Iso6393Record? Find(string? languageTag, bool includeDescription) { + if (string.IsNullOrEmpty(languageTag)) + { + return null; + } + // Find the matching language entry - Record record = null; + Iso6393Record? record = null; // 693 3 letter form if (languageTag.Length == 3) @@ -312,3 +261,49 @@ record = RecordList.FirstOrDefault(item => return null; } } + +/// +/// Represents an ISO 639-3 language code record. +/// +public record Iso6393Record +{ + /// + /// Gets the ISO 639-3 identifier (3 letters). + /// + public string? Id { get; init; } + + /// + /// Gets the equivalent ISO 639-2/B bibliographic code (3 letters). + /// + public string? Part2B { get; init; } + + /// + /// Gets the equivalent ISO 639-2/T terminology code (3 letters). + /// + public string? Part2T { get; init; } + + /// + /// Gets the equivalent ISO 639-1 code (2 letters). + /// + public string? Part1 { get; init; } + + /// + /// Gets the scope of the language: I(ndividual), M(acrolanguage), or S(pecial). + /// + public string? Scope { get; init; } + + /// + /// Gets the type of the language: A(ncient), C(onstructed), E(xtinct), H(istorical), L(iving), or S(pecial). + /// + public string? LanguageType { get; init; } + + /// + /// Gets the reference name of the language. + /// + public string? RefName { get; init; } + + /// + /// Gets additional comments about the language. + /// + public string? Comment { get; init; } +} diff --git a/LanguageTags/Iso6393DataGen.cs b/LanguageTags/Iso6393DataGen.cs index 909f118..fec59f6 100644 --- a/LanguageTags/Iso6393DataGen.cs +++ b/LanguageTags/Iso6393DataGen.cs @@ -12,107 +12,167 @@ public static Iso6393Data Create() => new() { Id = "aaa", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Ghotuo", + Comment = null, }, new() { Id = "aab", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Alumu-Tesu", + Comment = null, }, new() { Id = "aac", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Ari", + Comment = null, }, new() { Id = "aad", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Amal", + Comment = null, }, new() { Id = "aae", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Arbëreshë Albanian", + Comment = null, }, new() { Id = "aaf", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Aranadan", + Comment = null, }, new() { Id = "aag", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Ambrak", + Comment = null, }, new() { Id = "aah", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Abu' Arapesh", + Comment = null, }, new() { Id = "aai", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Arifama-Miniafia", + Comment = null, }, new() { Id = "aak", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Ankave", + Comment = null, }, new() { Id = "aal", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Afade", + Comment = null, }, new() { Id = "aan", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Anambé", + Comment = null, }, new() { Id = "aao", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Algerian Saharan Arabic", + Comment = null, }, new() { Id = "aap", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Pará Arára", + Comment = null, }, new() { Id = "aaq", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Eastern Abnaki", + Comment = null, }, new() { @@ -123,118 +183,183 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Afar", + Comment = null, }, new() { Id = "aas", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Aasáx", + Comment = null, }, new() { Id = "aat", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Arvanitika Albanian", + Comment = null, }, new() { Id = "aau", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Abau", + Comment = null, }, new() { Id = "aaw", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Solong", + Comment = null, }, new() { Id = "aax", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Mandobo Atas", + Comment = null, }, new() { Id = "aaz", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Amarasi", + Comment = null, }, new() { Id = "aba", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Abé", + Comment = null, }, new() { Id = "abb", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Bankon", + Comment = null, }, new() { Id = "abc", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Ambala Ayta", + Comment = null, }, new() { Id = "abd", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Manide", + Comment = null, }, new() { Id = "abe", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Western Abnaki", + Comment = null, }, new() { Id = "abf", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Abai Sungai", + Comment = null, }, new() { Id = "abg", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Abaga", + Comment = null, }, new() { Id = "abh", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Tajiki Arabic", + Comment = null, }, new() { Id = "abi", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Abidji", + Comment = null, }, new() { Id = "abj", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Aka-Bea", + Comment = null, }, new() { @@ -245,604 +370,931 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Abkhazian", + Comment = null, }, new() { Id = "abl", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Lampung Nyo", + Comment = null, }, new() { Id = "abm", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Abanyom", + Comment = null, }, new() { Id = "abn", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Abua", + Comment = null, }, new() { Id = "abo", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Abon", + Comment = null, }, new() { Id = "abp", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Abellen Ayta", + Comment = null, }, new() { Id = "abq", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Abaza", + Comment = null, }, new() { Id = "abr", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Abron", + Comment = null, }, new() { Id = "abs", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Ambonese Malay", + Comment = null, }, new() { Id = "abt", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Ambulas", + Comment = null, }, new() { Id = "abu", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Abure", + Comment = null, }, new() { Id = "abv", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Baharna Arabic", + Comment = null, }, new() { Id = "abw", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Pal", + Comment = null, }, new() { Id = "abx", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Inabaknon", + Comment = null, }, new() { Id = "aby", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Aneme Wake", + Comment = null, }, new() { Id = "abz", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Abui", + Comment = null, }, new() { Id = "aca", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Achagua", + Comment = null, }, new() { Id = "acb", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Áncá", + Comment = null, }, new() { Id = "acd", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Gikyode", + Comment = null, }, new() { Id = "ace", Part2B = "ace", Part2T = "ace", + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Achinese", + Comment = null, }, new() { Id = "acf", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Saint Lucian Creole French", + Comment = null, }, new() { Id = "ach", Part2B = "ach", Part2T = "ach", + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Acoli", + Comment = null, }, new() { Id = "aci", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Aka-Cari", + Comment = null, }, new() { Id = "ack", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Aka-Kora", + Comment = null, }, new() { Id = "acl", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Akar-Bale", + Comment = null, }, new() { Id = "acm", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Mesopotamian Arabic", + Comment = null, }, new() { Id = "acn", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Achang", + Comment = null, }, new() { Id = "acp", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Eastern Acipa", + Comment = null, }, new() { Id = "acq", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Ta'izzi-Adeni Arabic", + Comment = null, }, new() { Id = "acr", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Achi", + Comment = null, }, new() { Id = "acs", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Acroá", + Comment = null, }, new() { Id = "act", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Achterhoeks", + Comment = null, }, new() { Id = "acu", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Achuar-Shiwiar", + Comment = null, }, new() { Id = "acv", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Achumawi", + Comment = null, }, new() { Id = "acw", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Hijazi Arabic", + Comment = null, }, new() { Id = "acx", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Omani Arabic", + Comment = null, }, new() { Id = "acy", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Cypriot Arabic", + Comment = null, }, new() { Id = "acz", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Acheron", + Comment = null, }, new() { Id = "ada", Part2B = "ada", Part2T = "ada", + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Adangme", + Comment = null, }, new() { Id = "adb", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Atauran", + Comment = null, }, new() { Id = "add", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Lidzonka", + Comment = null, }, new() { Id = "ade", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Adele", + Comment = null, }, new() { Id = "adf", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Dhofari Arabic", + Comment = null, }, new() { Id = "adg", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Andegerebinha", + Comment = null, }, new() { Id = "adh", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Adhola", + Comment = null, }, new() { Id = "adi", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Adi", + Comment = null, }, new() { Id = "adj", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Adioukrou", + Comment = null, }, new() { Id = "adl", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Galo", + Comment = null, }, new() { Id = "adn", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Adang", + Comment = null, }, new() { Id = "ado", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Abu", + Comment = null, }, new() { Id = "adq", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Adangbe", + Comment = null, }, new() { Id = "adr", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Adonara", + Comment = null, }, new() { Id = "ads", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Adamorobe Sign Language", + Comment = null, }, new() { Id = "adt", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Adnyamathanha", + Comment = null, }, new() { Id = "adu", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Aduge", + Comment = null, }, new() { Id = "adw", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Amundava", + Comment = null, }, new() { Id = "adx", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Amdo Tibetan", + Comment = null, }, new() { Id = "ady", Part2B = "ady", Part2T = "ady", + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Adyghe", + Comment = null, }, new() { Id = "adz", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Adzera", + Comment = null, }, new() { Id = "aea", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Areba", + Comment = null, }, new() { Id = "aeb", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Tunisian Arabic", + Comment = null, }, new() { Id = "aec", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Saidi Arabic", + Comment = null, }, new() { Id = "aed", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Argentine Sign Language", + Comment = null, }, new() { Id = "aee", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Northeast Pashai", + Comment = null, }, new() { Id = "aek", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Haeke", + Comment = null, }, new() { Id = "ael", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Ambele", + Comment = null, }, new() { Id = "aem", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Arem", + Comment = null, }, new() { Id = "aen", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Armenian Sign Language", + Comment = null, }, new() { Id = "aeq", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Aer", + Comment = null, }, new() { Id = "aer", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Eastern Arrernte", + Comment = null, }, new() { Id = "aes", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Alsea", + Comment = null, }, new() { Id = "aeu", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Akeu", + Comment = null, }, new() { Id = "aew", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Ambakich", + Comment = null, }, new() { Id = "aey", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Amele", + Comment = null, }, new() { Id = "aez", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Aeka", + Comment = null, }, new() { Id = "afb", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Gulf Arabic", + Comment = null, }, new() { Id = "afd", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Andai", + Comment = null, }, new() { Id = "afe", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Putukwam", + Comment = null, }, new() { Id = "afg", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Afghan Sign Language", + Comment = null, }, new() { Id = "afh", Part2B = "afh", Part2T = "afh", + Part1 = null, Scope = "I", LanguageType = "C", RefName = "Afrihili", + Comment = null, }, new() { Id = "afi", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Akrukay", + Comment = null, }, new() { Id = "afk", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Nanubae", + Comment = null, }, new() { Id = "afn", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Defaka", + Comment = null, }, new() { Id = "afo", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Eloyi", + Comment = null, }, new() { Id = "afp", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Tapei", + Comment = null, }, new() { @@ -853,519 +1305,810 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Afrikaans", + Comment = null, }, new() { Id = "afs", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Afro-Seminole Creole", + Comment = null, }, new() { Id = "aft", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Afitti", + Comment = null, }, new() { Id = "afu", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Awutu", + Comment = null, }, new() { Id = "afz", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Obokuitai", + Comment = null, }, new() { Id = "aga", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Aguano", + Comment = null, }, new() { Id = "agb", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Legbo", + Comment = null, }, new() { Id = "agc", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Agatu", + Comment = null, }, new() { Id = "agd", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Agarabi", + Comment = null, }, new() { Id = "age", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Angal", + Comment = null, }, new() { Id = "agf", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Arguni", + Comment = null, }, new() { Id = "agg", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Angor", + Comment = null, }, new() { Id = "agh", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Ngelima", + Comment = null, }, new() { Id = "agi", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Agariya", + Comment = null, }, new() { Id = "agj", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Argobba", + Comment = null, }, new() { Id = "agk", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Isarog Agta", + Comment = null, }, new() { Id = "agl", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Fembe", + Comment = null, }, new() { Id = "agm", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Angaataha", + Comment = null, }, new() { Id = "agn", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Agutaynen", + Comment = null, }, new() { Id = "ago", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Tainae", + Comment = null, }, new() { Id = "agq", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Aghem", + Comment = null, }, new() { Id = "agr", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Aguaruna", + Comment = null, }, new() { Id = "ags", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Esimbi", + Comment = null, }, new() { Id = "agt", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Central Cagayan Agta", + Comment = null, }, new() { Id = "agu", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Aguacateco", + Comment = null, }, new() { Id = "agv", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Remontado Dumagat", + Comment = null, }, new() { Id = "agw", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kahua", + Comment = null, }, new() { Id = "agx", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Aghul", + Comment = null, }, new() { Id = "agy", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Southern Alta", + Comment = null, }, new() { Id = "agz", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Mt. Iriga Agta", + Comment = null, }, new() { Id = "aha", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Ahanta", + Comment = null, }, new() { Id = "ahb", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Axamb", + Comment = null, }, new() { Id = "ahg", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Qimant", + Comment = null, }, new() { Id = "ahh", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Aghu", + Comment = null, }, new() { Id = "ahi", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Tiagbamrin Aizi", + Comment = null, }, new() { Id = "ahk", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Akha", + Comment = null, }, new() { Id = "ahl", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Igo", + Comment = null, }, new() { Id = "ahm", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Mobumrin Aizi", + Comment = null, }, new() { Id = "ahn", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Àhàn", + Comment = null, }, new() { Id = "aho", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Ahom", + Comment = null, }, new() { Id = "ahp", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Aproumu Aizi", + Comment = null, }, new() { Id = "ahr", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Ahirani", + Comment = null, }, new() { Id = "ahs", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Ashe", + Comment = null, }, new() { Id = "aht", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Ahtena", + Comment = null, }, new() { Id = "aia", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Arosi", + Comment = null, }, new() { Id = "aib", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Ainu (China)", + Comment = null, }, new() { Id = "aic", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Ainbai", + Comment = null, }, new() { Id = "aid", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Alngith", + Comment = null, }, new() { Id = "aie", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Amara", + Comment = null, }, new() { Id = "aif", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Agi", + Comment = null, }, new() { Id = "aig", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Antigua and Barbuda Creole English", + Comment = null, }, new() { Id = "aih", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Ai-Cham", + Comment = null, }, new() { Id = "aii", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Assyrian Neo-Aramaic", + Comment = null, }, new() { Id = "aij", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Lishanid Noshan", + Comment = null, }, new() { Id = "aik", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Ake", + Comment = null, }, new() { Id = "ail", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Aimele", + Comment = null, }, new() { Id = "aim", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Aimol", + Comment = null, }, new() { Id = "ain", Part2B = "ain", Part2T = "ain", + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Ainu (Japan)", + Comment = null, }, new() { Id = "aio", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Aiton", + Comment = null, }, new() { Id = "aip", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Burumakok", + Comment = null, }, new() { Id = "aiq", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Aimaq", + Comment = null, }, new() { Id = "air", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Airoran", + Comment = null, }, new() { Id = "ait", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Arikem", + Comment = null, }, new() { Id = "aiw", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Aari", + Comment = null, }, new() { Id = "aix", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Aighon", + Comment = null, }, new() { Id = "aiy", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Ali", + Comment = null, }, new() { Id = "aja", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Aja (South Sudan)", + Comment = null, }, new() { Id = "ajg", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Aja (Benin)", + Comment = null, }, new() { Id = "aji", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Ajië", + Comment = null, }, new() { Id = "ajn", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Andajin", + Comment = null, }, new() { Id = "ajs", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Algerian Jewish Sign Language", + Comment = null, }, new() { Id = "aju", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Judeo-Moroccan Arabic", + Comment = null, }, new() { Id = "ajw", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Ajawa", + Comment = null, }, new() { Id = "ajz", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Amri Karbi", + Comment = null, }, new() { @@ -1376,383 +2119,590 @@ public static Iso6393Data Create() => Scope = "M", LanguageType = "L", RefName = "Akan", + Comment = null, }, new() { Id = "akb", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Batak Angkola", + Comment = null, }, new() { Id = "akc", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Mpur", + Comment = null, }, new() { Id = "akd", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Ukpet-Ehom", + Comment = null, }, new() { Id = "ake", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Akawaio", + Comment = null, }, new() { Id = "akf", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Akpa", + Comment = null, }, new() { Id = "akg", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Anakalangu", + Comment = null, }, new() { Id = "akh", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Angal Heneng", + Comment = null, }, new() { Id = "aki", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Aiome", + Comment = null, }, new() { Id = "akj", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Aka-Jeru", + Comment = null, }, new() { Id = "akk", Part2B = "akk", Part2T = "akk", + Part1 = null, Scope = "I", LanguageType = "H", RefName = "Akkadian", + Comment = null, }, new() { Id = "akl", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Aklanon", + Comment = null, }, new() { Id = "akm", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Aka-Bo", + Comment = null, }, new() { Id = "ako", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Akurio", + Comment = null, }, new() { Id = "akp", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Siwu", + Comment = null, }, new() { Id = "akq", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Ak", + Comment = null, }, new() { Id = "akr", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Araki", + Comment = null, }, new() { Id = "aks", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Akaselem", + Comment = null, }, new() { Id = "akt", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Akolet", + Comment = null, }, new() { Id = "aku", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Akum", + Comment = null, }, new() { Id = "akv", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Akhvakh", + Comment = null, }, new() { Id = "akw", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Akwa", + Comment = null, }, new() { Id = "akx", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Aka-Kede", + Comment = null, }, new() { Id = "aky", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Aka-Kol", + Comment = null, }, new() { Id = "akz", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Alabama", + Comment = null, }, new() { Id = "ala", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Alago", + Comment = null, }, new() { Id = "alc", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Qawasqar", + Comment = null, }, new() { Id = "ald", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Alladian", + Comment = null, }, new() { Id = "ale", Part2B = "ale", Part2T = "ale", + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Aleut", + Comment = null, }, new() { Id = "alf", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Alege", + Comment = null, }, new() { Id = "alh", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Alawa", + Comment = null, }, new() { Id = "ali", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Amaimon", + Comment = null, }, new() { Id = "alj", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Alangan", + Comment = null, }, new() { Id = "alk", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Alak", + Comment = null, }, new() { Id = "all", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Allar", + Comment = null, }, new() { Id = "alm", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Amblong", + Comment = null, }, new() { Id = "aln", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Gheg Albanian", + Comment = null, }, new() { Id = "alo", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Larike-Wakasihu", + Comment = null, }, new() { Id = "alp", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Alune", + Comment = null, }, new() { Id = "alq", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Algonquin", + Comment = null, }, new() { Id = "alr", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Alutor", + Comment = null, }, new() { Id = "als", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Tosk Albanian", + Comment = null, }, new() { Id = "alt", Part2B = "alt", Part2T = "alt", + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Southern Altai", + Comment = null, }, new() { Id = "alu", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "'Are'are", + Comment = null, }, new() { Id = "alw", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Alaba-K’abeena", + Comment = null, }, new() { Id = "alx", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Amol", + Comment = null, }, new() { Id = "aly", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Alyawarr", + Comment = null, }, new() { Id = "alz", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Alur", + Comment = null, }, new() { Id = "ama", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Amanayé", + Comment = null, }, new() { Id = "amb", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Ambo", + Comment = null, }, new() { Id = "amc", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Amahuaca", + Comment = null, }, new() { Id = "ame", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Yanesha'", + Comment = null, }, new() { Id = "amf", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Hamer-Banna", + Comment = null, }, new() { Id = "amg", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Amurdak", + Comment = null, }, new() { @@ -1763,696 +2713,1085 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Amharic", + Comment = null, }, new() { Id = "ami", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Amis", + Comment = null, }, new() { Id = "amj", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Amdang", + Comment = null, }, new() { Id = "amk", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Ambai", + Comment = null, }, new() { Id = "aml", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "War-Jaintia", + Comment = null, }, new() { Id = "amm", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Ama (Papua New Guinea)", + Comment = null, }, new() { Id = "amn", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Amanab", + Comment = null, }, new() { Id = "amo", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Amo", + Comment = null, }, new() { Id = "amp", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Alamblak", + Comment = null, }, new() { Id = "amq", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Amahai", + Comment = null, }, new() { Id = "amr", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Amarakaeri", + Comment = null, }, new() { Id = "ams", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Southern Amami-Oshima", + Comment = null, }, new() { Id = "amt", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Amto", + Comment = null, }, new() { Id = "amu", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Guerrero Amuzgo", + Comment = null, }, new() { Id = "amv", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Ambelau", + Comment = null, }, new() { Id = "amw", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Western Neo-Aramaic", + Comment = null, }, new() { Id = "amx", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Anmatyerre", + Comment = null, }, new() { Id = "amy", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Ami", + Comment = null, }, new() { Id = "amz", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Atampaya", + Comment = null, }, new() { Id = "ana", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Andaqui", + Comment = null, }, new() { Id = "anb", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Andoa", + Comment = null, }, new() { Id = "anc", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Ngas", + Comment = null, }, new() { Id = "and", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Ansus", + Comment = null, }, new() { Id = "ane", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Xârâcùù", + Comment = null, }, new() { Id = "anf", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Animere", + Comment = null, }, new() { Id = "ang", Part2B = "ang", Part2T = "ang", + Part1 = null, Scope = "I", LanguageType = "H", RefName = "Old English (ca. 450-1100)", + Comment = null, }, new() { Id = "anh", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Nend", + Comment = null, }, new() { Id = "ani", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Andi", + Comment = null, }, new() { Id = "anj", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Anor", + Comment = null, }, new() { Id = "ank", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Goemai", + Comment = null, }, new() { Id = "anl", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Anu-Hkongso Chin", + Comment = null, }, new() { Id = "anm", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Anal", + Comment = null, }, new() { Id = "ann", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Obolo", + Comment = null, }, new() { Id = "ano", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Andoque", + Comment = null, }, new() { Id = "anp", Part2B = "anp", Part2T = "anp", + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Angika", + Comment = null, }, new() { Id = "anq", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Jarawa (India)", + Comment = null, }, new() { Id = "anr", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Andh", + Comment = null, }, new() { Id = "ans", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Anserma", + Comment = null, }, new() { Id = "ant", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Antakarinya", + Comment = null, }, new() { Id = "anu", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Anuak", + Comment = null, }, new() { Id = "anv", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Denya", + Comment = null, }, new() { Id = "anw", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Anaang", + Comment = null, }, new() { Id = "anx", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Andra-Hus", + Comment = null, }, new() { Id = "any", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Anyin", + Comment = null, }, new() { Id = "anz", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Anem", + Comment = null, }, new() { Id = "aoa", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Angolar", + Comment = null, }, new() { Id = "aob", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Abom", + Comment = null, }, new() { Id = "aoc", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Pemon", + Comment = null, }, new() { Id = "aod", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Andarum", + Comment = null, }, new() { Id = "aoe", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Angal Enen", + Comment = null, }, new() { Id = "aof", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Bragat", + Comment = null, }, new() { Id = "aog", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Angoram", + Comment = null, }, new() { Id = "aoi", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Anindilyakwa", + Comment = null, }, new() { Id = "aoj", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Mufian", + Comment = null, }, new() { Id = "aok", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Arhö", + Comment = null, }, new() { Id = "aol", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Alor", + Comment = null, }, new() { Id = "aom", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Ömie", + Comment = null, }, new() { Id = "aon", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Bumbita Arapesh", + Comment = null, }, new() { Id = "aor", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Aore", + Comment = null, }, new() { Id = "aos", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Taikat", + Comment = null, }, new() { Id = "aot", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Atong (India)", + Comment = null, }, new() { Id = "aou", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "A'ou", + Comment = null, }, new() { Id = "aox", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Atorada", + Comment = null, }, new() { Id = "aoz", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Uab Meto", + Comment = null, }, new() { Id = "apb", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Sa'a", + Comment = null, }, new() { Id = "apc", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Levantine Arabic", + Comment = null, }, new() { Id = "apd", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Sudanese Arabic", + Comment = null, }, new() { Id = "ape", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Bukiyip", + Comment = null, }, new() { Id = "apf", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Pahanan Agta", + Comment = null, }, new() { Id = "apg", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Ampanang", + Comment = null, }, new() { Id = "aph", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Athpariya", + Comment = null, }, new() { Id = "api", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Apiaká", + Comment = null, }, new() { Id = "apj", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Jicarilla Apache", + Comment = null, }, new() { Id = "apk", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kiowa Apache", + Comment = null, }, new() { Id = "apl", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Lipan Apache", + Comment = null, }, new() { Id = "apm", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Mescalero-Chiricahua Apache", + Comment = null, }, new() { Id = "apn", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Apinayé", + Comment = null, }, new() { Id = "apo", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Ambul", + Comment = null, }, new() { Id = "app", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Apma", + Comment = null, }, new() { Id = "apq", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "A-Pucikwar", + Comment = null, }, new() { Id = "apr", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Arop-Lokep", + Comment = null, }, new() { Id = "aps", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Arop-Sissano", + Comment = null, }, new() { Id = "apt", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Apatani", + Comment = null, }, new() { Id = "apu", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Apurinã", + Comment = null, }, new() { Id = "apv", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Alapmunte", + Comment = null, }, new() { Id = "apw", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Western Apache", + Comment = null, }, new() { Id = "apx", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Aputai", + Comment = null, }, new() { Id = "apy", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Apalaí", + Comment = null, }, new() { Id = "apz", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Safeyoka", + Comment = null, }, new() { Id = "aqc", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Archi", + Comment = null, }, new() { Id = "aqd", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Ampari Dogon", + Comment = null, }, new() { Id = "aqg", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Arigidi", + Comment = null, }, new() { Id = "aqk", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Aninka", + Comment = null, }, new() { Id = "aqm", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Atohwaim", + Comment = null, }, new() { Id = "aqn", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Northern Alta", + Comment = null, }, new() { Id = "aqp", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Atakapa", + Comment = null, }, new() { Id = "aqr", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Arhâ", + Comment = null, }, new() { Id = "aqt", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Angaité", + Comment = null, }, new() { Id = "aqz", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Akuntsu", + Comment = null, }, new() { @@ -2463,36 +3802,51 @@ public static Iso6393Data Create() => Scope = "M", LanguageType = "L", RefName = "Arabic", + Comment = null, }, new() { Id = "arb", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Standard Arabic", + Comment = null, }, new() { Id = "arc", Part2B = "arc", Part2T = "arc", + Part1 = null, Scope = "I", LanguageType = "H", RefName = "Official Aramaic (700-300 BCE)", + Comment = null, }, new() { Id = "ard", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Arabana", + Comment = null, }, new() { Id = "are", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Western Arrarnta", + Comment = null, }, new() { @@ -2503,208 +3857,315 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Aragonese", + Comment = null, }, new() { Id = "arh", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Arhuaco", + Comment = null, }, new() { Id = "ari", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Arikara", + Comment = null, }, new() { Id = "arj", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Arapaso", + Comment = null, }, new() { Id = "ark", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Arikapú", + Comment = null, }, new() { Id = "arl", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Arabela", + Comment = null, }, new() { Id = "arn", Part2B = "arn", Part2T = "arn", + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Mapudungun", + Comment = null, }, new() { Id = "aro", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Araona", + Comment = null, }, new() { Id = "arp", Part2B = "arp", Part2T = "arp", + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Arapaho", + Comment = null, }, new() { Id = "arq", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Algerian Arabic", + Comment = null, }, new() { Id = "arr", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Karo (Brazil)", + Comment = null, }, new() { Id = "ars", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Najdi Arabic", + Comment = null, }, new() { Id = "aru", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Aruá (Amazonas State)", + Comment = null, }, new() { Id = "arv", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Arbore", + Comment = null, }, new() { Id = "arw", Part2B = "arw", Part2T = "arw", + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Arawak", + Comment = null, }, new() { Id = "arx", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Aruá (Rodonia State)", + Comment = null, }, new() { Id = "ary", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Moroccan Arabic", + Comment = null, }, new() { Id = "arz", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Egyptian Arabic", + Comment = null, }, new() { Id = "asa", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Asu (Tanzania)", + Comment = null, }, new() { Id = "asb", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Assiniboine", + Comment = null, }, new() { Id = "asc", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Casuarina Coast Asmat", + Comment = null, }, new() { Id = "ase", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "American Sign Language", + Comment = null, }, new() { Id = "asf", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Auslan", + Comment = null, }, new() { Id = "asg", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Cishingini", + Comment = null, }, new() { Id = "ash", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Abishira", + Comment = null, }, new() { Id = "asi", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Buruwai", + Comment = null, }, new() { Id = "asj", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Sari", + Comment = null, }, new() { Id = "ask", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Ashkun", + Comment = null, }, new() { Id = "asl", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Asilulu", + Comment = null, }, new() { @@ -2715,421 +4176,656 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Assamese", + Comment = null, }, new() { Id = "asn", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Xingú Asuriní", + Comment = null, }, new() { Id = "aso", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Dano", + Comment = null, }, new() { Id = "asp", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Algerian Sign Language", + Comment = null, }, new() { Id = "asq", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Austrian Sign Language", + Comment = null, }, new() { Id = "asr", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Asuri", + Comment = null, }, new() { Id = "ass", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Ipulo", + Comment = null, }, new() { Id = "ast", Part2B = "ast", Part2T = "ast", + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Asturian", + Comment = null, }, new() { Id = "asu", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Tocantins Asurini", + Comment = null, }, new() { Id = "asv", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Asoa", + Comment = null, }, new() { Id = "asw", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Australian Aborigines Sign Language", + Comment = null, }, new() { Id = "asx", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Muratayak", + Comment = null, }, new() { Id = "asy", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Yaosakor Asmat", + Comment = null, }, new() { Id = "asz", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "As", + Comment = null, }, new() { Id = "ata", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Pele-Ata", + Comment = null, }, new() { Id = "atb", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Zaiwa", + Comment = null, }, new() { Id = "atc", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Atsahuaca", + Comment = null, }, new() { Id = "atd", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Ata Manobo", + Comment = null, }, new() { Id = "ate", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Atemble", + Comment = null, }, new() { Id = "atg", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Ivbie North-Okpela-Arhe", + Comment = null, }, new() { Id = "ati", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Attié", + Comment = null, }, new() { Id = "atj", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Atikamekw", + Comment = null, }, new() { Id = "atk", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Ati", + Comment = null, }, new() { Id = "atl", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Mt. Iraya Agta", + Comment = null, }, new() { Id = "atm", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Ata", + Comment = null, }, new() { Id = "atn", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Ashtiani", + Comment = null, }, new() { Id = "ato", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Atong (Cameroon)", + Comment = null, }, new() { Id = "atp", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Pudtol Atta", + Comment = null, }, new() { Id = "atq", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Aralle-Tabulahan", + Comment = null, }, new() { Id = "atr", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Waimiri-Atroari", + Comment = null, }, new() { Id = "ats", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Gros Ventre", + Comment = null, }, new() { Id = "att", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Pamplona Atta", + Comment = null, }, new() { Id = "atu", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Reel", + Comment = null, }, new() { Id = "atv", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Northern Altai", + Comment = null, }, new() { Id = "atw", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Atsugewi", + Comment = null, }, new() { Id = "atx", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Arutani", + Comment = null, }, new() { Id = "aty", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Aneityum", + Comment = null, }, new() { Id = "atz", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Arta", + Comment = null, }, new() { Id = "aua", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Asumboa", + Comment = null, }, new() { Id = "aub", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Alugu", + Comment = null, }, new() { Id = "auc", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Waorani", + Comment = null, }, new() { Id = "aud", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Anuta", + Comment = null, }, new() { Id = "aug", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Aguna", + Comment = null, }, new() { Id = "auh", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Aushi", + Comment = null, }, new() { Id = "aui", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Anuki", + Comment = null, }, new() { Id = "auj", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Awjilah", + Comment = null, }, new() { Id = "auk", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Heyo", + Comment = null, }, new() { Id = "aul", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Aulua", + Comment = null, }, new() { Id = "aum", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Asu (Nigeria)", + Comment = null, }, new() { Id = "aun", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Molmo One", + Comment = null, }, new() { Id = "auo", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Auyokawa", + Comment = null, }, new() { Id = "aup", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Makayam", + Comment = null, }, new() { Id = "auq", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Anus", + Comment = null, }, new() { Id = "aur", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Aruek", + Comment = null, }, new() { Id = "aut", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Austral", + Comment = null, }, new() { Id = "auu", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Auye", + Comment = null, }, new() { Id = "auw", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Awyi", + Comment = null, }, new() { Id = "aux", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Aurá", + Comment = null, }, new() { Id = "auy", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Awiyaana", + Comment = null, }, new() { Id = "auz", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Uzbeki Arabic", + Comment = null, }, new() { @@ -3140,20 +4836,29 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Avaric", + Comment = null, }, new() { Id = "avb", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Avau", + Comment = null, }, new() { Id = "avd", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Alviri-Vidari", + Comment = null, }, new() { @@ -3164,330 +4869,513 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Avestan", + Comment = null, }, new() { Id = "avi", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Avikam", + Comment = null, }, new() { Id = "avk", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "C", RefName = "Kotava", + Comment = null, }, new() { Id = "avl", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Eastern Egyptian Bedawi Arabic", + Comment = null, }, new() { Id = "avm", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Angkamuthi", + Comment = null, }, new() { Id = "avn", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Avatime", + Comment = null, }, new() { Id = "avo", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Agavotaguerra", + Comment = null, }, new() { Id = "avs", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Aushiri", + Comment = null, }, new() { Id = "avt", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Au", + Comment = null, }, new() { Id = "avu", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Avokaya", + Comment = null, }, new() { Id = "avv", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Avá-Canoeiro", + Comment = null, }, new() { Id = "awa", Part2B = "awa", Part2T = "awa", + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Awadhi", + Comment = null, }, new() { Id = "awb", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Awa (Papua New Guinea)", + Comment = null, }, new() { Id = "awc", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Cicipu", + Comment = null, }, new() { Id = "awe", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Awetí", + Comment = null, }, new() { Id = "awg", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Anguthimri", + Comment = null, }, new() { Id = "awh", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Awbono", + Comment = null, }, new() { Id = "awi", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Aekyom", + Comment = null, }, new() { Id = "awk", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Awabakal", + Comment = null, }, new() { Id = "awm", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Arawum", + Comment = null, }, new() { Id = "awn", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Awngi", + Comment = null, }, new() { Id = "awo", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Awak", + Comment = null, }, new() { Id = "awr", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Awera", + Comment = null, }, new() { Id = "aws", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "South Awyu", + Comment = null, }, new() { Id = "awt", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Araweté", + Comment = null, }, new() { Id = "awu", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Central Awyu", + Comment = null, }, new() { Id = "awv", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Jair Awyu", + Comment = null, }, new() { Id = "aww", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Awun", + Comment = null, }, new() { Id = "awx", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Awara", + Comment = null, }, new() { Id = "awy", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Edera Awyu", + Comment = null, }, new() { Id = "axb", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Abipon", + Comment = null, }, new() { Id = "axe", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Ayerrerenge", + Comment = null, }, new() { Id = "axg", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Mato Grosso Arára", + Comment = null, }, new() { Id = "axk", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Yaka (Central African Republic)", + Comment = null, }, new() { Id = "axl", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Lower Southern Aranda", + Comment = null, }, new() { Id = "axm", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "H", RefName = "Middle Armenian", + Comment = null, }, new() { Id = "axx", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Xârâgurè", + Comment = null, }, new() { Id = "aya", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Awar", + Comment = null, }, new() { Id = "ayb", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Ayizo Gbe", + Comment = null, }, new() { Id = "ayc", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Southern Aymara", + Comment = null, }, new() { Id = "ayd", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Ayabadhu", + Comment = null, }, new() { Id = "aye", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Ayere", + Comment = null, }, new() { Id = "ayg", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Ginyanga", + Comment = null, }, new() { Id = "ayh", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Hadrami Arabic", + Comment = null, }, new() { Id = "ayi", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Leyigha", + Comment = null, }, new() { Id = "ayk", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Akuku", + Comment = null, }, new() { Id = "ayl", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Libyan Arabic", + Comment = null, }, new() { @@ -3498,90 +5386,139 @@ public static Iso6393Data Create() => Scope = "M", LanguageType = "L", RefName = "Aymara", + Comment = null, }, new() { Id = "ayn", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Sanaani Arabic", + Comment = null, }, new() { Id = "ayo", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Ayoreo", + Comment = null, }, new() { Id = "ayp", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "North Mesopotamian Arabic", + Comment = null, }, new() { Id = "ayq", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Ayi (Papua New Guinea)", + Comment = null, }, new() { Id = "ayr", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Central Aymara", + Comment = null, }, new() { Id = "ays", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Sorsogon Ayta", + Comment = null, }, new() { Id = "ayt", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Magbukun Ayta", + Comment = null, }, new() { Id = "ayu", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Ayu", + Comment = null, }, new() { Id = "ayz", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Mai Brat", + Comment = null, }, new() { Id = "aza", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Azha", + Comment = null, }, new() { Id = "azb", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "South Azerbaijani", + Comment = null, }, new() { Id = "azd", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Eastern Durango Nahuatl", + Comment = null, }, new() { @@ -3592,111 +5529,172 @@ public static Iso6393Data Create() => Scope = "M", LanguageType = "L", RefName = "Azerbaijani", + Comment = null, }, new() { Id = "azg", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "San Pedro Amuzgos Amuzgo", + Comment = null, }, new() { Id = "azj", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "North Azerbaijani", + Comment = null, }, new() { Id = "azm", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Ipalapa Amuzgo", + Comment = null, }, new() { Id = "azn", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Western Durango Nahuatl", + Comment = null, }, new() { Id = "azo", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Awing", + Comment = null, }, new() { Id = "azt", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Faire Atta", + Comment = null, }, new() { Id = "azz", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Highland Puebla Nahuatl", + Comment = null, }, new() { Id = "baa", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Babatana", + Comment = null, }, new() { Id = "bab", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Bainouk-Gunyuño", + Comment = null, }, new() { Id = "bac", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Badui", + Comment = null, }, new() { Id = "bae", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Baré", + Comment = null, }, new() { Id = "baf", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Nubaca", + Comment = null, }, new() { Id = "bag", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Tuki", + Comment = null, }, new() { Id = "bah", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Bahamas Creole English", + Comment = null, }, new() { Id = "baj", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Barakai", + Comment = null, }, new() { @@ -3707,15 +5705,18 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bashkir", + Comment = null, }, new() { Id = "bal", Part2B = "bal", Part2T = "bal", + Part1 = null, Scope = "M", LanguageType = "L", RefName = "Baluchi", + Comment = null, }, new() { @@ -3726,691 +5727,1074 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bambara", + Comment = null, }, new() { Id = "ban", Part2B = "ban", Part2T = "ban", + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Balinese", + Comment = null, }, new() { Id = "bao", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Waimaha", + Comment = null, }, new() { Id = "bap", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Bantawa", + Comment = null, }, new() { Id = "bar", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Bavarian", + Comment = null, }, new() { Id = "bas", Part2B = "bas", Part2T = "bas", + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Basa (Cameroon)", + Comment = null, }, new() { Id = "bau", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Bada (Nigeria)", + Comment = null, }, new() { Id = "bav", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Vengo", + Comment = null, }, new() { Id = "baw", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Bambili-Bambui", + Comment = null, }, new() { Id = "bax", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Bamun", + Comment = null, }, new() { Id = "bay", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Batuley", + Comment = null, }, new() { Id = "bba", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Baatonum", + Comment = null, }, new() { Id = "bbb", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Barai", + Comment = null, }, new() { Id = "bbc", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Batak Toba", + Comment = null, }, new() { Id = "bbd", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Bau", + Comment = null, }, new() { Id = "bbe", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Bangba", + Comment = null, }, new() { Id = "bbf", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Baibai", + Comment = null, }, new() { Id = "bbg", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Barama", + Comment = null, }, new() { Id = "bbh", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Bugan", + Comment = null, }, new() { Id = "bbi", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Barombi", + Comment = null, }, new() { Id = "bbj", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Ghomálá'", + Comment = null, }, new() { Id = "bbk", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Babanki", + Comment = null, }, new() { Id = "bbl", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Bats", + Comment = null, }, new() { Id = "bbm", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Babango", + Comment = null, }, new() { Id = "bbn", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Uneapa", + Comment = null, }, new() { Id = "bbo", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Northern Bobo Madaré", + Comment = null, }, new() { Id = "bbp", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "West Central Banda", + Comment = null, }, new() { Id = "bbq", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Bamali", + Comment = null, }, new() { Id = "bbr", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Girawa", + Comment = null, }, new() { Id = "bbs", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Bakpinka", + Comment = null, }, new() { Id = "bbt", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Mburku", + Comment = null, }, new() { Id = "bbu", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kulung (Nigeria)", + Comment = null, }, new() { Id = "bbv", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Karnai", + Comment = null, }, new() { Id = "bbw", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Baba", + Comment = null, }, new() { Id = "bbx", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Bubia", + Comment = null, }, new() { Id = "bby", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Befang", + Comment = null, }, new() { Id = "bca", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Central Bai", + Comment = null, }, new() { Id = "bcb", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Bainouk-Samik", + Comment = null, }, new() { Id = "bcc", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Southern Balochi", + Comment = null, }, new() { Id = "bcd", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "North Babar", + Comment = null, }, new() { Id = "bce", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Bamenyam", + Comment = null, }, new() { Id = "bcf", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Bamu", + Comment = null, }, new() { Id = "bcg", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Baga Pokur", + Comment = null, }, new() { Id = "bch", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Bariai", + Comment = null, }, new() { Id = "bci", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Baoulé", + Comment = null, }, new() { Id = "bcj", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Bardi", + Comment = null, }, new() { Id = "bck", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Bunuba", + Comment = null, }, new() { Id = "bcl", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Central Bikol", + Comment = null, }, new() { Id = "bcm", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Bannoni", + Comment = null, }, new() { Id = "bcn", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Bali (Nigeria)", + Comment = null, }, new() { Id = "bco", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kaluli", + Comment = null, }, new() { Id = "bcp", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Bali (Democratic Republic of Congo)", + Comment = null, }, new() { Id = "bcq", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Bench", + Comment = null, }, new() { Id = "bcr", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Babine", + Comment = null, }, new() { Id = "bcs", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kohumono", + Comment = null, }, new() { Id = "bct", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Bendi", + Comment = null, }, new() { Id = "bcu", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Awad Bing", + Comment = null, }, new() { Id = "bcv", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Shoo-Minda-Nye", + Comment = null, }, new() { Id = "bcw", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Bana", + Comment = null, }, new() { Id = "bcy", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Bacama", + Comment = null, }, new() { Id = "bcz", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Bainouk-Gunyaamolo", + Comment = null, }, new() { Id = "bda", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Bayot", + Comment = null, }, new() { Id = "bdb", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Basap", + Comment = null, }, new() { Id = "bdc", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Emberá-Baudó", + Comment = null, }, new() { Id = "bdd", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Bunama", + Comment = null, }, new() { Id = "bde", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Bade", + Comment = null, }, new() { Id = "bdf", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Biage", + Comment = null, }, new() { Id = "bdg", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Bonggi", + Comment = null, }, new() { Id = "bdh", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Baka (South Sudan)", + Comment = null, }, new() { Id = "bdi", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Burun", + Comment = null, }, new() { Id = "bdj", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Bai (South Sudan)", + Comment = null, }, new() { Id = "bdk", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Budukh", + Comment = null, }, new() { Id = "bdl", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Indonesian Bajau", + Comment = null, }, new() { Id = "bdm", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Buduma", + Comment = null, }, new() { Id = "bdn", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Baldemu", + Comment = null, }, new() { Id = "bdo", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Morom", + Comment = null, }, new() { Id = "bdp", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Bende", + Comment = null, }, new() { Id = "bdq", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Bahnar", + Comment = null, }, new() { Id = "bdr", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "West Coast Bajau", + Comment = null, }, new() { Id = "bds", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Burunge", + Comment = null, }, new() { Id = "bdt", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Bokoto", + Comment = null, }, new() { Id = "bdu", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Oroko", + Comment = null, }, new() { Id = "bdv", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Bodo Parja", + Comment = null, }, new() { Id = "bdw", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Baham", + Comment = null, }, new() { Id = "bdx", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Budong-Budong", + Comment = null, }, new() { Id = "bdy", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Bandjalang", + Comment = null, }, new() { Id = "bdz", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Badeshi", + Comment = null, }, new() { Id = "bea", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Beaver", + Comment = null, }, new() { Id = "beb", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Bebele", + Comment = null, }, new() { Id = "bec", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Iceve-Maci", + Comment = null, }, new() { Id = "bed", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Bedoanas", + Comment = null, }, new() { Id = "bee", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Byangsi", + Comment = null, }, new() { Id = "bef", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Benabena", + Comment = null, }, new() { Id = "beg", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Belait", + Comment = null, }, new() { Id = "beh", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Biali", + Comment = null, }, new() { Id = "bei", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Bekati'", + Comment = null, }, new() { Id = "bej", Part2B = "bej", Part2T = "bej", + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Beja", + Comment = null, }, new() { Id = "bek", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Bebeli", + Comment = null, }, new() { @@ -4421,15 +6805,18 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Belarusian", + Comment = null, }, new() { Id = "bem", Part2B = "bem", Part2T = "bem", + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Bemba (Zambia)", + Comment = null, }, new() { @@ -4440,705 +6827,1096 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bengali", + Comment = null, }, new() { Id = "beo", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Beami", + Comment = null, }, new() { Id = "bep", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Besoa", + Comment = null, }, new() { Id = "beq", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Beembe", + Comment = null, }, new() { Id = "bes", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Besme", + Comment = null, }, new() { Id = "bet", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Guiberoua Béte", + Comment = null, }, new() { Id = "beu", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Blagar", + Comment = null, }, new() { Id = "bev", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Daloa Bété", + Comment = null, }, new() { Id = "bew", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Betawi", + Comment = null, }, new() { Id = "bex", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Jur Modo", + Comment = null, }, new() { Id = "bey", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Beli (Papua New Guinea)", + Comment = null, }, new() { Id = "bez", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Bena (Tanzania)", + Comment = null, }, new() { Id = "bfa", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Bari", + Comment = null, }, new() { Id = "bfb", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Pauri Bareli", + Comment = null, }, new() { Id = "bfc", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Panyi Bai", + Comment = null, }, new() { Id = "bfd", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Bafut", + Comment = null, }, new() { Id = "bfe", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Betaf", + Comment = null, }, new() { Id = "bff", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Bofi", + Comment = null, }, new() { Id = "bfg", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Busang Kayan", + Comment = null, }, new() { Id = "bfh", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Blafe", + Comment = null, }, new() { Id = "bfi", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "British Sign Language", + Comment = null, }, new() { Id = "bfj", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Bafanji", + Comment = null, }, new() { Id = "bfk", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Ban Khor Sign Language", + Comment = null, }, new() { Id = "bfl", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Banda-Ndélé", + Comment = null, }, new() { Id = "bfm", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Mmen", + Comment = null, }, new() { Id = "bfn", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Bunak", + Comment = null, }, new() { Id = "bfo", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Malba Birifor", + Comment = null, }, new() { Id = "bfp", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Beba", + Comment = null, }, new() { Id = "bfq", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Badaga", + Comment = null, }, new() { Id = "bfr", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Bazigar", + Comment = null, }, new() { Id = "bfs", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Southern Bai", + Comment = null, }, new() { Id = "bft", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Balti", + Comment = null, }, new() { Id = "bfu", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Gahri", + Comment = null, }, new() { Id = "bfw", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Bondo", + Comment = null, }, new() { Id = "bfx", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Bantayanon", + Comment = null, }, new() { Id = "bfy", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Bagheli", + Comment = null, }, new() { Id = "bfz", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Mahasu Pahari", + Comment = null, }, new() { Id = "bga", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Gwamhi-Wuri", + Comment = null, }, new() { Id = "bgb", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Bobongko", + Comment = null, }, new() { Id = "bgc", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Haryanvi", + Comment = null, }, new() { Id = "bgd", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Rathwi Bareli", + Comment = null, }, new() { Id = "bge", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Bauria", + Comment = null, }, new() { Id = "bgf", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Bangandu", + Comment = null, }, new() { Id = "bgg", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Bugun", + Comment = null, }, new() { Id = "bgi", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Giangan", + Comment = null, }, new() { Id = "bgj", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Bangolan", + Comment = null, }, new() { Id = "bgk", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Bit", + Comment = null, }, new() { Id = "bgl", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Bo (Laos)", + Comment = null, }, new() { Id = "bgn", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Western Balochi", + Comment = null, }, new() { Id = "bgo", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Baga Koga", + Comment = null, }, new() { Id = "bgp", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Eastern Balochi", + Comment = null, }, new() { Id = "bgq", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Bagri", + Comment = null, }, new() { Id = "bgr", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Bawm Chin", + Comment = null, }, new() { Id = "bgs", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Tagabawa", + Comment = null, }, new() { Id = "bgt", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Bughotu", + Comment = null, }, new() { Id = "bgu", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Mbongno", + Comment = null, }, new() { Id = "bgv", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Warkay-Bipim", + Comment = null, }, new() { Id = "bgw", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Bhatri", + Comment = null, }, new() { Id = "bgx", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Balkan Gagauz Turkish", + Comment = null, }, new() { Id = "bgy", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Benggoi", + Comment = null, }, new() { Id = "bgz", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Banggai", + Comment = null, }, new() { Id = "bha", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Bharia", + Comment = null, }, new() { Id = "bhb", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Bhili", + Comment = null, }, new() { Id = "bhc", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Biga", + Comment = null, }, new() { Id = "bhd", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Bhadrawahi", + Comment = null, }, new() { Id = "bhe", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Bhaya", + Comment = null, }, new() { Id = "bhf", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Odiai", + Comment = null, }, new() { Id = "bhg", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Binandere", + Comment = null, }, new() { Id = "bhh", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Bukharic", + Comment = null, }, new() { Id = "bhi", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Bhilali", + Comment = null, }, new() { Id = "bhj", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Bahing", + Comment = null, }, new() { Id = "bhl", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Bimin", + Comment = null, }, new() { Id = "bhm", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Bathari", + Comment = null, }, new() { Id = "bhn", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Bohtan Neo-Aramaic", + Comment = null, }, new() { Id = "bho", Part2B = "bho", Part2T = "bho", + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Bhojpuri", + Comment = null, }, new() { Id = "bhp", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Bima", + Comment = null, }, new() { Id = "bhq", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Tukang Besi South", + Comment = null, }, new() { Id = "bhr", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Bara Malagasy", + Comment = null, }, new() { Id = "bhs", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Buwal", + Comment = null, }, new() { Id = "bht", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Bhattiyali", + Comment = null, }, new() { Id = "bhu", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Bhunjia", + Comment = null, }, new() { Id = "bhv", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Bahau", + Comment = null, }, new() { Id = "bhw", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Biak", + Comment = null, }, new() { Id = "bhx", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Bhalay", + Comment = null, }, new() { Id = "bhy", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Bhele", + Comment = null, }, new() { Id = "bhz", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Bada (Indonesia)", + Comment = null, }, new() { Id = "bia", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Badimaya", + Comment = null, }, new() { Id = "bib", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Bissa", + Comment = null, }, new() { Id = "bid", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Bidiyo", + Comment = null, }, new() { Id = "bie", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Bepour", + Comment = null, }, new() { Id = "bif", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Biafada", + Comment = null, }, new() { Id = "big", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Biangai", + Comment = null, }, new() { Id = "bik", Part2B = "bik", Part2T = "bik", + Part1 = null, Scope = "M", LanguageType = "L", RefName = "Bikol", + Comment = null, }, new() { Id = "bil", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Bile", + Comment = null, }, new() { Id = "bim", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Bimoba", + Comment = null, }, new() { Id = "bin", Part2B = "bin", Part2T = "bin", + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Bini", + Comment = null, }, new() { Id = "bio", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Nai", + Comment = null, }, new() { Id = "bip", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Bila", + Comment = null, }, new() { Id = "biq", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Bipi", + Comment = null, }, new() { Id = "bir", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Bisorio", + Comment = null, }, new() { @@ -5149,918 +7927,1437 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bislama", + Comment = null, }, new() { Id = "bit", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Berinomo", + Comment = null, }, new() { Id = "biu", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Biete", + Comment = null, }, new() { Id = "biv", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Southern Birifor", + Comment = null, }, new() { Id = "biw", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kol (Cameroon)", + Comment = null, }, new() { Id = "bix", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Bijori", + Comment = null, }, new() { Id = "biy", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Birhor", + Comment = null, }, new() { Id = "biz", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Baloi", + Comment = null, }, new() { Id = "bja", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Budza", + Comment = null, }, new() { Id = "bjb", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Banggarla", + Comment = null, }, new() { Id = "bjc", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Bariji", + Comment = null, }, new() { Id = "bje", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Biao-Jiao Mien", + Comment = null, }, new() { Id = "bjf", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Barzani Jewish Neo-Aramaic", + Comment = null, }, new() { Id = "bjg", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Bidyogo", + Comment = null, }, new() { Id = "bjh", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Bahinemo", + Comment = null, }, new() { Id = "bji", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Burji", + Comment = null, }, new() { Id = "bjj", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kanauji", + Comment = null, }, new() { Id = "bjk", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Barok", + Comment = null, }, new() { Id = "bjl", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Bulu (Papua New Guinea)", + Comment = null, }, new() { Id = "bjm", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Bajelani", + Comment = null, }, new() { Id = "bjn", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Banjar", + Comment = null, }, new() { Id = "bjo", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Mid-Southern Banda", + Comment = null, }, new() { Id = "bjp", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Fanamaket", + Comment = null, }, new() { Id = "bjr", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Binumarien", + Comment = null, }, new() { Id = "bjs", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Bajan", + Comment = null, }, new() { Id = "bjt", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Balanta-Ganja", + Comment = null, }, new() { Id = "bju", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Busuu", + Comment = null, }, new() { Id = "bjv", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Bedjond", + Comment = null, }, new() { Id = "bjw", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Bakwé", + Comment = null, }, new() { Id = "bjx", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Banao Itneg", + Comment = null, }, new() { Id = "bjy", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Bayali", + Comment = null, }, new() { Id = "bjz", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Baruga", + Comment = null, }, new() { Id = "bka", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kyak", + Comment = null, }, new() { Id = "bkc", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Baka (Cameroon)", + Comment = null, }, new() { Id = "bkd", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Binukid", + Comment = null, }, new() { Id = "bkf", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Beeke", + Comment = null, }, new() { Id = "bkg", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Buraka", + Comment = null, }, new() { Id = "bkh", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Bakoko", + Comment = null, }, new() { Id = "bki", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Baki", + Comment = null, }, new() { Id = "bkj", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Pande", + Comment = null, }, new() { Id = "bkk", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Brokskat", + Comment = null, }, new() { Id = "bkl", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Berik", + Comment = null, }, new() { Id = "bkm", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kom (Cameroon)", + Comment = null, }, new() { Id = "bkn", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Bukitan", + Comment = null, }, new() { Id = "bko", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kwa'", + Comment = null, }, new() { Id = "bkp", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Boko (Democratic Republic of Congo)", + Comment = null, }, new() { Id = "bkq", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Bakairí", + Comment = null, }, new() { Id = "bkr", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Bakumpai", + Comment = null, }, new() { Id = "bks", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Northern Sorsoganon", + Comment = null, }, new() { Id = "bkt", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Boloki", + Comment = null, }, new() { Id = "bku", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Buhid", + Comment = null, }, new() { Id = "bkv", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Bekwarra", + Comment = null, }, new() { Id = "bkw", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Bekwel", + Comment = null, }, new() { Id = "bkx", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Baikeno", + Comment = null, }, new() { Id = "bky", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Bokyi", + Comment = null, }, new() { Id = "bkz", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Bungku", + Comment = null, }, new() { Id = "bla", Part2B = "bla", Part2T = "bla", + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Siksika", + Comment = null, }, new() { Id = "blb", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Bilua", + Comment = null, }, new() { Id = "blc", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Bella Coola", + Comment = null, }, new() { Id = "bld", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Bolango", + Comment = null, }, new() { Id = "ble", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Balanta-Kentohe", + Comment = null, }, new() { Id = "blf", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Buol", + Comment = null, }, new() { Id = "blh", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kuwaa", + Comment = null, }, new() { Id = "bli", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Bolia", + Comment = null, }, new() { Id = "blj", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Bolongan", + Comment = null, }, new() { Id = "blk", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Pa'o Karen", + Comment = null, }, new() { Id = "bll", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Biloxi", + Comment = null, }, new() { Id = "blm", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Beli (South Sudan)", + Comment = null, }, new() { Id = "bln", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Southern Catanduanes Bikol", + Comment = null, }, new() { Id = "blo", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Anii", + Comment = null, }, new() { Id = "blp", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Blablanga", + Comment = null, }, new() { Id = "blq", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Baluan-Pam", + Comment = null, }, new() { Id = "blr", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Blang", + Comment = null, }, new() { Id = "bls", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Balaesang", + Comment = null, }, new() { Id = "blt", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Tai Dam", + Comment = null, }, new() { Id = "blv", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kibala", + Comment = null, }, new() { Id = "blw", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Balangao", + Comment = null, }, new() { Id = "blx", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Mag-Indi Ayta", + Comment = null, }, new() { Id = "bly", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Notre", + Comment = null, }, new() { Id = "blz", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Balantak", + Comment = null, }, new() { Id = "bma", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Lame", + Comment = null, }, new() { Id = "bmb", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Bembe", + Comment = null, }, new() { Id = "bmc", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Biem", + Comment = null, }, new() { Id = "bmd", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Baga Manduri", + Comment = null, }, new() { Id = "bme", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Limassa", + Comment = null, }, new() { Id = "bmf", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Bom-Kim", + Comment = null, }, new() { Id = "bmg", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Bamwe", + Comment = null, }, new() { Id = "bmh", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kein", + Comment = null, }, new() { Id = "bmi", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Bagirmi", + Comment = null, }, new() { Id = "bmj", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Bote-Majhi", + Comment = null, }, new() { Id = "bmk", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Ghayavi", + Comment = null, }, new() { Id = "bml", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Bomboli", + Comment = null, }, new() { Id = "bmm", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Northern Betsimisaraka Malagasy", + Comment = null, }, new() { Id = "bmn", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Bina (Papua New Guinea)", + Comment = null, }, new() { Id = "bmo", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Bambalang", + Comment = null, }, new() { Id = "bmp", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Bulgebi", + Comment = null, }, new() { Id = "bmq", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Bomu", + Comment = null, }, new() { Id = "bmr", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Muinane", + Comment = null, }, new() { Id = "bms", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Bilma Kanuri", + Comment = null, }, new() { Id = "bmt", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Biao Mon", + Comment = null, }, new() { Id = "bmu", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Somba-Siawari", + Comment = null, }, new() { Id = "bmv", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Bum", + Comment = null, }, new() { Id = "bmw", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Bomwali", + Comment = null, }, new() { Id = "bmx", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Baimak", + Comment = null, }, new() { Id = "bmz", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Baramu", + Comment = null, }, new() { Id = "bna", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Bonerate", + Comment = null, }, new() { Id = "bnb", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Bookan", + Comment = null, }, new() { Id = "bnc", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "M", LanguageType = "L", RefName = "Bontok", + Comment = null, }, new() { Id = "bnd", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Banda (Indonesia)", + Comment = null, }, new() { Id = "bne", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Bintauna", + Comment = null, }, new() { Id = "bnf", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Masiwang", + Comment = null, }, new() { Id = "bng", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Benga", + Comment = null, }, new() { Id = "bni", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Bangi", + Comment = null, }, new() { Id = "bnj", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Eastern Tawbuid", + Comment = null, }, new() { Id = "bnk", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Bierebo", + Comment = null, }, new() { Id = "bnl", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Boon", + Comment = null, }, new() { Id = "bnm", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Batanga", + Comment = null, }, new() { Id = "bnn", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Bunun", + Comment = null, }, new() { Id = "bno", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Bantoanon", + Comment = null, }, new() { Id = "bnp", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Bola", + Comment = null, }, new() { Id = "bnq", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Bantik", + Comment = null, }, new() { Id = "bnr", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Butmas-Tur", + Comment = null, }, new() { Id = "bns", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Bundeli", + Comment = null, }, new() { Id = "bnu", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Bentong", + Comment = null, }, new() { Id = "bnv", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Bonerif", + Comment = null, }, new() { Id = "bnw", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Bisis", + Comment = null, }, new() { Id = "bnx", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Bangubangu", + Comment = null, }, new() { Id = "bny", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Bintulu", + Comment = null, }, new() { Id = "bnz", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Beezen", + Comment = null, }, new() { Id = "boa", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Bora", + Comment = null, }, new() { Id = "bob", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Aweer", + Comment = null, }, new() { @@ -6071,104 +9368,161 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tibetan", + Comment = null, }, new() { Id = "boe", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Mundabli", + Comment = null, }, new() { Id = "bof", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Bolon", + Comment = null, }, new() { Id = "bog", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Bamako Sign Language", + Comment = null, }, new() { Id = "boh", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Boma", + Comment = null, }, new() { Id = "boi", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Barbareño", + Comment = null, }, new() { Id = "boj", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Anjam", + Comment = null, }, new() { Id = "bok", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Bonjo", + Comment = null, }, new() { Id = "bol", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Bole", + Comment = null, }, new() { Id = "bom", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Berom", + Comment = null, }, new() { Id = "bon", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Bine", + Comment = null, }, new() { Id = "boo", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Tiemacèwè Bozo", + Comment = null, }, new() { Id = "bop", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Bonkiman", + Comment = null, }, new() { Id = "boq", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Bogaya", + Comment = null, }, new() { Id = "bor", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Borôro", + Comment = null, }, new() { @@ -6179,428 +9533,667 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bosnian", + Comment = null, }, new() { Id = "bot", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Bongo", + Comment = null, }, new() { Id = "bou", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Bondei", + Comment = null, }, new() { Id = "bov", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Tuwuli", + Comment = null, }, new() { Id = "bow", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Rema", + Comment = null, }, new() { Id = "box", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Buamu", + Comment = null, }, new() { Id = "boy", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Bodo (Central African Republic)", + Comment = null, }, new() { Id = "boz", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Tiéyaxo Bozo", + Comment = null, }, new() { Id = "bpa", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Daakaka", + Comment = null, }, new() { Id = "bpc", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Mbuk", + Comment = null, }, new() { Id = "bpd", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Banda-Banda", + Comment = null, }, new() { Id = "bpe", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Bauni", + Comment = null, }, new() { Id = "bpg", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Bonggo", + Comment = null, }, new() { Id = "bph", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Botlikh", + Comment = null, }, new() { Id = "bpi", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Bagupi", + Comment = null, }, new() { Id = "bpj", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Binji", + Comment = null, }, new() { Id = "bpk", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Orowe", + Comment = null, }, new() { Id = "bpl", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Broome Pearling Lugger Pidgin", + Comment = null, }, new() { Id = "bpm", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Biyom", + Comment = null, }, new() { Id = "bpn", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Dzao Min", + Comment = null, }, new() { Id = "bpo", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Anasi", + Comment = null, }, new() { Id = "bpp", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kaure", + Comment = null, }, new() { Id = "bpq", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Banda Malay", + Comment = null, }, new() { Id = "bpr", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Koronadal Blaan", + Comment = null, }, new() { Id = "bps", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Sarangani Blaan", + Comment = null, }, new() { Id = "bpt", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Barrow Point", + Comment = null, }, new() { Id = "bpu", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Bongu", + Comment = null, }, new() { Id = "bpv", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Bian Marind", + Comment = null, }, new() { Id = "bpw", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Bo (Papua New Guinea)", + Comment = null, }, new() { Id = "bpx", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Palya Bareli", + Comment = null, }, new() { Id = "bpy", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Bishnupriya", + Comment = null, }, new() { Id = "bpz", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Bilba", + Comment = null, }, new() { Id = "bqa", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Tchumbuli", + Comment = null, }, new() { Id = "bqb", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Bagusa", + Comment = null, }, new() { Id = "bqc", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Boko (Benin)", + Comment = null, }, new() { Id = "bqd", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Bung", + Comment = null, }, new() { Id = "bqf", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Baga Kaloum", + Comment = null, }, new() { Id = "bqg", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Bago-Kusuntu", + Comment = null, }, new() { Id = "bqh", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Baima", + Comment = null, }, new() { Id = "bqi", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Bakhtiari", + Comment = null, }, new() { Id = "bqj", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Bandial", + Comment = null, }, new() { Id = "bqk", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Banda-Mbrès", + Comment = null, }, new() { Id = "bql", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Karian", + Comment = null, }, new() { Id = "bqm", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Wumboko", + Comment = null, }, new() { Id = "bqn", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Bulgarian Sign Language", + Comment = null, }, new() { Id = "bqo", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Balo", + Comment = null, }, new() { Id = "bqp", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Busa", + Comment = null, }, new() { Id = "bqq", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Biritai", + Comment = null, }, new() { Id = "bqr", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Burusu", + Comment = null, }, new() { Id = "bqs", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Bosngun", + Comment = null, }, new() { Id = "bqt", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Bamukumbit", + Comment = null, }, new() { Id = "bqu", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Boguru", + Comment = null, }, new() { Id = "bqv", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Koro Wachi", + Comment = null, }, new() { Id = "bqw", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Buru (Nigeria)", + Comment = null, }, new() { Id = "bqx", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Baangi", + Comment = null, }, new() { Id = "bqy", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Bengkala Sign Language", + Comment = null, }, new() { Id = "bqz", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Bakaka", + Comment = null, }, new() { Id = "bra", Part2B = "bra", Part2T = "bra", + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Braj", + Comment = null, }, new() { Id = "brb", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Brao", + Comment = null, }, new() { Id = "brc", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Berbice Creole Dutch", + Comment = null, }, new() { Id = "brd", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Baraamu", + Comment = null, }, new() { @@ -6611,563 +10204,876 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Breton", + Comment = null, }, new() { Id = "brf", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Bira", + Comment = null, }, new() { Id = "brg", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Baure", + Comment = null, }, new() { Id = "brh", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Brahui", + Comment = null, }, new() { Id = "bri", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Mokpwe", + Comment = null, }, new() { Id = "brj", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Bieria", + Comment = null, }, new() { Id = "brk", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Birked", + Comment = null, }, new() { Id = "brl", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Birwa", + Comment = null, }, new() { Id = "brm", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Barambu", + Comment = null, }, new() { Id = "brn", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Boruca", + Comment = null, }, new() { Id = "bro", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Brokkat", + Comment = null, }, new() { Id = "brp", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Barapasi", + Comment = null, }, new() { Id = "brq", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Breri", + Comment = null, }, new() { Id = "brr", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Birao", + Comment = null, }, new() { Id = "brs", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Baras", + Comment = null, }, new() { Id = "brt", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Bitare", + Comment = null, }, new() { Id = "bru", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Eastern Bru", + Comment = null, }, new() { Id = "brv", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Western Bru", + Comment = null, }, new() { Id = "brw", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Bellari", + Comment = null, }, new() { Id = "brx", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Bodo (India)", + Comment = null, }, new() { Id = "bry", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Burui", + Comment = null, }, new() { Id = "brz", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Bilbil", + Comment = null, }, new() { Id = "bsa", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Abinomn", + Comment = null, }, new() { Id = "bsb", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Brunei Bisaya", + Comment = null, }, new() { Id = "bsc", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Bassari", + Comment = null, }, new() { Id = "bse", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Wushi", + Comment = null, }, new() { Id = "bsf", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Bauchi", + Comment = null, }, new() { Id = "bsg", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Bashkardi", + Comment = null, }, new() { Id = "bsh", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kati", + Comment = null, }, new() { Id = "bsi", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Bassossi", + Comment = null, }, new() { Id = "bsj", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Bangwinji", + Comment = null, }, new() { Id = "bsk", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Burushaski", + Comment = null, }, new() { Id = "bsl", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Basa-Gumna", + Comment = null, }, new() { Id = "bsm", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Busami", + Comment = null, }, new() { Id = "bsn", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Barasana-Eduria", + Comment = null, }, new() { Id = "bso", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Buso", + Comment = null, }, new() { Id = "bsp", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Baga Sitemu", + Comment = null, }, new() { Id = "bsq", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Bassa", + Comment = null, }, new() { Id = "bsr", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Bassa-Kontagora", + Comment = null, }, new() { Id = "bss", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Akoose", + Comment = null, }, new() { Id = "bst", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Basketo", + Comment = null, }, new() { Id = "bsu", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Bahonsuai", + Comment = null, }, new() { Id = "bsv", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Baga Sobané", + Comment = null, }, new() { Id = "bsw", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Baiso", + Comment = null, }, new() { Id = "bsx", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Yangkam", + Comment = null, }, new() { Id = "bsy", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Sabah Bisaya", + Comment = null, }, new() { Id = "bta", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Bata", + Comment = null, }, new() { Id = "btc", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Bati (Cameroon)", + Comment = null, }, new() { Id = "btd", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Batak Dairi", + Comment = null, }, new() { Id = "bte", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Gamo-Ningi", + Comment = null, }, new() { Id = "btf", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Birgit", + Comment = null, }, new() { Id = "btg", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Gagnoa Bété", + Comment = null, }, new() { Id = "bth", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Biatah Bidayuh", + Comment = null, }, new() { Id = "bti", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Burate", + Comment = null, }, new() { Id = "btj", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Bacanese Malay", + Comment = null, }, new() { Id = "btm", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Batak Mandailing", + Comment = null, }, new() { Id = "btn", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Ratagnon", + Comment = null, }, new() { Id = "bto", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Rinconada Bikol", + Comment = null, }, new() { Id = "btp", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Budibud", + Comment = null, }, new() { Id = "btq", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Batek", + Comment = null, }, new() { Id = "btr", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Baetora", + Comment = null, }, new() { Id = "bts", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Batak Simalungun", + Comment = null, }, new() { Id = "btt", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Bete-Bendi", + Comment = null, }, new() { Id = "btu", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Batu", + Comment = null, }, new() { Id = "btv", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Bateri", + Comment = null, }, new() { Id = "btw", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Butuanon", + Comment = null, }, new() { Id = "btx", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Batak Karo", + Comment = null, }, new() { Id = "bty", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Bobot", + Comment = null, }, new() { Id = "btz", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Batak Alas-Kluet", + Comment = null, }, new() { Id = "bua", Part2B = "bua", Part2T = "bua", + Part1 = null, Scope = "M", LanguageType = "L", RefName = "Buriat", + Comment = null, }, new() { Id = "bub", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Bua", + Comment = null, }, new() { Id = "buc", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Bushi", + Comment = null, }, new() { Id = "bud", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Ntcham", + Comment = null, }, new() { Id = "bue", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Beothuk", + Comment = null, }, new() { Id = "buf", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Bushoong", + Comment = null, }, new() { Id = "bug", Part2B = "bug", Part2T = "bug", + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Buginese", + Comment = null, }, new() { Id = "buh", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Younuo Bunu", + Comment = null, }, new() { Id = "bui", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Bongili", + Comment = null, }, new() { Id = "buj", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Basa-Gurmana", + Comment = null, }, new() { Id = "buk", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Bugawac", + Comment = null, }, new() { @@ -7178,1090 +11084,1701 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bulgarian", + Comment = null, }, new() { Id = "bum", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Bulu (Cameroon)", + Comment = null, }, new() { Id = "bun", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Sherbro", + Comment = null, }, new() { Id = "buo", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Terei", + Comment = null, }, new() { Id = "bup", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Busoa", + Comment = null, }, new() { Id = "buq", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Brem", + Comment = null, }, new() { Id = "bus", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Bokobaru", + Comment = null, }, new() { Id = "but", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Bungain", + Comment = null, }, new() { Id = "buu", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Budu", + Comment = null, }, new() { Id = "buv", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Bun", + Comment = null, }, new() { Id = "buw", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Bubi", + Comment = null, }, new() { Id = "bux", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Boghom", + Comment = null, }, new() { Id = "buy", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Bullom So", + Comment = null, }, new() { Id = "buz", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Bukwen", + Comment = null, }, new() { Id = "bva", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Barein", + Comment = null, }, new() { Id = "bvb", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Bube", + Comment = null, }, new() { Id = "bvc", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Baelelea", + Comment = null, }, new() { Id = "bvd", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Baeggu", + Comment = null, }, new() { Id = "bve", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Berau Malay", + Comment = null, }, new() { Id = "bvf", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Boor", + Comment = null, }, new() { Id = "bvg", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Bonkeng", + Comment = null, }, new() { Id = "bvh", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Bure", + Comment = null, }, new() { Id = "bvi", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Belanda Viri", + Comment = null, }, new() { Id = "bvj", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Baan", + Comment = null, }, new() { Id = "bvk", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Bukat", + Comment = null, }, new() { Id = "bvl", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Bolivian Sign Language", + Comment = null, }, new() { Id = "bvm", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Bamunka", + Comment = null, }, new() { Id = "bvn", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Buna", + Comment = null, }, new() { Id = "bvo", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Bolgo", + Comment = null, }, new() { Id = "bvp", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Bumang", + Comment = null, }, new() { Id = "bvq", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Birri", + Comment = null, }, new() { Id = "bvr", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Burarra", + Comment = null, }, new() { Id = "bvt", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Bati (Indonesia)", + Comment = null, }, new() { Id = "bvu", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Bukit Malay", + Comment = null, }, new() { Id = "bvv", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Baniva", + Comment = null, }, new() { Id = "bvw", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Boga", + Comment = null, }, new() { Id = "bvx", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Dibole", + Comment = null, }, new() { Id = "bvy", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Baybayanon", + Comment = null, }, new() { Id = "bvz", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Bauzi", + Comment = null, }, new() { Id = "bwa", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Bwatoo", + Comment = null, }, new() { Id = "bwb", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Namosi-Naitasiri-Serua", + Comment = null, }, new() { Id = "bwc", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Bwile", + Comment = null, }, new() { Id = "bwd", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Bwaidoka", + Comment = null, }, new() { Id = "bwe", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Bwe Karen", + Comment = null, }, new() { Id = "bwf", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Boselewa", + Comment = null, }, new() { Id = "bwg", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Barwe", + Comment = null, }, new() { Id = "bwh", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Bishuo", + Comment = null, }, new() { Id = "bwi", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Baniwa", + Comment = null, }, new() { Id = "bwj", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Láá Láá Bwamu", + Comment = null, }, new() { Id = "bwk", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Bauwaki", + Comment = null, }, new() { Id = "bwl", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Bwela", + Comment = null, }, new() { Id = "bwm", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Biwat", + Comment = null, }, new() { Id = "bwn", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Wunai Bunu", + Comment = null, }, new() { Id = "bwo", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Boro (Ethiopia)", + Comment = null, }, new() { Id = "bwp", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Mandobo Bawah", + Comment = null, }, new() { Id = "bwq", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Southern Bobo Madaré", + Comment = null, }, new() { Id = "bwr", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Bura-Pabir", + Comment = null, }, new() { Id = "bws", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Bomboma", + Comment = null, }, new() { Id = "bwt", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Bafaw-Balong", + Comment = null, }, new() { Id = "bwu", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Buli (Ghana)", + Comment = null, }, new() { Id = "bww", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Bwa", + Comment = null, }, new() { Id = "bwx", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Bu-Nao Bunu", + Comment = null, }, new() { Id = "bwy", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Cwi Bwamu", + Comment = null, }, new() { Id = "bwz", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Bwisi", + Comment = null, }, new() { Id = "bxa", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Tairaha", + Comment = null, }, new() { Id = "bxb", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Belanda Bor", + Comment = null, }, new() { Id = "bxc", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Molengue", + Comment = null, }, new() { Id = "bxd", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Pela", + Comment = null, }, new() { Id = "bxe", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Birale", + Comment = null, }, new() { Id = "bxf", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Bilur", + Comment = null, }, new() { Id = "bxg", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Bangala", + Comment = null, }, new() { Id = "bxh", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Buhutu", + Comment = null, }, new() { Id = "bxi", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Pirlatapa", + Comment = null, }, new() { Id = "bxj", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Bayungu", + Comment = null, }, new() { Id = "bxk", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Bukusu", + Comment = null, }, new() { Id = "bxl", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Jalkunan", + Comment = null, }, new() { Id = "bxm", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Mongolia Buriat", + Comment = null, }, new() { Id = "bxn", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Burduna", + Comment = null, }, new() { Id = "bxo", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Barikanchi", + Comment = null, }, new() { Id = "bxp", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Bebil", + Comment = null, }, new() { Id = "bxq", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Beele", + Comment = null, }, new() { Id = "bxr", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Russia Buriat", + Comment = null, }, new() { Id = "bxs", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Busam", + Comment = null, }, new() { Id = "bxu", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "China Buriat", + Comment = null, }, new() { Id = "bxv", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Berakou", + Comment = null, }, new() { Id = "bxw", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Bankagooma", + Comment = null, }, new() { Id = "bxz", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Binahari", + Comment = null, }, new() { Id = "bya", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Batak", + Comment = null, }, new() { Id = "byb", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Bikya", + Comment = null, }, new() { Id = "byc", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Ubaghara", + Comment = null, }, new() { Id = "byd", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Benyadu'", + Comment = null, }, new() { Id = "bye", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Pouye", + Comment = null, }, new() { Id = "byf", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Bete", + Comment = null, }, new() { Id = "byg", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Baygo", + Comment = null, }, new() { Id = "byh", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Bhujel", + Comment = null, }, new() { Id = "byi", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Buyu", + Comment = null, }, new() { Id = "byj", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Bina (Nigeria)", + Comment = null, }, new() { Id = "byk", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Biao", + Comment = null, }, new() { Id = "byl", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Bayono", + Comment = null, }, new() { Id = "bym", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Bidjara", + Comment = null, }, new() { Id = "byn", Part2B = "byn", Part2T = "byn", + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Bilin", + Comment = null, }, new() { Id = "byo", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Biyo", + Comment = null, }, new() { Id = "byp", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Bumaji", + Comment = null, }, new() { Id = "byq", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Basay", + Comment = null, }, new() { Id = "byr", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Baruya", + Comment = null, }, new() { Id = "bys", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Burak", + Comment = null, }, new() { Id = "byt", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Berti", + Comment = null, }, new() { Id = "byv", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Medumba", + Comment = null, }, new() { Id = "byw", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Belhariya", + Comment = null, }, new() { Id = "byx", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Qaqet", + Comment = null, }, new() { Id = "byz", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Banaro", + Comment = null, }, new() { Id = "bza", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Bandi", + Comment = null, }, new() { Id = "bzb", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Andio", + Comment = null, }, new() { Id = "bzc", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Southern Betsimisaraka Malagasy", + Comment = null, }, new() { Id = "bzd", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Bribri", + Comment = null, }, new() { Id = "bze", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Jenaama Bozo", + Comment = null, }, new() { Id = "bzf", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Boikin", + Comment = null, }, new() { Id = "bzg", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Babuza", + Comment = null, }, new() { Id = "bzh", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Mapos Buang", + Comment = null, }, new() { Id = "bzi", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Bisu", + Comment = null, }, new() { Id = "bzj", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Belize Kriol English", + Comment = null, }, new() { Id = "bzk", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Nicaragua Creole English", + Comment = null, }, new() { Id = "bzl", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Boano (Sulawesi)", + Comment = null, }, new() { Id = "bzm", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Bolondo", + Comment = null, }, new() { Id = "bzn", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Boano (Maluku)", + Comment = null, }, new() { Id = "bzo", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Bozaba", + Comment = null, }, new() { Id = "bzp", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kemberano", + Comment = null, }, new() { Id = "bzq", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Buli (Indonesia)", + Comment = null, }, new() { Id = "bzr", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Biri", + Comment = null, }, new() { Id = "bzs", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Brazilian Sign Language", + Comment = null, }, new() { Id = "bzt", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "C", RefName = "Brithenig", + Comment = null, }, new() { Id = "bzu", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Burmeso", + Comment = null, }, new() { Id = "bzv", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Naami", + Comment = null, }, new() { Id = "bzw", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Basa (Nigeria)", + Comment = null, }, new() { Id = "bzx", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kɛlɛngaxo Bozo", + Comment = null, }, new() { Id = "bzy", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Obanliku", + Comment = null, }, new() { Id = "bzz", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Evant", + Comment = null, }, new() { Id = "caa", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Chortí", + Comment = null, }, new() { Id = "cab", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Garifuna", + Comment = null, }, new() { Id = "cac", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Chuj", + Comment = null, }, new() { Id = "cad", Part2B = "cad", Part2T = "cad", + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Caddo", + Comment = null, }, new() { Id = "cae", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Lehar", + Comment = null, }, new() { Id = "caf", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Southern Carrier", + Comment = null, }, new() { Id = "cag", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Nivaclé", + Comment = null, }, new() { Id = "cah", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Cahuarano", + Comment = null, }, new() { Id = "caj", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Chané", + Comment = null, }, new() { Id = "cak", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kaqchikel", + Comment = null, }, new() { Id = "cal", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Carolinian", + Comment = null, }, new() { Id = "cam", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Cemuhî", + Comment = null, }, new() { Id = "can", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Chambri", + Comment = null, }, new() { Id = "cao", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Chácobo", + Comment = null, }, new() { Id = "cap", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Chipaya", + Comment = null, }, new() { Id = "caq", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Car Nicobarese", + Comment = null, }, new() { Id = "car", Part2B = "car", Part2T = "car", + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Galibi Carib", + Comment = null, }, new() { Id = "cas", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Tsimané", + Comment = null, }, new() { @@ -8272,372 +12789,579 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Catalan", + Comment = null, }, new() { Id = "cav", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Cavineña", + Comment = null, }, new() { Id = "caw", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Callawalla", + Comment = null, }, new() { Id = "cax", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Chiquitano", + Comment = null, }, new() { Id = "cay", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Cayuga", + Comment = null, }, new() { Id = "caz", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Canichana", + Comment = null, }, new() { Id = "cbb", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Cabiyarí", + Comment = null, }, new() { Id = "cbc", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Carapana", + Comment = null, }, new() { Id = "cbd", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Carijona", + Comment = null, }, new() { Id = "cbg", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Chimila", + Comment = null, }, new() { Id = "cbi", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Chachi", + Comment = null, }, new() { Id = "cbj", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Ede Cabe", + Comment = null, }, new() { Id = "cbk", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Chavacano", + Comment = null, }, new() { Id = "cbl", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Bualkhaw Chin", + Comment = null, }, new() { Id = "cbn", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Nyahkur", + Comment = null, }, new() { Id = "cbo", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Izora", + Comment = null, }, new() { Id = "cbq", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Tsucuba", + Comment = null, }, new() { Id = "cbr", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Cashibo-Cacataibo", + Comment = null, }, new() { Id = "cbs", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Cashinahua", + Comment = null, }, new() { Id = "cbt", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Chayahuita", + Comment = null, }, new() { Id = "cbu", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Candoshi-Shapra", + Comment = null, }, new() { Id = "cbv", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Cacua", + Comment = null, }, new() { Id = "cbw", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kinabalian", + Comment = null, }, new() { Id = "cby", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Carabayo", + Comment = null, }, new() { Id = "ccc", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Chamicuro", + Comment = null, }, new() { Id = "ccd", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Cafundo Creole", + Comment = null, }, new() { Id = "cce", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Chopi", + Comment = null, }, new() { Id = "ccg", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Samba Daka", + Comment = null, }, new() { Id = "cch", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Atsam", + Comment = null, }, new() { Id = "ccj", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kasanga", + Comment = null, }, new() { Id = "ccl", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Cutchi-Swahili", + Comment = null, }, new() { Id = "ccm", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Malaccan Creole Malay", + Comment = null, }, new() { Id = "cco", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Comaltepec Chinantec", + Comment = null, }, new() { Id = "ccp", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Chakma", + Comment = null, }, new() { Id = "ccr", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Cacaopera", + Comment = null, }, new() { Id = "cda", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Choni", + Comment = null, }, new() { Id = "cde", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Chenchu", + Comment = null, }, new() { Id = "cdf", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Chiru", + Comment = null, }, new() { Id = "cdh", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Chambeali", + Comment = null, }, new() { Id = "cdi", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Chodri", + Comment = null, }, new() { Id = "cdj", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Churahi", + Comment = null, }, new() { Id = "cdm", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Chepang", + Comment = null, }, new() { Id = "cdn", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Chaudangsi", + Comment = null, }, new() { Id = "cdo", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Min Dong Chinese", + Comment = null, }, new() { Id = "cdr", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Cinda-Regi-Tiyal", + Comment = null, }, new() { Id = "cds", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Chadian Sign Language", + Comment = null, }, new() { Id = "cdy", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Chadong", + Comment = null, }, new() { Id = "cdz", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Koda", + Comment = null, }, new() { Id = "cea", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Lower Chehalis", + Comment = null, }, new() { Id = "ceb", Part2B = "ceb", Part2T = "ceb", + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Cebuano", + Comment = null, }, new() { Id = "ceg", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Chamacoco", + Comment = null, }, new() { Id = "cek", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Eastern Khumi Chin", + Comment = null, }, new() { Id = "cen", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Cen", + Comment = null, }, new() { @@ -8648,76 +13372,117 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Czech", + Comment = null, }, new() { Id = "cet", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Centúúm", + Comment = null, }, new() { Id = "cey", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Ekai Chin", + Comment = null, }, new() { Id = "cfa", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Dijim-Bwilim", + Comment = null, }, new() { Id = "cfd", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Cara", + Comment = null, }, new() { Id = "cfg", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Como Karim", + Comment = null, }, new() { Id = "cfm", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Falam Chin", + Comment = null, }, new() { Id = "cga", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Changriwa", + Comment = null, }, new() { Id = "cgc", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kagayanen", + Comment = null, }, new() { Id = "cgg", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Chiga", + Comment = null, }, new() { Id = "cgk", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Chocangacakha", + Comment = null, }, new() { @@ -8728,29 +13493,40 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Chamorro", + Comment = null, }, new() { Id = "chb", Part2B = "chb", Part2T = "chb", + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Chibcha", + Comment = null, }, new() { Id = "chc", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Catawba", + Comment = null, }, new() { Id = "chd", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Highland Oaxaca Chontal", + Comment = null, }, new() { @@ -8761,111 +13537,150 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Chechen", + Comment = null, }, new() { Id = "chf", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Tabasco Chontal", + Comment = null, }, new() { Id = "chg", Part2B = "chg", Part2T = "chg", + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Chagatai", + Comment = null, }, new() { Id = "chh", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Chinook", + Comment = null, }, new() { Id = "chj", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Ojitlán Chinantec", + Comment = null, }, new() { Id = "chk", Part2B = "chk", Part2T = "chk", + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Chuukese", + Comment = null, }, new() { Id = "chl", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Cahuilla", + Comment = null, }, new() { Id = "chm", Part2B = "chm", Part2T = "chm", + Part1 = null, Scope = "M", LanguageType = "L", RefName = "Mari (Russia)", + Comment = null, }, new() { Id = "chn", Part2B = "chn", Part2T = "chn", + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Chinook jargon", + Comment = null, }, new() { Id = "cho", Part2B = "cho", Part2T = "cho", + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Choctaw", + Comment = null, }, new() { Id = "chp", Part2B = "chp", Part2T = "chp", + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Chipewyan", + Comment = null, }, new() { Id = "chq", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Quiotepec Chinantec", + Comment = null, }, new() { Id = "chr", Part2B = "chr", Part2T = "chr", + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Cherokee", + Comment = null, }, new() { Id = "cht", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Cholón", + Comment = null, }, new() { @@ -8876,6 +13691,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Church Slavic", + Comment = null, }, new() { @@ -8886,740 +13702,1151 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Chuvash", + Comment = null, }, new() { Id = "chw", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Chuwabu", + Comment = null, }, new() { Id = "chx", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Chantyal", + Comment = null, }, new() { Id = "chy", Part2B = "chy", Part2T = "chy", + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Cheyenne", + Comment = null, }, new() { Id = "chz", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Ozumacín Chinantec", + Comment = null, }, new() { Id = "cia", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Cia-Cia", + Comment = null, }, new() { Id = "cib", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Ci Gbe", + Comment = null, }, new() { Id = "cic", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Chickasaw", + Comment = null, }, new() { Id = "cid", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Chimariko", + Comment = null, }, new() { Id = "cie", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Cineni", + Comment = null, }, new() { Id = "cih", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Chinali", + Comment = null, }, new() { Id = "cik", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Chitkuli Kinnauri", + Comment = null, }, new() { Id = "cim", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Cimbrian", + Comment = null, }, new() { Id = "cin", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Cinta Larga", + Comment = null, }, new() { Id = "cip", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Chiapanec", + Comment = null, }, new() { Id = "cir", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Tiri", + Comment = null, }, new() { Id = "ciw", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Chippewa", + Comment = null, }, new() { Id = "ciy", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Chaima", + Comment = null, }, new() { Id = "cja", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Western Cham", + Comment = null, }, new() { Id = "cje", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Chru", + Comment = null, }, new() { Id = "cjh", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Upper Chehalis", + Comment = null, }, new() { Id = "cji", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Chamalal", + Comment = null, }, new() { Id = "cjk", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Chokwe", + Comment = null, }, new() { Id = "cjm", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Eastern Cham", + Comment = null, }, new() { Id = "cjn", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Chenapian", + Comment = null, }, new() { Id = "cjo", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Ashéninka Pajonal", + Comment = null, }, new() { Id = "cjp", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Cabécar", + Comment = null, }, new() { Id = "cjs", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Shor", + Comment = null, }, new() { Id = "cjv", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Chuave", + Comment = null, }, new() { Id = "cjy", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Jinyu Chinese", + Comment = null, }, new() { Id = "ckb", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Central Kurdish", + Comment = null, }, new() { Id = "ckh", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Chak", + Comment = null, }, new() { Id = "ckl", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Cibak", + Comment = null, }, new() { Id = "ckm", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Chakavian", + Comment = null, }, new() { Id = "ckn", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kaang Chin", + Comment = null, }, new() { Id = "cko", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Anufo", + Comment = null, }, new() { Id = "ckq", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kajakse", + Comment = null, }, new() { Id = "ckr", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kairak", + Comment = null, }, new() { Id = "cks", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Tayo", + Comment = null, }, new() { Id = "ckt", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Chukot", + Comment = null, }, new() { Id = "cku", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Koasati", + Comment = null, }, new() { Id = "ckv", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kavalan", + Comment = null, }, new() { Id = "ckx", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Caka", + Comment = null, }, new() { Id = "cky", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Cakfem-Mushere", + Comment = null, }, new() { Id = "ckz", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Cakchiquel-Quiché Mixed Language", + Comment = null, }, new() { Id = "cla", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Ron", + Comment = null, }, new() { Id = "clc", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Chilcotin", + Comment = null, }, new() { Id = "cld", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Chaldean Neo-Aramaic", + Comment = null, }, new() { Id = "cle", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Lealao Chinantec", + Comment = null, }, new() { Id = "clh", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Chilisso", + Comment = null, }, new() { Id = "cli", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Chakali", + Comment = null, }, new() { Id = "clj", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Laitu Chin", + Comment = null, }, new() { Id = "clk", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Idu-Mishmi", + Comment = null, }, new() { Id = "cll", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Chala", + Comment = null, }, new() { Id = "clm", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Klallam", + Comment = null, }, new() { Id = "clo", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Lowland Oaxaca Chontal", + Comment = null, }, new() { Id = "cls", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "H", RefName = "Classical Sanskrit", + Comment = null, }, new() { Id = "clt", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Lautu Chin", + Comment = null, }, new() { Id = "clu", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Caluyanun", + Comment = null, }, new() { Id = "clw", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Chulym", + Comment = null, }, new() { Id = "cly", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Eastern Highland Chatino", + Comment = null, }, new() { Id = "cma", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Maa", + Comment = null, }, new() { Id = "cme", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Cerma", + Comment = null, }, new() { Id = "cmg", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "H", RefName = "Classical Mongolian", + Comment = null, }, new() { Id = "cmi", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Emberá-Chamí", + Comment = null, }, new() { Id = "cml", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Campalagian", + Comment = null, }, new() { Id = "cmm", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Michigamea", + Comment = null, }, new() { Id = "cmn", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Mandarin Chinese", + Comment = null, }, new() { Id = "cmo", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Central Mnong", + Comment = null, }, new() { Id = "cmr", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Mro-Khimi Chin", + Comment = null, }, new() { Id = "cms", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "H", RefName = "Messapic", + Comment = null, }, new() { Id = "cmt", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Camtho", + Comment = null, }, new() { Id = "cna", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Changthang", + Comment = null, }, new() { Id = "cnb", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Chinbon Chin", + Comment = null, }, new() { Id = "cnc", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Côông", + Comment = null, }, new() { Id = "cng", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Northern Qiang", + Comment = null, }, new() { Id = "cnh", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Hakha Chin", + Comment = null, }, new() { Id = "cni", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Asháninka", + Comment = null, }, new() { Id = "cnk", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Khumi Chin", + Comment = null, }, new() { Id = "cnl", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Lalana Chinantec", + Comment = null, }, new() { Id = "cno", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Con", + Comment = null, }, new() { Id = "cnp", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Northern Ping Chinese", + Comment = null, }, new() { Id = "cnq", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Chung", + Comment = null, }, new() { Id = "cnr", Part2B = "cnr", Part2T = "cnr", + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Montenegrin", + Comment = null, }, new() { Id = "cns", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Central Asmat", + Comment = null, }, new() { Id = "cnt", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Tepetotutla Chinantec", + Comment = null, }, new() { Id = "cnu", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Chenoua", + Comment = null, }, new() { Id = "cnw", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Ngawn Chin", + Comment = null, }, new() { Id = "cnx", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "H", RefName = "Middle Cornish", + Comment = null, }, new() { Id = "coa", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Cocos Islands Malay", + Comment = null, }, new() { Id = "cob", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Chicomuceltec", + Comment = null, }, new() { Id = "coc", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Cocopa", + Comment = null, }, new() { Id = "cod", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Cocama-Cocamilla", + Comment = null, }, new() { Id = "coe", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Koreguaje", + Comment = null, }, new() { Id = "cof", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Colorado", + Comment = null, }, new() { Id = "cog", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Chong", + Comment = null, }, new() { Id = "coh", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Chonyi-Dzihana-Kauma", + Comment = null, }, new() { Id = "coj", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Cochimi", + Comment = null, }, new() { Id = "cok", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Santa Teresa Cora", + Comment = null, }, new() { Id = "col", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Columbia-Wenatchi", + Comment = null, }, new() { Id = "com", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Comanche", + Comment = null, }, new() { Id = "con", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Cofán", + Comment = null, }, new() { Id = "coo", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Comox", + Comment = null, }, new() { Id = "cop", Part2B = "cop", Part2T = "cop", + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Coptic", + Comment = null, }, new() { Id = "coq", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Coquille", + Comment = null, }, new() { @@ -9630,6 +14857,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Cornish", + Comment = null, }, new() { @@ -9640,160 +14868,249 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Corsican", + Comment = null, }, new() { Id = "cot", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Caquinte", + Comment = null, }, new() { Id = "cou", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Wamey", + Comment = null, }, new() { Id = "cov", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Cao Miao", + Comment = null, }, new() { Id = "cow", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Cowlitz", + Comment = null, }, new() { Id = "cox", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Nanti", + Comment = null, }, new() { Id = "coz", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Chochotec", + Comment = null, }, new() { Id = "cpa", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Palantla Chinantec", + Comment = null, }, new() { Id = "cpb", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Ucayali-Yurúa Ashéninka", + Comment = null, }, new() { Id = "cpc", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Ajyíninka Apurucayali", + Comment = null, }, new() { Id = "cpg", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Cappadocian Greek", + Comment = null, }, new() { Id = "cpi", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Chinese Pidgin English", + Comment = null, }, new() { Id = "cpn", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Cherepon", + Comment = null, }, new() { Id = "cpo", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kpeego", + Comment = null, }, new() { Id = "cps", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Capiznon", + Comment = null, }, new() { Id = "cpu", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Pichis Ashéninka", + Comment = null, }, new() { Id = "cpx", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Pu-Xian Chinese", + Comment = null, }, new() { Id = "cpy", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "South Ucayali Ashéninka", + Comment = null, }, new() { Id = "cqd", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Chuanqiandian Cluster Miao", + Comment = null, }, new() { Id = "cra", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Chara", + Comment = null, }, new() { Id = "crb", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Island Carib", + Comment = null, }, new() { Id = "crc", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Lonwolwol", + Comment = null, }, new() { Id = "crd", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Coeur d'Alene", + Comment = null, }, new() { @@ -9804,633 +15121,986 @@ public static Iso6393Data Create() => Scope = "M", LanguageType = "L", RefName = "Cree", + Comment = null, }, new() { Id = "crf", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Caramanta", + Comment = null, }, new() { Id = "crg", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Michif", + Comment = null, }, new() { Id = "crh", Part2B = "crh", Part2T = "crh", + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Crimean Tatar", + Comment = null, }, new() { Id = "cri", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Sãotomense", + Comment = null, }, new() { Id = "crj", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Southern East Cree", + Comment = null, }, new() { Id = "crk", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Plains Cree", + Comment = null, }, new() { Id = "crl", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Northern East Cree", + Comment = null, }, new() { Id = "crm", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Moose Cree", + Comment = null, }, new() { Id = "crn", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "El Nayar Cora", + Comment = null, }, new() { Id = "cro", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Crow", + Comment = null, }, new() { Id = "crq", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Iyo'wujwa Chorote", + Comment = null, }, new() { Id = "crr", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Carolina Algonquian", + Comment = null, }, new() { Id = "crs", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Seselwa Creole French", + Comment = null, }, new() { Id = "crt", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Iyojwa'ja Chorote", + Comment = null, }, new() { Id = "crv", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Chaura", + Comment = null, }, new() { Id = "crw", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Chrau", + Comment = null, }, new() { Id = "crx", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Carrier", + Comment = null, }, new() { Id = "cry", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Cori", + Comment = null, }, new() { Id = "crz", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Cruzeño", + Comment = null, }, new() { Id = "csa", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Chiltepec Chinantec", + Comment = null, }, new() { Id = "csb", Part2B = "csb", Part2T = "csb", + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kashubian", + Comment = null, }, new() { Id = "csc", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Catalan Sign Language", + Comment = null, }, new() { Id = "csd", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Chiangmai Sign Language", + Comment = null, }, new() { Id = "cse", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Czech Sign Language", + Comment = null, }, new() { Id = "csf", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Cuba Sign Language", + Comment = null, }, new() { Id = "csg", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Chilean Sign Language", + Comment = null, }, new() { Id = "csh", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Asho Chin", + Comment = null, }, new() { Id = "csi", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Coast Miwok", + Comment = null, }, new() { Id = "csj", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Songlai Chin", + Comment = null, }, new() { Id = "csk", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Jola-Kasa", + Comment = null, }, new() { Id = "csl", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Chinese Sign Language", + Comment = null, }, new() { Id = "csm", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Central Sierra Miwok", + Comment = null, }, new() { Id = "csn", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Colombian Sign Language", + Comment = null, }, new() { Id = "cso", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Sochiapam Chinantec", + Comment = null, }, new() { Id = "csp", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Southern Ping Chinese", + Comment = null, }, new() { Id = "csq", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Croatia Sign Language", + Comment = null, }, new() { Id = "csr", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Costa Rican Sign Language", + Comment = null, }, new() { Id = "css", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Southern Ohlone", + Comment = null, }, new() { Id = "cst", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Northern Ohlone", + Comment = null, }, new() { Id = "csv", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Sumtu Chin", + Comment = null, }, new() { Id = "csw", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Swampy Cree", + Comment = null, }, new() { Id = "csx", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Cambodian Sign Language", + Comment = null, }, new() { Id = "csy", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Siyin Chin", + Comment = null, }, new() { Id = "csz", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Coos", + Comment = null, }, new() { Id = "cta", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Tataltepec Chatino", + Comment = null, }, new() { Id = "ctc", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Chetco", + Comment = null, }, new() { Id = "ctd", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Tedim Chin", + Comment = null, }, new() { Id = "cte", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Tepinapa Chinantec", + Comment = null, }, new() { Id = "ctg", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Chittagonian", + Comment = null, }, new() { Id = "cth", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Thaiphum Chin", + Comment = null, }, new() { Id = "ctl", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Tlacoatzintepec Chinantec", + Comment = null, }, new() { Id = "ctm", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Chitimacha", + Comment = null, }, new() { Id = "ctn", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Chhintange", + Comment = null, }, new() { Id = "cto", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Emberá-Catío", + Comment = null, }, new() { Id = "ctp", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Western Highland Chatino", + Comment = null, }, new() { Id = "cts", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Northern Catanduanes Bikol", + Comment = null, }, new() { Id = "ctt", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Wayanad Chetti", + Comment = null, }, new() { Id = "ctu", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Chol", + Comment = null, }, new() { Id = "cty", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Moundadan Chetty", + Comment = null, }, new() { Id = "ctz", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Zacatepec Chatino", + Comment = null, }, new() { Id = "cua", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Cua", + Comment = null, }, new() { Id = "cub", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Cubeo", + Comment = null, }, new() { Id = "cuc", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Usila Chinantec", + Comment = null, }, new() { Id = "cuh", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Chuka", + Comment = null, }, new() { Id = "cui", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Cuiba", + Comment = null, }, new() { Id = "cuj", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Mashco Piro", + Comment = null, }, new() { Id = "cuk", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "San Blas Kuna", + Comment = null, }, new() { Id = "cul", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Culina", + Comment = null, }, new() { Id = "cuo", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Cumanagoto", + Comment = null, }, new() { Id = "cup", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Cupeño", + Comment = null, }, new() { Id = "cuq", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Cun", + Comment = null, }, new() { Id = "cur", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Chhulung", + Comment = null, }, new() { Id = "cut", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Teutila Cuicatec", + Comment = null, }, new() { Id = "cuu", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Tai Ya", + Comment = null, }, new() { Id = "cuv", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Cuvok", + Comment = null, }, new() { Id = "cuw", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Chukwa", + Comment = null, }, new() { Id = "cux", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Tepeuxila Cuicatec", + Comment = null, }, new() { Id = "cuy", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Cuitlatec", + Comment = null, }, new() { Id = "cvg", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Chug", + Comment = null, }, new() { Id = "cvn", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Valle Nacional Chinantec", + Comment = null, }, new() { Id = "cwa", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kabwa", + Comment = null, }, new() { Id = "cwb", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Maindo", + Comment = null, }, new() { Id = "cwd", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Woods Cree", + Comment = null, }, new() { Id = "cwe", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kwere", + Comment = null, }, new() { Id = "cwg", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Chewong", + Comment = null, }, new() { Id = "cwt", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kuwaataay", + Comment = null, }, new() { Id = "cxh", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Cha'ari", + Comment = null, }, new() { Id = "cya", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Nopala Chatino", + Comment = null, }, new() { Id = "cyb", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Cayubaba", + Comment = null, }, new() { @@ -10441,127 +16111,194 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Welsh", + Comment = null, }, new() { Id = "cyo", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Cuyonon", + Comment = null, }, new() { Id = "czh", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Huizhou Chinese", + Comment = null, }, new() { Id = "czk", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Knaanic", + Comment = null, }, new() { Id = "czn", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Zenzontepec Chatino", + Comment = null, }, new() { Id = "czo", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Min Zhong Chinese", + Comment = null, }, new() { Id = "czt", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Zotung Chin", + Comment = null, }, new() { Id = "daa", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Dangaléat", + Comment = null, }, new() { Id = "dac", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Dambi", + Comment = null, }, new() { Id = "dad", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Marik", + Comment = null, }, new() { Id = "dae", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Duupa", + Comment = null, }, new() { Id = "dag", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Dagbani", + Comment = null, }, new() { Id = "dah", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Gwahatike", + Comment = null, }, new() { Id = "dai", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Day", + Comment = null, }, new() { Id = "daj", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Dar Fur Daju", + Comment = null, }, new() { Id = "dak", Part2B = "dak", Part2T = "dak", + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Dakota", + Comment = null, }, new() { Id = "dal", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Dahalo", + Comment = null, }, new() { Id = "dam", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Damakawa", + Comment = null, }, new() { @@ -10572,404 +16309,623 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Danish", + Comment = null, }, new() { Id = "dao", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Daai Chin", + Comment = null, }, new() { Id = "daq", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Dandami Maria", + Comment = null, }, new() { Id = "dar", Part2B = "dar", Part2T = "dar", + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Dargwa", + Comment = null, }, new() { Id = "das", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Daho-Doo", + Comment = null, }, new() { Id = "dau", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Dar Sila Daju", + Comment = null, }, new() { Id = "dav", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Taita", + Comment = null, }, new() { Id = "daw", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Davawenyo", + Comment = null, }, new() { Id = "dax", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Dayi", + Comment = null, }, new() { Id = "daz", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Moi-Wadea", + Comment = null, }, new() { Id = "dba", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Bangime", + Comment = null, }, new() { Id = "dbb", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Deno", + Comment = null, }, new() { Id = "dbd", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Dadiya", + Comment = null, }, new() { Id = "dbe", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Dabe", + Comment = null, }, new() { Id = "dbf", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Edopi", + Comment = null, }, new() { Id = "dbg", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Dogul Dom Dogon", + Comment = null, }, new() { Id = "dbi", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Doka", + Comment = null, }, new() { Id = "dbj", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Ida'an", + Comment = null, }, new() { Id = "dbl", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Dyirbal", + Comment = null, }, new() { Id = "dbm", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Duguri", + Comment = null, }, new() { Id = "dbn", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Duriankere", + Comment = null, }, new() { Id = "dbo", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Dulbu", + Comment = null, }, new() { Id = "dbp", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Duwai", + Comment = null, }, new() { Id = "dbq", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Daba", + Comment = null, }, new() { Id = "dbr", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Dabarre", + Comment = null, }, new() { Id = "dbt", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Ben Tey Dogon", + Comment = null, }, new() { Id = "dbu", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Bondum Dom Dogon", + Comment = null, }, new() { Id = "dbv", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Dungu", + Comment = null, }, new() { Id = "dbw", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Bankan Tey Dogon", + Comment = null, }, new() { Id = "dby", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Dibiyaso", + Comment = null, }, new() { Id = "dcc", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Deccan", + Comment = null, }, new() { Id = "dcr", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Negerhollands", + Comment = null, }, new() { Id = "dda", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Dadi Dadi", + Comment = null, }, new() { Id = "ddd", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Dongotono", + Comment = null, }, new() { Id = "dde", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Doondo", + Comment = null, }, new() { Id = "ddg", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Fataluku", + Comment = null, }, new() { Id = "ddi", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "West Goodenough", + Comment = null, }, new() { Id = "ddj", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Jaru", + Comment = null, }, new() { Id = "ddn", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Dendi (Benin)", + Comment = null, }, new() { Id = "ddo", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Dido", + Comment = null, }, new() { Id = "ddr", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Dhudhuroa", + Comment = null, }, new() { Id = "dds", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Donno So Dogon", + Comment = null, }, new() { Id = "ddw", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Dawera-Daweloor", + Comment = null, }, new() { Id = "dec", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Dagik", + Comment = null, }, new() { Id = "ded", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Dedua", + Comment = null, }, new() { Id = "dee", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Dewoin", + Comment = null, }, new() { Id = "def", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Dezfuli", + Comment = null, }, new() { Id = "deg", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Degema", + Comment = null, }, new() { Id = "deh", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Dehwari", + Comment = null, }, new() { Id = "dei", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Demisa", + Comment = null, }, new() { Id = "del", Part2B = "del", Part2T = "del", + Part1 = null, Scope = "M", LanguageType = "L", RefName = "Delaware", + Comment = null, }, new() { Id = "dem", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Dem", + Comment = null, }, new() { Id = "den", Part2B = "den", Part2T = "den", + Part1 = null, Scope = "M", LanguageType = "L", RefName = "Slave (Athapascan)", + Comment = null, }, new() { Id = "dep", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Pidgin Delaware", + Comment = null, }, new() { Id = "deq", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Dendi (Central African Republic)", + Comment = null, }, new() { Id = "der", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Deori", + Comment = null, }, new() { Id = "des", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Desano", + Comment = null, }, new() { @@ -10980,374 +16936,579 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "German", + Comment = null, }, new() { Id = "dev", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Domung", + Comment = null, }, new() { Id = "dez", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Dengese", + Comment = null, }, new() { Id = "dga", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Southern Dagaare", + Comment = null, }, new() { Id = "dgb", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Bunoge Dogon", + Comment = null, }, new() { Id = "dgc", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Casiguran Dumagat Agta", + Comment = null, }, new() { Id = "dgd", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Dagaari Dioula", + Comment = null, }, new() { Id = "dge", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Degenan", + Comment = null, }, new() { Id = "dgg", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Doga", + Comment = null, }, new() { Id = "dgh", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Dghwede", + Comment = null, }, new() { Id = "dgi", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Northern Dagara", + Comment = null, }, new() { Id = "dgk", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Dagba", + Comment = null, }, new() { Id = "dgl", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Andaandi", + Comment = null, }, new() { Id = "dgn", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Dagoman", + Comment = null, }, new() { Id = "dgo", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Dogri (individual language)", + Comment = null, }, new() { Id = "dgr", Part2B = "dgr", Part2T = "dgr", + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Tlicho", + Comment = null, }, new() { Id = "dgs", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Dogoso", + Comment = null, }, new() { Id = "dgt", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Ndra'ngith", + Comment = null, }, new() { Id = "dgw", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Daungwurrung", + Comment = null, }, new() { Id = "dgx", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Doghoro", + Comment = null, }, new() { Id = "dgz", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Daga", + Comment = null, }, new() { Id = "dhd", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Dhundari", + Comment = null, }, new() { Id = "dhg", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Dhangu-Djangu", + Comment = null, }, new() { Id = "dhi", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Dhimal", + Comment = null, }, new() { Id = "dhl", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Dhalandji", + Comment = null, }, new() { Id = "dhm", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Zemba", + Comment = null, }, new() { Id = "dhn", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Dhanki", + Comment = null, }, new() { Id = "dho", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Dhodia", + Comment = null, }, new() { Id = "dhr", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Dhargari", + Comment = null, }, new() { Id = "dhs", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Dhaiso", + Comment = null, }, new() { Id = "dhu", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Dhurga", + Comment = null, }, new() { Id = "dhv", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Dehu", + Comment = null, }, new() { Id = "dhw", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Dhanwar (Nepal)", + Comment = null, }, new() { Id = "dhx", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Dhungaloo", + Comment = null, }, new() { Id = "dia", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Dia", + Comment = null, }, new() { Id = "dib", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "South Central Dinka", + Comment = null, }, new() { Id = "dic", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Lakota Dida", + Comment = null, }, new() { Id = "did", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Didinga", + Comment = null, }, new() { Id = "dif", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Dieri", + Comment = null, }, new() { Id = "dig", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Digo", + Comment = null, }, new() { Id = "dih", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kumiai", + Comment = null, }, new() { Id = "dii", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Dimbong", + Comment = null, }, new() { Id = "dij", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Dai", + Comment = null, }, new() { Id = "dik", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Southwestern Dinka", + Comment = null, }, new() { Id = "dil", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Dilling", + Comment = null, }, new() { Id = "dim", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Dime", + Comment = null, }, new() { Id = "din", Part2B = "din", Part2T = "din", + Part1 = null, Scope = "M", LanguageType = "L", RefName = "Dinka", + Comment = null, }, new() { Id = "dio", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Dibo", + Comment = null, }, new() { Id = "dip", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Northeastern Dinka", + Comment = null, }, new() { Id = "diq", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Dimli (individual language)", + Comment = null, }, new() { Id = "dir", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Dirim", + Comment = null, }, new() { Id = "dis", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Dimasa", + Comment = null, }, new() { Id = "diu", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Diriku", + Comment = null, }, new() { @@ -11358,1220 +17519,1899 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Dhivehi", + Comment = null, }, new() { Id = "diw", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Northwestern Dinka", + Comment = null, }, new() { Id = "dix", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Dixon Reef", + Comment = null, }, new() { Id = "diy", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Diuwe", + Comment = null, }, new() { Id = "diz", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Ding", + Comment = null, }, new() { Id = "dja", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Djadjawurrung", + Comment = null, }, new() { Id = "djb", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Djinba", + Comment = null, }, new() { Id = "djc", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Dar Daju Daju", + Comment = null, }, new() { Id = "djd", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Djamindjung", + Comment = null, }, new() { Id = "dje", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Zarma", + Comment = null, }, new() { Id = "djf", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Djangun", + Comment = null, }, new() { Id = "dji", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Djinang", + Comment = null, }, new() { Id = "djj", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Djeebbana", + Comment = null, }, new() { Id = "djk", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Eastern Maroon Creole", + Comment = null, }, new() { Id = "djm", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Jamsay Dogon", + Comment = null, }, new() { Id = "djn", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Jawoyn", + Comment = null, }, new() { Id = "djo", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Jangkang", + Comment = null, }, new() { Id = "djr", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Djambarrpuyngu", + Comment = null, }, new() { Id = "dju", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kapriman", + Comment = null, }, new() { Id = "djw", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Djawi", + Comment = null, }, new() { Id = "dka", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Dakpakha", + Comment = null, }, new() { Id = "dkg", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kadung", + Comment = null, }, new() { Id = "dkk", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Dakka", + Comment = null, }, new() { Id = "dkr", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kuijau", + Comment = null, }, new() { Id = "dks", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Southeastern Dinka", + Comment = null, }, new() { Id = "dkx", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Mazagway", + Comment = null, }, new() { Id = "dlg", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Dolgan", + Comment = null, }, new() { Id = "dlk", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Dahalik", + Comment = null, }, new() { Id = "dlm", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Dalmatian", + Comment = null, }, new() { Id = "dln", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Darlong", + Comment = null, }, new() { Id = "dma", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Duma", + Comment = null, }, new() { Id = "dmb", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Mombo Dogon", + Comment = null, }, new() { Id = "dmc", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Gavak", + Comment = null, }, new() { Id = "dmd", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Madhi Madhi", + Comment = null, }, new() { Id = "dme", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Dugwor", + Comment = null, }, new() { Id = "dmf", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Medefaidrin", + Comment = null, }, new() { Id = "dmg", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Upper Kinabatangan", + Comment = null, }, new() { Id = "dmk", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Domaaki", + Comment = null, }, new() { Id = "dml", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Dameli", + Comment = null, }, new() { Id = "dmm", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Dama", + Comment = null, }, new() { Id = "dmo", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kemedzung", + Comment = null, }, new() { Id = "dmr", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "East Damar", + Comment = null, }, new() { Id = "dms", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Dampelas", + Comment = null, }, new() { Id = "dmu", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Dubu", + Comment = null, }, new() { Id = "dmv", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Dumpas", + Comment = null, }, new() { Id = "dmw", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Mudburra", + Comment = null, }, new() { Id = "dmx", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Dema", + Comment = null, }, new() { Id = "dmy", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Demta", + Comment = null, }, new() { Id = "dna", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Upper Grand Valley Dani", + Comment = null, }, new() { Id = "dnd", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Daonda", + Comment = null, }, new() { Id = "dne", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Ndendeule", + Comment = null, }, new() { Id = "dng", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Dungan", + Comment = null, }, new() { Id = "dni", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Lower Grand Valley Dani", + Comment = null, }, new() { Id = "dnj", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Dan", + Comment = null, }, new() { Id = "dnk", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Dengka", + Comment = null, }, new() { Id = "dnn", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Dzùùngoo", + Comment = null, }, new() { Id = "dno", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Ndrulo", + Comment = null, }, new() { Id = "dnr", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Danaru", + Comment = null, }, new() { Id = "dnt", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Mid Grand Valley Dani", + Comment = null, }, new() { Id = "dnu", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Danau", + Comment = null, }, new() { Id = "dnv", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Danu", + Comment = null, }, new() { Id = "dnw", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Western Dani", + Comment = null, }, new() { Id = "dny", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Dení", + Comment = null, }, new() { Id = "doa", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Dom", + Comment = null, }, new() { Id = "dob", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Dobu", + Comment = null, }, new() { Id = "doc", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Northern Dong", + Comment = null, }, new() { Id = "doe", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Doe", + Comment = null, }, new() { Id = "dof", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Domu", + Comment = null, }, new() { Id = "doh", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Dong", + Comment = null, }, new() { Id = "doi", Part2B = "doi", Part2T = "doi", + Part1 = null, Scope = "M", LanguageType = "L", RefName = "Dogri (macrolanguage)", + Comment = null, }, new() { Id = "dok", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Dondo", + Comment = null, }, new() { Id = "dol", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Doso", + Comment = null, }, new() { Id = "don", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Toura (Papua New Guinea)", + Comment = null, }, new() { Id = "doo", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Dongo", + Comment = null, }, new() { Id = "dop", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Lukpa", + Comment = null, }, new() { Id = "doq", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Dominican Sign Language", + Comment = null, }, new() { Id = "dor", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Dori'o", + Comment = null, }, new() { Id = "dos", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Dogosé", + Comment = null, }, new() { Id = "dot", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Dass", + Comment = null, }, new() { Id = "dov", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Dombe", + Comment = null, }, new() { Id = "dow", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Doyayo", + Comment = null, }, new() { Id = "dox", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Bussa", + Comment = null, }, new() { Id = "doy", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Dompo", + Comment = null, }, new() { Id = "doz", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Dorze", + Comment = null, }, new() { Id = "dpp", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Papar", + Comment = null, }, new() { Id = "drb", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Dair", + Comment = null, }, new() { Id = "drc", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Minderico", + Comment = null, }, new() { Id = "drd", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Darmiya", + Comment = null, }, new() { Id = "dre", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Dolpo", + Comment = null, }, new() { Id = "drg", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Rungus", + Comment = null, }, new() { Id = "dri", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "C'Lela", + Comment = null, }, new() { Id = "drl", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Paakantyi", + Comment = null, }, new() { Id = "drn", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "West Damar", + Comment = null, }, new() { Id = "dro", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Daro-Matu Melanau", + Comment = null, }, new() { Id = "drq", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Dura", + Comment = null, }, new() { Id = "drs", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Gedeo", + Comment = null, }, new() { Id = "drt", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Drents", + Comment = null, }, new() { Id = "dru", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Rukai", + Comment = null, }, new() { Id = "dry", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Darai", + Comment = null, }, new() { Id = "dsb", Part2B = "dsb", Part2T = "dsb", + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Lower Sorbian", + Comment = null, }, new() { Id = "dse", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Dutch Sign Language", + Comment = null, }, new() { Id = "dsh", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Daasanach", + Comment = null, }, new() { Id = "dsi", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Disa", + Comment = null, }, new() { Id = "dsk", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Dokshi", + Comment = null, }, new() { Id = "dsl", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Danish Sign Language", + Comment = null, }, new() { Id = "dsn", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Dusner", + Comment = null, }, new() { Id = "dso", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Desiya", + Comment = null, }, new() { Id = "dsq", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Tadaksahak", + Comment = null, }, new() { Id = "dsz", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Mardin Sign Language", + Comment = null, }, new() { Id = "dta", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Daur", + Comment = null, }, new() { Id = "dtb", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Labuk-Kinabatangan Kadazan", + Comment = null, }, new() { Id = "dtd", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Ditidaht", + Comment = null, }, new() { Id = "dth", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Adithinngithigh", + Comment = null, }, new() { Id = "dti", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Ana Tinga Dogon", + Comment = null, }, new() { Id = "dtk", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Tene Kan Dogon", + Comment = null, }, new() { Id = "dtm", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Tomo Kan Dogon", + Comment = null, }, new() { Id = "dtn", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Daatsʼíin", + Comment = null, }, new() { Id = "dto", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Tommo So Dogon", + Comment = null, }, new() { Id = "dtp", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kadazan Dusun", + Comment = null, }, new() { Id = "dtr", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Lotud", + Comment = null, }, new() { Id = "dts", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Toro So Dogon", + Comment = null, }, new() { Id = "dtt", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Toro Tegu Dogon", + Comment = null, }, new() { Id = "dtu", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Tebul Ure Dogon", + Comment = null, }, new() { Id = "dty", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Dotyali", + Comment = null, }, new() { Id = "dua", Part2B = "dua", Part2T = "dua", + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Duala", + Comment = null, }, new() { Id = "dub", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Dubli", + Comment = null, }, new() { Id = "duc", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Duna", + Comment = null, }, new() { Id = "due", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Umiray Dumaget Agta", + Comment = null, }, new() { Id = "duf", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Dumbea", + Comment = null, }, new() { Id = "dug", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Duruma", + Comment = null, }, new() { Id = "duh", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Dungra Bhil", + Comment = null, }, new() { Id = "dui", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Dumun", + Comment = null, }, new() { Id = "duk", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Uyajitaya", + Comment = null, }, new() { Id = "dul", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Alabat Island Agta", + Comment = null, }, new() { Id = "dum", Part2B = "dum", Part2T = "dum", + Part1 = null, Scope = "I", LanguageType = "H", RefName = "Middle Dutch (ca. 1050-1350)", + Comment = null, }, new() { Id = "dun", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Dusun Deyah", + Comment = null, }, new() { Id = "duo", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Dupaninan Agta", + Comment = null, }, new() { Id = "dup", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Duano", + Comment = null, }, new() { Id = "duq", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Dusun Malang", + Comment = null, }, new() { Id = "dur", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Dii", + Comment = null, }, new() { Id = "dus", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Dumi", + Comment = null, }, new() { Id = "duu", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Drung", + Comment = null, }, new() { Id = "duv", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Duvle", + Comment = null, }, new() { Id = "duw", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Dusun Witu", + Comment = null, }, new() { Id = "dux", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Duungooma", + Comment = null, }, new() { Id = "duy", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Dicamay Agta", + Comment = null, }, new() { Id = "duz", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Duli-Gey", + Comment = null, }, new() { Id = "dva", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Duau", + Comment = null, }, new() { Id = "dwa", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Diri", + Comment = null, }, new() { Id = "dwk", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Dawik Kui", + Comment = null, }, new() { Id = "dwr", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Dawro", + Comment = null, }, new() { Id = "dws", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "C", RefName = "Dutton World Speedwords", + Comment = null, }, new() { Id = "dwu", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Dhuwal", + Comment = null, }, new() { Id = "dww", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Dawawa", + Comment = null, }, new() { Id = "dwy", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Dhuwaya", + Comment = null, }, new() { Id = "dwz", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Dewas Rai", + Comment = null, }, new() { Id = "dya", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Dyan", + Comment = null, }, new() { Id = "dyb", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Dyaberdyaber", + Comment = null, }, new() { Id = "dyd", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Dyugun", + Comment = null, }, new() { Id = "dyg", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Villa Viciosa Agta", + Comment = null, }, new() { Id = "dyi", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Djimini Senoufo", + Comment = null, }, new() { Id = "dym", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Yanda Dom Dogon", + Comment = null, }, new() { Id = "dyn", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Dyangadi", + Comment = null, }, new() { Id = "dyo", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Jola-Fonyi", + Comment = null, }, new() { Id = "dyr", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Dyarim", + Comment = null, }, new() { Id = "dyu", Part2B = "dyu", Part2T = "dyu", + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Dyula", + Comment = null, }, new() { Id = "dyy", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Djabugay", + Comment = null, }, new() { Id = "dza", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Tunzu", + Comment = null, }, new() { Id = "dzd", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Daza", + Comment = null, }, new() { Id = "dze", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Djiwarli", + Comment = null, }, new() { Id = "dzg", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Dazaga", + Comment = null, }, new() { Id = "dzl", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Dzalakha", + Comment = null, }, new() { Id = "dzn", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Dzando", + Comment = null, }, new() { @@ -12582,292 +19422,447 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Dzongkha", + Comment = null, }, new() { Id = "eaa", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Karenggapa", + Comment = null, }, new() { Id = "ebc", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Beginci", + Comment = null, }, new() { Id = "ebg", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Ebughu", + Comment = null, }, new() { Id = "ebk", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Eastern Bontok", + Comment = null, }, new() { Id = "ebo", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Teke-Ebo", + Comment = null, }, new() { Id = "ebr", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Ebrié", + Comment = null, }, new() { Id = "ebu", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Embu", + Comment = null, }, new() { Id = "ecr", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "H", RefName = "Eteocretan", + Comment = null, }, new() { Id = "ecs", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Ecuadorian Sign Language", + Comment = null, }, new() { Id = "ecy", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "H", RefName = "Eteocypriot", + Comment = null, }, new() { Id = "eee", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "E", + Comment = null, }, new() { Id = "efa", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Efai", + Comment = null, }, new() { Id = "efe", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Efe", + Comment = null, }, new() { Id = "efi", Part2B = "efi", Part2T = "efi", + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Efik", + Comment = null, }, new() { Id = "ega", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Ega", + Comment = null, }, new() { Id = "egl", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Emilian", + Comment = null, }, new() { Id = "egm", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Benamanga", + Comment = null, }, new() { Id = "ego", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Eggon", + Comment = null, }, new() { Id = "egy", Part2B = "egy", Part2T = "egy", + Part1 = null, Scope = "I", LanguageType = "H", RefName = "Egyptian (Ancient)", + Comment = null, }, new() { Id = "ehs", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Miyakubo Sign Language", + Comment = null, }, new() { Id = "ehu", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Ehueun", + Comment = null, }, new() { Id = "eip", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Eipomek", + Comment = null, }, new() { Id = "eit", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Eitiep", + Comment = null, }, new() { Id = "eiv", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Askopan", + Comment = null, }, new() { Id = "eja", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Ejamat", + Comment = null, }, new() { Id = "eka", Part2B = "eka", Part2T = "eka", + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Ekajuk", + Comment = null, }, new() { Id = "eke", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Ekit", + Comment = null, }, new() { Id = "ekg", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Ekari", + Comment = null, }, new() { Id = "eki", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Eki", + Comment = null, }, new() { Id = "ekk", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Standard Estonian", + Comment = null, }, new() { Id = "ekl", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kol (Bangladesh)", + Comment = null, }, new() { Id = "ekm", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Elip", + Comment = null, }, new() { Id = "eko", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Koti", + Comment = null, }, new() { Id = "ekp", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Ekpeye", + Comment = null, }, new() { Id = "ekr", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Yace", + Comment = null, }, new() { Id = "eky", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Eastern Kayah", + Comment = null, }, new() { Id = "ele", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Elepi", + Comment = null, }, new() { Id = "elh", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "El Hugeirat", + Comment = null, }, new() { Id = "eli", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Nding", + Comment = null, }, new() { Id = "elk", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Elkei", + Comment = null, }, new() { @@ -12878,183 +19873,282 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Modern Greek (1453-)", + Comment = null, }, new() { Id = "elm", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Eleme", + Comment = null, }, new() { Id = "elo", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "El Molo", + Comment = null, }, new() { Id = "elu", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Elu", + Comment = null, }, new() { Id = "elx", Part2B = "elx", Part2T = "elx", + Part1 = null, Scope = "I", LanguageType = "H", RefName = "Elamite", + Comment = null, }, new() { Id = "ema", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Emai-Iuleha-Ora", + Comment = null, }, new() { Id = "emb", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Embaloh", + Comment = null, }, new() { Id = "eme", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Emerillon", + Comment = null, }, new() { Id = "emg", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Eastern Meohang", + Comment = null, }, new() { Id = "emi", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Mussau-Emira", + Comment = null, }, new() { Id = "emk", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Eastern Maninkakan", + Comment = null, }, new() { Id = "emm", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Mamulique", + Comment = null, }, new() { Id = "emn", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Eman", + Comment = null, }, new() { Id = "emp", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Northern Emberá", + Comment = null, }, new() { Id = "emq", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Eastern Minyag", + Comment = null, }, new() { Id = "ems", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Pacific Gulf Yupik", + Comment = null, }, new() { Id = "emu", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Eastern Muria", + Comment = null, }, new() { Id = "emw", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Emplawas", + Comment = null, }, new() { Id = "emx", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Erromintxela", + Comment = null, }, new() { Id = "emy", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "H", RefName = "Epigraphic Mayan", + Comment = null, }, new() { Id = "emz", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Mbessa", + Comment = null, }, new() { Id = "ena", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Apali", + Comment = null, }, new() { Id = "enb", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Markweeta", + Comment = null, }, new() { Id = "enc", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "En", + Comment = null, }, new() { Id = "end", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Ende", + Comment = null, }, new() { Id = "enf", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Forest Enets", + Comment = null, }, new() { @@ -13065,99 +20159,150 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "English", + Comment = null, }, new() { Id = "enh", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Tundra Enets", + Comment = null, }, new() { Id = "enl", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Enlhet", + Comment = null, }, new() { Id = "enm", Part2B = "enm", Part2T = "enm", + Part1 = null, Scope = "I", LanguageType = "H", RefName = "Middle English (1100-1500)", + Comment = null, }, new() { Id = "enn", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Engenni", + Comment = null, }, new() { Id = "eno", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Enggano", + Comment = null, }, new() { Id = "enq", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Enga", + Comment = null, }, new() { Id = "enr", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Emumu", + Comment = null, }, new() { Id = "enu", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Enu", + Comment = null, }, new() { Id = "env", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Enwan (Edo State)", + Comment = null, }, new() { Id = "enw", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Enwan (Akwa Ibom State)", + Comment = null, }, new() { Id = "enx", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Enxet", + Comment = null, }, new() { Id = "eot", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Beti (Côte d'Ivoire)", + Comment = null, }, new() { Id = "epi", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Epie", + Comment = null, }, new() { @@ -13168,153 +20313,238 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "C", RefName = "Esperanto", + Comment = null, }, new() { Id = "era", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Eravallan", + Comment = null, }, new() { Id = "erg", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Sie", + Comment = null, }, new() { Id = "erh", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Eruwa", + Comment = null, }, new() { Id = "eri", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Ogea", + Comment = null, }, new() { Id = "erk", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "South Efate", + Comment = null, }, new() { Id = "ero", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Horpa", + Comment = null, }, new() { Id = "err", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Erre", + Comment = null, }, new() { Id = "ers", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Ersu", + Comment = null, }, new() { Id = "ert", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Eritai", + Comment = null, }, new() { Id = "erw", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Erokwanas", + Comment = null, }, new() { Id = "ese", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Ese Ejja", + Comment = null, }, new() { Id = "esg", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Aheri Gondi", + Comment = null, }, new() { Id = "esh", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Eshtehardi", + Comment = null, }, new() { Id = "esi", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "North Alaskan Inupiatun", + Comment = null, }, new() { Id = "esk", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Northwest Alaska Inupiatun", + Comment = null, }, new() { Id = "esl", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Egypt Sign Language", + Comment = null, }, new() { Id = "esm", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Esuma", + Comment = null, }, new() { Id = "esn", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Salvadoran Sign Language", + Comment = null, }, new() { Id = "eso", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Estonian Sign Language", + Comment = null, }, new() { Id = "esq", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Esselen", + Comment = null, }, new() { Id = "ess", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Central Siberian Yupik", + Comment = null, }, new() { @@ -13325,104 +20555,161 @@ public static Iso6393Data Create() => Scope = "M", LanguageType = "L", RefName = "Estonian", + Comment = null, }, new() { Id = "esu", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Central Yupik", + Comment = null, }, new() { Id = "esy", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Eskayan", + Comment = null, }, new() { Id = "etb", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Etebi", + Comment = null, }, new() { Id = "etc", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Etchemin", + Comment = null, }, new() { Id = "eth", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Ethiopian Sign Language", + Comment = null, }, new() { Id = "etn", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Eton (Vanuatu)", + Comment = null, }, new() { Id = "eto", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Eton (Cameroon)", + Comment = null, }, new() { Id = "etr", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Edolo", + Comment = null, }, new() { Id = "ets", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Yekhee", + Comment = null, }, new() { Id = "ett", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "H", RefName = "Etruscan", + Comment = null, }, new() { Id = "etu", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Ejagham", + Comment = null, }, new() { Id = "etx", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Eten", + Comment = null, }, new() { Id = "etz", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Semimi", + Comment = null, }, new() { Id = "eud", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Eudeve", + Comment = null, }, new() { @@ -13433,27 +20720,40 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Basque", + Comment = null, }, new() { Id = "eve", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Even", + Comment = null, }, new() { Id = "evh", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Uvbie", + Comment = null, }, new() { Id = "evn", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Evenki", + Comment = null, }, new() { @@ -13464,136 +20764,205 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ewe", + Comment = null, }, new() { Id = "ewo", Part2B = "ewo", Part2T = "ewo", + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Ewondo", + Comment = null, }, new() { Id = "ext", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Extremaduran", + Comment = null, }, new() { Id = "eya", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Eyak", + Comment = null, }, new() { Id = "eyo", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Keiyo", + Comment = null, }, new() { Id = "eza", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Ezaa", + Comment = null, }, new() { Id = "eze", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Uzekwe", + Comment = null, }, new() { Id = "faa", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Fasu", + Comment = null, }, new() { Id = "fab", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Fa d'Ambu", + Comment = null, }, new() { Id = "fad", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Wagi", + Comment = null, }, new() { Id = "faf", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Fagani", + Comment = null, }, new() { Id = "fag", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Finongan", + Comment = null, }, new() { Id = "fah", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Baissa Fali", + Comment = null, }, new() { Id = "fai", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Faiwol", + Comment = null, }, new() { Id = "faj", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Faita", + Comment = null, }, new() { Id = "fak", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Fang (Cameroon)", + Comment = null, }, new() { Id = "fal", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "South Fali", + Comment = null, }, new() { Id = "fam", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Fam", + Comment = null, }, new() { Id = "fan", Part2B = "fan", Part2T = "fan", + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Fang (Equatorial Guinea)", + Comment = null, }, new() { @@ -13604,20 +20973,29 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Faroese", + Comment = null, }, new() { Id = "fap", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Paloor", + Comment = null, }, new() { Id = "far", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Fataleka", + Comment = null, }, new() { @@ -13628,106 +21006,161 @@ public static Iso6393Data Create() => Scope = "M", LanguageType = "L", RefName = "Persian", + Comment = null, }, new() { Id = "fat", Part2B = "fat", Part2T = "fat", + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Fanti", + Comment = null, }, new() { Id = "fau", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Fayu", + Comment = null, }, new() { Id = "fax", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Fala", + Comment = null, }, new() { Id = "fay", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Southwestern Fars", + Comment = null, }, new() { Id = "faz", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Northwestern Fars", + Comment = null, }, new() { Id = "fbl", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "West Albay Bikol", + Comment = null, }, new() { Id = "fcs", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Quebec Sign Language", + Comment = null, }, new() { Id = "fer", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Feroge", + Comment = null, }, new() { Id = "ffi", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Foia Foia", + Comment = null, }, new() { Id = "ffm", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Maasina Fulfulde", + Comment = null, }, new() { Id = "fgr", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Fongoro", + Comment = null, }, new() { Id = "fia", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Nobiin", + Comment = null, }, new() { Id = "fie", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Fyer", + Comment = null, }, new() { Id = "fif", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Faifi", + Comment = null, }, new() { @@ -13738,15 +21171,18 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Fijian", + Comment = null, }, new() { Id = "fil", Part2B = "fil", Part2T = "fil", + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Filipino", + Comment = null, }, new() { @@ -13757,190 +21193,293 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Finnish", + Comment = null, }, new() { Id = "fip", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Fipa", + Comment = null, }, new() { Id = "fir", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Firan", + Comment = null, }, new() { Id = "fit", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Tornedalen Finnish", + Comment = null, }, new() { Id = "fiw", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Fiwaga", + Comment = null, }, new() { Id = "fkk", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kirya-Konzəl", + Comment = null, }, new() { Id = "fkv", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kven Finnish", + Comment = null, }, new() { Id = "fla", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kalispel-Pend d'Oreille", + Comment = null, }, new() { Id = "flh", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Foau", + Comment = null, }, new() { Id = "fli", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Fali", + Comment = null, }, new() { Id = "fll", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "North Fali", + Comment = null, }, new() { Id = "fln", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Flinders Island", + Comment = null, }, new() { Id = "flr", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Fuliiru", + Comment = null, }, new() { Id = "fly", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Flaaitaal", + Comment = null, }, new() { Id = "fmp", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Fe'fe'", + Comment = null, }, new() { Id = "fmu", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Far Western Muria", + Comment = null, }, new() { Id = "fnb", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Fanbak", + Comment = null, }, new() { Id = "fng", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Fanagalo", + Comment = null, }, new() { Id = "fni", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Fania", + Comment = null, }, new() { Id = "fod", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Foodo", + Comment = null, }, new() { Id = "foi", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Foi", + Comment = null, }, new() { Id = "fom", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Foma", + Comment = null, }, new() { Id = "fon", Part2B = "fon", Part2T = "fon", + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Fon", + Comment = null, }, new() { Id = "for", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Fore", + Comment = null, }, new() { Id = "fos", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Siraya", + Comment = null, }, new() { Id = "fpe", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Fernando Po Creole English", + Comment = null, }, new() { Id = "fqs", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Fas", + Comment = null, }, new() { @@ -13951,84 +21490,117 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "French", + Comment = null, }, new() { Id = "frc", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Cajun French", + Comment = null, }, new() { Id = "frd", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Fordata", + Comment = null, }, new() { Id = "frk", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "H", RefName = "Frankish", + Comment = null, }, new() { Id = "frm", Part2B = "frm", Part2T = "frm", + Part1 = null, Scope = "I", LanguageType = "H", RefName = "Middle French (ca. 1400-1600)", + Comment = null, }, new() { Id = "fro", Part2B = "fro", Part2T = "fro", + Part1 = null, Scope = "I", LanguageType = "H", RefName = "Old French (842-ca. 1400)", + Comment = null, }, new() { Id = "frp", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Arpitan", + Comment = null, }, new() { Id = "frq", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Forak", + Comment = null, }, new() { Id = "frr", Part2B = "frr", Part2T = "frr", + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Northern Frisian", + Comment = null, }, new() { Id = "frs", Part2B = "frs", Part2T = "frs", + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Eastern Frisian", + Comment = null, }, new() { Id = "frt", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Fortsenal", + Comment = null, }, new() { @@ -14039,83 +21611,128 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Western Frisian", + Comment = null, }, new() { Id = "fse", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Finnish Sign Language", + Comment = null, }, new() { Id = "fsl", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "French Sign Language", + Comment = null, }, new() { Id = "fss", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Finland-Swedish Sign Language", + Comment = null, }, new() { Id = "fub", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Adamawa Fulfulde", + Comment = null, }, new() { Id = "fuc", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Pulaar", + Comment = null, }, new() { Id = "fud", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "East Futuna", + Comment = null, }, new() { Id = "fue", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Borgu Fulfulde", + Comment = null, }, new() { Id = "fuf", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Pular", + Comment = null, }, new() { Id = "fuh", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Western Niger Fulfulde", + Comment = null, }, new() { Id = "fui", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Bagirmi Fulfulde", + Comment = null, }, new() { Id = "fuj", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Ko", + Comment = null, }, new() { @@ -14126,1159 +21743,1800 @@ public static Iso6393Data Create() => Scope = "M", LanguageType = "L", RefName = "Fulah", + Comment = null, }, new() { Id = "fum", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Fum", + Comment = null, }, new() { Id = "fun", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Fulniô", + Comment = null, }, new() { Id = "fuq", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Central-Eastern Niger Fulfulde", + Comment = null, }, new() { Id = "fur", Part2B = "fur", Part2T = "fur", + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Friulian", + Comment = null, }, new() { Id = "fut", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Futuna-Aniwa", + Comment = null, }, new() { Id = "fuu", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Furu", + Comment = null, }, new() { Id = "fuv", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Nigerian Fulfulde", + Comment = null, }, new() { Id = "fuy", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Fuyug", + Comment = null, }, new() { Id = "fvr", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Fur", + Comment = null, }, new() { Id = "fwa", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Fwâi", + Comment = null, }, new() { Id = "fwe", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Fwe", + Comment = null, }, new() { Id = "gaa", Part2B = "gaa", Part2T = "gaa", + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Ga", + Comment = null, }, new() { Id = "gab", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Gabri", + Comment = null, }, new() { Id = "gac", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Mixed Great Andamanese", + Comment = null, }, new() { Id = "gad", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Gaddang", + Comment = null, }, new() { Id = "gae", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Guarequena", + Comment = null, }, new() { Id = "gaf", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Gende", + Comment = null, }, new() { Id = "gag", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Gagauz", + Comment = null, }, new() { Id = "gah", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Alekano", + Comment = null, }, new() { Id = "gai", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Borei", + Comment = null, }, new() { Id = "gaj", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Gadsup", + Comment = null, }, new() { Id = "gak", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Gamkonora", + Comment = null, }, new() { Id = "gal", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Galolen", + Comment = null, }, new() { Id = "gam", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kandawo", + Comment = null, }, new() { Id = "gan", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Gan Chinese", + Comment = null, }, new() { Id = "gao", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Gants", + Comment = null, }, new() { Id = "gap", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Gal", + Comment = null, }, new() { Id = "gaq", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Gata'", + Comment = null, }, new() { Id = "gar", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Galeya", + Comment = null, }, new() { Id = "gas", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Adiwasi Garasia", + Comment = null, }, new() { Id = "gat", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kenati", + Comment = null, }, new() { Id = "gau", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Mudhili Gadaba", + Comment = null, }, new() { Id = "gaw", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Nobonob", + Comment = null, }, new() { Id = "gax", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Borana-Arsi-Guji Oromo", + Comment = null, }, new() { Id = "gay", Part2B = "gay", Part2T = "gay", + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Gayo", + Comment = null, }, new() { Id = "gaz", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "West Central Oromo", + Comment = null, }, new() { Id = "gba", Part2B = "gba", Part2T = "gba", + Part1 = null, Scope = "M", LanguageType = "L", RefName = "Gbaya (Central African Republic)", + Comment = null, }, new() { Id = "gbb", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kaytetye", + Comment = null, }, new() { Id = "gbd", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Karajarri", + Comment = null, }, new() { Id = "gbe", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Niksek", + Comment = null, }, new() { Id = "gbf", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Gaikundi", + Comment = null, }, new() { Id = "gbg", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Gbanziri", + Comment = null, }, new() { Id = "gbh", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Defi Gbe", + Comment = null, }, new() { Id = "gbi", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Galela", + Comment = null, }, new() { Id = "gbj", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Bodo Gadaba", + Comment = null, }, new() { Id = "gbk", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Gaddi", + Comment = null, }, new() { Id = "gbl", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Gamit", + Comment = null, }, new() { Id = "gbm", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Garhwali", + Comment = null, }, new() { Id = "gbn", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Mo'da", + Comment = null, }, new() { Id = "gbo", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Northern Grebo", + Comment = null, }, new() { Id = "gbp", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Gbaya-Bossangoa", + Comment = null, }, new() { Id = "gbq", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Gbaya-Bozoum", + Comment = null, }, new() { Id = "gbr", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Gbagyi", + Comment = null, }, new() { Id = "gbs", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Gbesi Gbe", + Comment = null, }, new() { Id = "gbu", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Gagadu", + Comment = null, }, new() { Id = "gbv", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Gbanu", + Comment = null, }, new() { Id = "gbw", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Gabi-Gabi", + Comment = null, }, new() { Id = "gbx", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Eastern Xwla Gbe", + Comment = null, }, new() { Id = "gby", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Gbari", + Comment = null, }, new() { Id = "gbz", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Zoroastrian Dari", + Comment = null, }, new() { Id = "gcc", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Mali", + Comment = null, }, new() { Id = "gcd", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Ganggalida", + Comment = null, }, new() { Id = "gce", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Galice", + Comment = null, }, new() { Id = "gcf", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Guadeloupean Creole French", + Comment = null, }, new() { Id = "gcl", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Grenadian Creole English", + Comment = null, }, new() { Id = "gcn", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Gaina", + Comment = null, }, new() { Id = "gcr", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Guianese Creole French", + Comment = null, }, new() { Id = "gct", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Colonia Tovar German", + Comment = null, }, new() { Id = "gda", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Gade Lohar", + Comment = null, }, new() { Id = "gdb", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Pottangi Ollar Gadaba", + Comment = null, }, new() { Id = "gdc", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Gugu Badhun", + Comment = null, }, new() { Id = "gdd", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Gedaged", + Comment = null, }, new() { Id = "gde", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Gude", + Comment = null, }, new() { Id = "gdf", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Guduf-Gava", + Comment = null, }, new() { Id = "gdg", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Ga'dang", + Comment = null, }, new() { Id = "gdh", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Gadjerawang", + Comment = null, }, new() { Id = "gdi", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Gundi", + Comment = null, }, new() { Id = "gdj", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Gurdjar", + Comment = null, }, new() { Id = "gdk", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Gadang", + Comment = null, }, new() { Id = "gdl", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Dirasha", + Comment = null, }, new() { Id = "gdm", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Laal", + Comment = null, }, new() { Id = "gdn", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Umanakaina", + Comment = null, }, new() { Id = "gdo", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Ghodoberi", + Comment = null, }, new() { Id = "gdq", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Mehri", + Comment = null, }, new() { Id = "gdr", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Wipi", + Comment = null, }, new() { Id = "gds", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Ghandruk Sign Language", + Comment = null, }, new() { Id = "gdt", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Kungardutyi", + Comment = null, }, new() { Id = "gdu", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Gudu", + Comment = null, }, new() { Id = "gdx", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Godwari", + Comment = null, }, new() { Id = "gea", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Geruma", + Comment = null, }, new() { Id = "geb", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kire", + Comment = null, }, new() { Id = "gec", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Gboloo Grebo", + Comment = null, }, new() { Id = "ged", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Gade", + Comment = null, }, new() { Id = "gef", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Gerai", + Comment = null, }, new() { Id = "geg", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Gengle", + Comment = null, }, new() { Id = "geh", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Hutterite German", + Comment = null, }, new() { Id = "gei", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Gebe", + Comment = null, }, new() { Id = "gej", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Gen", + Comment = null, }, new() { Id = "gek", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Ywom", + Comment = null, }, new() { Id = "gel", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "ut-Ma'in", + Comment = null, }, new() { Id = "geq", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Geme", + Comment = null, }, new() { Id = "ges", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Geser-Gorom", + Comment = null, }, new() { Id = "gev", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Eviya", + Comment = null, }, new() { Id = "gew", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Gera", + Comment = null, }, new() { Id = "gex", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Garre", + Comment = null, }, new() { Id = "gey", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Enya", + Comment = null, }, new() { Id = "gez", Part2B = "gez", Part2T = "gez", + Part1 = null, Scope = "I", LanguageType = "H", RefName = "Geez", + Comment = null, }, new() { Id = "gfk", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Patpatar", + Comment = null, }, new() { Id = "gft", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Gafat", + Comment = null, }, new() { Id = "gga", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Gao", + Comment = null, }, new() { Id = "ggb", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Gbii", + Comment = null, }, new() { Id = "ggd", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Gugadj", + Comment = null, }, new() { Id = "gge", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Gurr-goni", + Comment = null, }, new() { Id = "ggg", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Gurgula", + Comment = null, }, new() { Id = "ggk", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Kungarakany", + Comment = null, }, new() { Id = "ggl", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Ganglau", + Comment = null, }, new() { Id = "ggt", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Gitua", + Comment = null, }, new() { Id = "ggu", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Gagu", + Comment = null, }, new() { Id = "ggw", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Gogodala", + Comment = null, }, new() { Id = "gha", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Ghadamès", + Comment = null, }, new() { Id = "ghc", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "H", RefName = "Hiberno-Scottish Gaelic", + Comment = null, }, new() { Id = "ghe", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Southern Ghale", + Comment = null, }, new() { Id = "ghh", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Northern Ghale", + Comment = null, }, new() { Id = "ghk", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Geko Karen", + Comment = null, }, new() { Id = "ghl", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Ghulfan", + Comment = null, }, new() { Id = "ghn", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Ghanongga", + Comment = null, }, new() { Id = "gho", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Ghomara", + Comment = null, }, new() { Id = "ghr", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Ghera", + Comment = null, }, new() { Id = "ghs", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Guhu-Samane", + Comment = null, }, new() { Id = "ght", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kuke", + Comment = null, }, new() { Id = "gia", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kija", + Comment = null, }, new() { Id = "gib", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Gibanawa", + Comment = null, }, new() { Id = "gic", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Gail", + Comment = null, }, new() { Id = "gid", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Gidar", + Comment = null, }, new() { Id = "gie", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Gaɓogbo", + Comment = null, }, new() { Id = "gig", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Goaria", + Comment = null, }, new() { Id = "gih", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Githabul", + Comment = null, }, new() { Id = "gii", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Girirra", + Comment = null, }, new() { Id = "gil", Part2B = "gil", Part2T = "gil", + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Gilbertese", + Comment = null, }, new() { Id = "gim", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Gimi (Eastern Highlands)", + Comment = null, }, new() { Id = "gin", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Hinukh", + Comment = null, }, new() { Id = "gip", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Gimi (West New Britain)", + Comment = null, }, new() { Id = "giq", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Green Gelao", + Comment = null, }, new() { Id = "gir", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Red Gelao", + Comment = null, }, new() { Id = "gis", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "North Giziga", + Comment = null, }, new() { Id = "git", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Gitxsan", + Comment = null, }, new() { Id = "giu", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Mulao", + Comment = null, }, new() { Id = "giw", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "White Gelao", + Comment = null, }, new() { Id = "gix", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Gilima", + Comment = null, }, new() { Id = "giy", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Giyug", + Comment = null, }, new() { Id = "giz", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "South Giziga", + Comment = null, }, new() { Id = "gjk", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kachi Koli", + Comment = null, }, new() { Id = "gjm", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Gunditjmara", + Comment = null, }, new() { Id = "gjn", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Gonja", + Comment = null, }, new() { Id = "gjr", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Gurindji Kriol", + Comment = null, }, new() { Id = "gju", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Gujari", + Comment = null, }, new() { Id = "gka", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Guya", + Comment = null, }, new() { Id = "gkd", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Magɨ (Madang Province)", + Comment = null, }, new() { Id = "gke", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Ndai", + Comment = null, }, new() { Id = "gkn", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Gokana", + Comment = null, }, new() { Id = "gko", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Kok-Nar", + Comment = null, }, new() { Id = "gkp", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Guinea Kpelle", + Comment = null, }, new() { Id = "gku", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "ǂUngkue", + Comment = null, }, new() { @@ -15289,27 +23547,40 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Scottish Gaelic", + Comment = null, }, new() { Id = "glb", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Belning", + Comment = null, }, new() { Id = "glc", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Bon Gula", + Comment = null, }, new() { Id = "gld", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Nanai", + Comment = null, }, new() { @@ -15320,6 +23591,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Irish", + Comment = null, }, new() { @@ -15330,55 +23602,84 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Galician", + Comment = null, }, new() { Id = "glh", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Northwest Pashai", + Comment = null, }, new() { Id = "glj", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Gula Iro", + Comment = null, }, new() { Id = "glk", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Gilaki", + Comment = null, }, new() { Id = "gll", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Garlali", + Comment = null, }, new() { Id = "glo", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Galambu", + Comment = null, }, new() { Id = "glr", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Glaro-Twabo", + Comment = null, }, new() { Id = "glu", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Gula (Chad)", + Comment = null, }, new() { @@ -15389,573 +23690,876 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Manx", + Comment = null, }, new() { Id = "glw", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Glavda", + Comment = null, }, new() { Id = "gly", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Gule", + Comment = null, }, new() { Id = "gma", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Gambera", + Comment = null, }, new() { Id = "gmb", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Gula'alaa", + Comment = null, }, new() { Id = "gmd", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Mághdì", + Comment = null, }, new() { Id = "gmg", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Magɨyi", + Comment = null, }, new() { Id = "gmh", Part2B = "gmh", Part2T = "gmh", + Part1 = null, Scope = "I", LanguageType = "H", RefName = "Middle High German (ca. 1050-1500)", + Comment = null, }, new() { Id = "gml", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "H", RefName = "Middle Low German", + Comment = null, }, new() { Id = "gmm", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Gbaya-Mbodomo", + Comment = null, }, new() { Id = "gmn", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Gimnime", + Comment = null, }, new() { Id = "gmr", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Mirning", + Comment = null, }, new() { Id = "gmu", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Gumalu", + Comment = null, }, new() { Id = "gmv", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Gamo", + Comment = null, }, new() { Id = "gmx", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Magoma", + Comment = null, }, new() { Id = "gmy", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "H", RefName = "Mycenaean Greek", + Comment = null, }, new() { Id = "gmz", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Mgbolizhia", + Comment = null, }, new() { Id = "gna", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kaansa", + Comment = null, }, new() { Id = "gnb", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Gangte", + Comment = null, }, new() { Id = "gnc", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Guanche", + Comment = null, }, new() { Id = "gnd", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Zulgo-Gemzek", + Comment = null, }, new() { Id = "gne", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Ganang", + Comment = null, }, new() { Id = "gng", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Ngangam", + Comment = null, }, new() { Id = "gnh", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Lere", + Comment = null, }, new() { Id = "gni", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Gooniyandi", + Comment = null, }, new() { Id = "gnj", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Ngen", + Comment = null, }, new() { Id = "gnk", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "ǁGana", + Comment = null, }, new() { Id = "gnl", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Gangulu", + Comment = null, }, new() { Id = "gnm", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Ginuman", + Comment = null, }, new() { Id = "gnn", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Gumatj", + Comment = null, }, new() { Id = "gno", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Northern Gondi", + Comment = null, }, new() { Id = "gnq", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Gana", + Comment = null, }, new() { Id = "gnr", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Gureng Gureng", + Comment = null, }, new() { Id = "gnt", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Guntai", + Comment = null, }, new() { Id = "gnu", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Gnau", + Comment = null, }, new() { Id = "gnw", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Western Bolivian Guaraní", + Comment = null, }, new() { Id = "gnz", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Ganzi", + Comment = null, }, new() { Id = "goa", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Guro", + Comment = null, }, new() { Id = "gob", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Playero", + Comment = null, }, new() { Id = "goc", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Gorakor", + Comment = null, }, new() { Id = "god", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Godié", + Comment = null, }, new() { Id = "goe", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Gongduk", + Comment = null, }, new() { Id = "gof", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Gofa", + Comment = null, }, new() { Id = "gog", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Gogo", + Comment = null, }, new() { Id = "goh", Part2B = "goh", Part2T = "goh", + Part1 = null, Scope = "I", LanguageType = "H", RefName = "Old High German (ca. 750-1050)", + Comment = null, }, new() { Id = "goi", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Gobasi", + Comment = null, }, new() { Id = "goj", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Gowlan", + Comment = null, }, new() { Id = "gok", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Gowli", + Comment = null, }, new() { Id = "gol", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Gola", + Comment = null, }, new() { Id = "gom", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Goan Konkani", + Comment = null, }, new() { Id = "gon", Part2B = "gon", Part2T = "gon", + Part1 = null, Scope = "M", LanguageType = "L", RefName = "Gondi", + Comment = null, }, new() { Id = "goo", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Gone Dau", + Comment = null, }, new() { Id = "gop", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Yeretuar", + Comment = null, }, new() { Id = "goq", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Gorap", + Comment = null, }, new() { Id = "gor", Part2B = "gor", Part2T = "gor", + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Gorontalo", + Comment = null, }, new() { Id = "gos", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Gronings", + Comment = null, }, new() { Id = "got", Part2B = "got", Part2T = "got", + Part1 = null, Scope = "I", LanguageType = "H", RefName = "Gothic", + Comment = null, }, new() { Id = "gou", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Gavar", + Comment = null, }, new() { Id = "gov", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Goo", + Comment = null, }, new() { Id = "gow", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Gorowa", + Comment = null, }, new() { Id = "gox", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Gobu", + Comment = null, }, new() { Id = "goy", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Goundo", + Comment = null, }, new() { Id = "goz", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Gozarkhani", + Comment = null, }, new() { Id = "gpa", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Gupa-Abawa", + Comment = null, }, new() { Id = "gpe", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Ghanaian Pidgin English", + Comment = null, }, new() { Id = "gpn", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Taiap", + Comment = null, }, new() { Id = "gqa", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Ga'anda", + Comment = null, }, new() { Id = "gqi", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Guiqiong", + Comment = null, }, new() { Id = "gqn", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Guana (Brazil)", + Comment = null, }, new() { Id = "gqr", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Gor", + Comment = null, }, new() { Id = "gqu", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Qau", + Comment = null, }, new() { Id = "gra", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Rajput Garasia", + Comment = null, }, new() { Id = "grb", Part2B = "grb", Part2T = "grb", + Part1 = null, Scope = "M", LanguageType = "L", RefName = "Grebo", + Comment = null, }, new() { Id = "grc", Part2B = "grc", Part2T = "grc", + Part1 = null, Scope = "I", LanguageType = "H", RefName = "Ancient Greek (to 1453)", + Comment = null, }, new() { Id = "grd", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Guruntum-Mbaaru", + Comment = null, }, new() { Id = "grg", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Madi", + Comment = null, }, new() { Id = "grh", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Gbiri-Niragu", + Comment = null, }, new() { Id = "gri", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Ghari", + Comment = null, }, new() { Id = "grj", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Southern Grebo", + Comment = null, }, new() { Id = "grm", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kota Marudu Talantang", + Comment = null, }, new() { @@ -15966,225 +24570,348 @@ public static Iso6393Data Create() => Scope = "M", LanguageType = "L", RefName = "Guarani", + Comment = null, }, new() { Id = "gro", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Groma", + Comment = null, }, new() { Id = "grq", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Gorovu", + Comment = null, }, new() { Id = "grr", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Taznatit", + Comment = null, }, new() { Id = "grs", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Gresi", + Comment = null, }, new() { Id = "grt", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Garo", + Comment = null, }, new() { Id = "gru", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kistane", + Comment = null, }, new() { Id = "grv", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Central Grebo", + Comment = null, }, new() { Id = "grw", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Gweda", + Comment = null, }, new() { Id = "grx", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Guriaso", + Comment = null, }, new() { Id = "gry", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Barclayville Grebo", + Comment = null, }, new() { Id = "grz", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Guramalum", + Comment = null, }, new() { Id = "gse", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Ghanaian Sign Language", + Comment = null, }, new() { Id = "gsg", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "German Sign Language", + Comment = null, }, new() { Id = "gsl", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Gusilay", + Comment = null, }, new() { Id = "gsm", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Guatemalan Sign Language", + Comment = null, }, new() { Id = "gsn", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Nema", + Comment = null, }, new() { Id = "gso", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Southwest Gbaya", + Comment = null, }, new() { Id = "gsp", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Wasembo", + Comment = null, }, new() { Id = "gss", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Greek Sign Language", + Comment = null, }, new() { Id = "gsw", Part2B = "gsw", Part2T = "gsw", + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Swiss German", + Comment = null, }, new() { Id = "gta", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Guató", + Comment = null, }, new() { Id = "gtu", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Aghu-Tharnggala", + Comment = null, }, new() { Id = "gua", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Shiki", + Comment = null, }, new() { Id = "gub", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Guajajára", + Comment = null, }, new() { Id = "guc", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Wayuu", + Comment = null, }, new() { Id = "gud", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Yocoboué Dida", + Comment = null, }, new() { Id = "gue", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Gurindji", + Comment = null, }, new() { Id = "guf", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Gupapuyngu", + Comment = null, }, new() { Id = "gug", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Paraguayan Guaraní", + Comment = null, }, new() { Id = "guh", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Guahibo", + Comment = null, }, new() { Id = "gui", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Eastern Bolivian Guaraní", + Comment = null, }, new() { @@ -16195,570 +24922,887 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Gujarati", + Comment = null, }, new() { Id = "guk", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Gumuz", + Comment = null, }, new() { Id = "gul", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Sea Island Creole English", + Comment = null, }, new() { Id = "gum", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Guambiano", + Comment = null, }, new() { Id = "gun", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Mbyá Guaraní", + Comment = null, }, new() { Id = "guo", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Guayabero", + Comment = null, }, new() { Id = "gup", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Gunwinggu", + Comment = null, }, new() { Id = "guq", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Aché", + Comment = null, }, new() { Id = "gur", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Farefare", + Comment = null, }, new() { Id = "gus", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Guinean Sign Language", + Comment = null, }, new() { Id = "gut", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Maléku Jaíka", + Comment = null, }, new() { Id = "guu", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Yanomamö", + Comment = null, }, new() { Id = "guw", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Gun", + Comment = null, }, new() { Id = "gux", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Gourmanchéma", + Comment = null, }, new() { Id = "guz", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Gusii", + Comment = null, }, new() { Id = "gva", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Guana (Paraguay)", + Comment = null, }, new() { Id = "gvc", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Guanano", + Comment = null, }, new() { Id = "gve", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Duwet", + Comment = null, }, new() { Id = "gvf", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Golin", + Comment = null, }, new() { Id = "gvj", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Guajá", + Comment = null, }, new() { Id = "gvl", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Gulay", + Comment = null, }, new() { Id = "gvm", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Gurmana", + Comment = null, }, new() { Id = "gvn", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kuku-Yalanji", + Comment = null, }, new() { Id = "gvo", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Gavião Do Jiparaná", + Comment = null, }, new() { Id = "gvp", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Pará Gavião", + Comment = null, }, new() { Id = "gvr", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Gurung", + Comment = null, }, new() { Id = "gvs", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Gumawana", + Comment = null, }, new() { Id = "gvy", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Guyani", + Comment = null, }, new() { Id = "gwa", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Mbato", + Comment = null, }, new() { Id = "gwb", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Gwa", + Comment = null, }, new() { Id = "gwc", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Gawri", + Comment = null, }, new() { Id = "gwd", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Gawwada", + Comment = null, }, new() { Id = "gwe", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Gweno", + Comment = null, }, new() { Id = "gwf", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Gowro", + Comment = null, }, new() { Id = "gwg", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Moo", + Comment = null, }, new() { Id = "gwi", Part2B = "gwi", Part2T = "gwi", + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Gwichʼin", + Comment = null, }, new() { Id = "gwj", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "ǀGwi", + Comment = null, }, new() { Id = "gwm", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Awngthim", + Comment = null, }, new() { Id = "gwn", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Gwandara", + Comment = null, }, new() { Id = "gwr", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Gwere", + Comment = null, }, new() { Id = "gwt", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Gawar-Bati", + Comment = null, }, new() { Id = "gwu", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Guwamu", + Comment = null, }, new() { Id = "gww", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kwini", + Comment = null, }, new() { Id = "gwx", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Gua", + Comment = null, }, new() { Id = "gxx", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Wè Southern", + Comment = null, }, new() { Id = "gya", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Northwest Gbaya", + Comment = null, }, new() { Id = "gyb", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Garus", + Comment = null, }, new() { Id = "gyd", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kayardild", + Comment = null, }, new() { Id = "gye", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Gyem", + Comment = null, }, new() { Id = "gyf", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Gungabula", + Comment = null, }, new() { Id = "gyg", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Gbayi", + Comment = null, }, new() { Id = "gyi", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Gyele", + Comment = null, }, new() { Id = "gyl", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Gayil", + Comment = null, }, new() { Id = "gym", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Ngäbere", + Comment = null, }, new() { Id = "gyn", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Guyanese Creole English", + Comment = null, }, new() { Id = "gyo", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Gyalsumdo", + Comment = null, }, new() { Id = "gyr", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Guarayu", + Comment = null, }, new() { Id = "gyy", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Gunya", + Comment = null, }, new() { Id = "gyz", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Geji", + Comment = null, }, new() { Id = "gza", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Ganza", + Comment = null, }, new() { Id = "gzi", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Gazi", + Comment = null, }, new() { Id = "gzn", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Gane", + Comment = null, }, new() { Id = "haa", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Hän", + Comment = null, }, new() { Id = "hab", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Hanoi Sign Language", + Comment = null, }, new() { Id = "hac", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Gurani", + Comment = null, }, new() { Id = "had", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Hatam", + Comment = null, }, new() { Id = "hae", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Eastern Oromo", + Comment = null, }, new() { Id = "haf", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Haiphong Sign Language", + Comment = null, }, new() { Id = "hag", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Hanga", + Comment = null, }, new() { Id = "hah", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Hahon", + Comment = null, }, new() { Id = "hai", Part2B = "hai", Part2T = "hai", + Part1 = null, Scope = "M", LanguageType = "L", RefName = "Haida", + Comment = null, }, new() { Id = "haj", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Hajong", + Comment = null, }, new() { Id = "hak", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Hakka Chinese", + Comment = null, }, new() { Id = "hal", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Halang", + Comment = null, }, new() { Id = "ham", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Hewa", + Comment = null, }, new() { Id = "han", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Hangaza", + Comment = null, }, new() { Id = "hao", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Hakö", + Comment = null, }, new() { Id = "hap", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Hupla", + Comment = null, }, new() { Id = "haq", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Ha", + Comment = null, }, new() { Id = "har", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Harari", + Comment = null, }, new() { Id = "has", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Haisla", + Comment = null, }, new() { @@ -16769,6 +25813,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Haitian", + Comment = null, }, new() { @@ -16779,75 +25824,112 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Hausa", + Comment = null, }, new() { Id = "hav", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Havu", + Comment = null, }, new() { Id = "haw", Part2B = "haw", Part2T = "haw", + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Hawaiian", + Comment = null, }, new() { Id = "hax", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Southern Haida", + Comment = null, }, new() { Id = "hay", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Haya", + Comment = null, }, new() { Id = "haz", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Hazaragi", + Comment = null, }, new() { Id = "hba", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Hamba", + Comment = null, }, new() { Id = "hbb", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Huba", + Comment = null, }, new() { Id = "hbn", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Heiban", + Comment = null, }, new() { Id = "hbo", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "H", RefName = "Ancient Hebrew", + Comment = null, }, new() { Id = "hbs", + Part2B = null, + Part2T = null, Part1 = "sh", Scope = "M", LanguageType = "L", @@ -16857,51 +25939,79 @@ public static Iso6393Data Create() => new() { Id = "hbu", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Habu", + Comment = null, }, new() { Id = "hca", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Andaman Creole Hindi", + Comment = null, }, new() { Id = "hch", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Huichol", + Comment = null, }, new() { Id = "hdn", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Northern Haida", + Comment = null, }, new() { Id = "hds", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Honduras Sign Language", + Comment = null, }, new() { Id = "hdy", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Hadiyya", + Comment = null, }, new() { Id = "hea", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Northern Qiandong Miao", + Comment = null, }, new() { @@ -16912,41 +26022,62 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Hebrew", + Comment = null, }, new() { Id = "hed", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Herdé", + Comment = null, }, new() { Id = "heg", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Helong", + Comment = null, }, new() { Id = "heh", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Hehe", + Comment = null, }, new() { Id = "hei", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Heiltsuk", + Comment = null, }, new() { Id = "hem", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Hemba", + Comment = null, }, new() { @@ -16957,113 +26088,172 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Herero", + Comment = null, }, new() { Id = "hgm", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Haiǁom", + Comment = null, }, new() { Id = "hgw", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Haigwai", + Comment = null, }, new() { Id = "hhi", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Hoia Hoia", + Comment = null, }, new() { Id = "hhr", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kerak", + Comment = null, }, new() { Id = "hhy", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Hoyahoya", + Comment = null, }, new() { Id = "hia", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Lamang", + Comment = null, }, new() { Id = "hib", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Hibito", + Comment = null, }, new() { Id = "hid", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Hidatsa", + Comment = null, }, new() { Id = "hif", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Fiji Hindi", + Comment = null, }, new() { Id = "hig", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kamwe", + Comment = null, }, new() { Id = "hih", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Pamosu", + Comment = null, }, new() { Id = "hii", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Hinduri", + Comment = null, }, new() { Id = "hij", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Hijuk", + Comment = null, }, new() { Id = "hik", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Seit-Kaitetu", + Comment = null, }, new() { Id = "hil", Part2B = "hil", Part2T = "hil", + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Hiligaynon", + Comment = null, }, new() { @@ -17074,234 +26264,359 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Hindi", + Comment = null, }, new() { Id = "hio", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Tsoa", + Comment = null, }, new() { Id = "hir", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Himarimã", + Comment = null, }, new() { Id = "hit", Part2B = "hit", Part2T = "hit", + Part1 = null, Scope = "I", LanguageType = "H", RefName = "Hittite", + Comment = null, }, new() { Id = "hiw", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Hiw", + Comment = null, }, new() { Id = "hix", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Hixkaryána", + Comment = null, }, new() { Id = "hji", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Haji", + Comment = null, }, new() { Id = "hka", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kahe", + Comment = null, }, new() { Id = "hke", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Hunde", + Comment = null, }, new() { Id = "hkh", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Khah", + Comment = null, }, new() { Id = "hkk", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Hunjara-Kaina Ke", + Comment = null, }, new() { Id = "hkn", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Mel-Khaonh", + Comment = null, }, new() { Id = "hks", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Hong Kong Sign Language", + Comment = null, }, new() { Id = "hla", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Halia", + Comment = null, }, new() { Id = "hlb", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Halbi", + Comment = null, }, new() { Id = "hld", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Halang Doan", + Comment = null, }, new() { Id = "hle", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Hlersu", + Comment = null, }, new() { Id = "hlt", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Matu Chin", + Comment = null, }, new() { Id = "hlu", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "H", RefName = "Hieroglyphic Luwian", + Comment = null, }, new() { Id = "hma", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Southern Mashan Hmong", + Comment = null, }, new() { Id = "hmb", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Humburi Senni Songhay", + Comment = null, }, new() { Id = "hmc", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Central Huishui Hmong", + Comment = null, }, new() { Id = "hmd", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Large Flowery Miao", + Comment = null, }, new() { Id = "hme", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Eastern Huishui Hmong", + Comment = null, }, new() { Id = "hmf", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Hmong Don", + Comment = null, }, new() { Id = "hmg", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Southwestern Guiyang Hmong", + Comment = null, }, new() { Id = "hmh", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Southwestern Huishui Hmong", + Comment = null, }, new() { Id = "hmi", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Northern Huishui Hmong", + Comment = null, }, new() { Id = "hmj", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Ge", + Comment = null, }, new() { Id = "hmk", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "H", RefName = "Maek", + Comment = null, }, new() { Id = "hml", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Luopohe Hmong", + Comment = null, }, new() { Id = "hmm", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Central Mashan Hmong", + Comment = null, }, new() { Id = "hmn", Part2B = "hmn", Part2T = "hmn", + Part1 = null, Scope = "M", LanguageType = "L", RefName = "Hmong", + Comment = null, }, new() { @@ -17312,370 +26627,579 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Hiri Motu", + Comment = null, }, new() { Id = "hmp", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Northern Mashan Hmong", + Comment = null, }, new() { Id = "hmq", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Eastern Qiandong Miao", + Comment = null, }, new() { Id = "hmr", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Hmar", + Comment = null, }, new() { Id = "hms", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Southern Qiandong Miao", + Comment = null, }, new() { Id = "hmt", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Hamtai", + Comment = null, }, new() { Id = "hmu", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Hamap", + Comment = null, }, new() { Id = "hmv", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Hmong Dô", + Comment = null, }, new() { Id = "hmw", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Western Mashan Hmong", + Comment = null, }, new() { Id = "hmy", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Southern Guiyang Hmong", + Comment = null, }, new() { Id = "hmz", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Hmong Shua", + Comment = null, }, new() { Id = "hna", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Mina (Cameroon)", + Comment = null, }, new() { Id = "hnd", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Southern Hindko", + Comment = null, }, new() { Id = "hne", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Chhattisgarhi", + Comment = null, }, new() { Id = "hng", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Hungu", + Comment = null, }, new() { Id = "hnh", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "ǁAni", + Comment = null, }, new() { Id = "hni", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Hani", + Comment = null, }, new() { Id = "hnj", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Hmong Njua", + Comment = null, }, new() { Id = "hnm", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Hainanese", + Comment = null, }, new() { Id = "hnn", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Hanunoo", + Comment = null, }, new() { Id = "hno", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Northern Hindko", + Comment = null, }, new() { Id = "hns", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Caribbean Hindustani", + Comment = null, }, new() { Id = "hnu", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Hung", + Comment = null, }, new() { Id = "hoa", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Hoava", + Comment = null, }, new() { Id = "hob", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Mari (Madang Province)", + Comment = null, }, new() { Id = "hoc", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Ho", + Comment = null, }, new() { Id = "hod", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Holma", + Comment = null, }, new() { Id = "hoe", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Horom", + Comment = null, }, new() { Id = "hoh", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Hobyót", + Comment = null, }, new() { Id = "hoi", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Holikachuk", + Comment = null, }, new() { Id = "hoj", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Hadothi", + Comment = null, }, new() { Id = "hol", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Holu", + Comment = null, }, new() { Id = "hom", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Homa", + Comment = null, }, new() { Id = "hoo", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Holoholo", + Comment = null, }, new() { Id = "hop", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Hopi", + Comment = null, }, new() { Id = "hor", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Horo", + Comment = null, }, new() { Id = "hos", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Ho Chi Minh City Sign Language", + Comment = null, }, new() { Id = "hot", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Hote", + Comment = null, }, new() { Id = "hov", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Hovongan", + Comment = null, }, new() { Id = "how", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Honi", + Comment = null, }, new() { Id = "hoy", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Holiya", + Comment = null, }, new() { Id = "hoz", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Hozo", + Comment = null, }, new() { Id = "hpo", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Hpon", + Comment = null, }, new() { Id = "hps", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Hawai'i Sign Language (HSL)", + Comment = null, }, new() { Id = "hra", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Hrangkhol", + Comment = null, }, new() { Id = "hrc", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Niwer Mil", + Comment = null, }, new() { Id = "hre", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Hre", + Comment = null, }, new() { Id = "hrk", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Haruku", + Comment = null, }, new() { Id = "hrm", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Horned Miao", + Comment = null, }, new() { Id = "hro", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Haroi", + Comment = null, }, new() { Id = "hrp", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Nhirrpi", + Comment = null, }, new() { Id = "hrt", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Hértevin", + Comment = null, }, new() { Id = "hru", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Hruso", + Comment = null, }, new() { @@ -17686,183 +27210,282 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Croatian", + Comment = null, }, new() { Id = "hrw", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Warwar Feni", + Comment = null, }, new() { Id = "hrx", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Hunsrik", + Comment = null, }, new() { Id = "hrz", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Harzani", + Comment = null, }, new() { Id = "hsb", Part2B = "hsb", Part2T = "hsb", + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Upper Sorbian", + Comment = null, }, new() { Id = "hsh", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Hungarian Sign Language", + Comment = null, }, new() { Id = "hsl", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Hausa Sign Language", + Comment = null, }, new() { Id = "hsn", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Xiang Chinese", + Comment = null, }, new() { Id = "hss", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Harsusi", + Comment = null, }, new() { Id = "hti", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Hoti", + Comment = null, }, new() { Id = "hto", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Minica Huitoto", + Comment = null, }, new() { Id = "hts", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Hadza", + Comment = null, }, new() { Id = "htu", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Hitu", + Comment = null, }, new() { Id = "htx", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "H", RefName = "Middle Hittite", + Comment = null, }, new() { Id = "hub", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Huambisa", + Comment = null, }, new() { Id = "huc", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "ǂHua", + Comment = null, }, new() { Id = "hud", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Huaulu", + Comment = null, }, new() { Id = "hue", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "San Francisco Del Mar Huave", + Comment = null, }, new() { Id = "huf", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Humene", + Comment = null, }, new() { Id = "hug", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Huachipaeri", + Comment = null, }, new() { Id = "huh", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Huilliche", + Comment = null, }, new() { Id = "hui", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Huli", + Comment = null, }, new() { Id = "huj", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Northern Guiyang Hmong", + Comment = null, }, new() { Id = "huk", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Hulung", + Comment = null, }, new() { Id = "hul", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Hula", + Comment = null, }, new() { Id = "hum", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Hungana", + Comment = null, }, new() { @@ -17873,155 +27496,238 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Hungarian", + Comment = null, }, new() { Id = "huo", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Hu", + Comment = null, }, new() { Id = "hup", Part2B = "hup", Part2T = "hup", + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Hupa", + Comment = null, }, new() { Id = "huq", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Tsat", + Comment = null, }, new() { Id = "hur", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Halkomelem", + Comment = null, }, new() { Id = "hus", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Huastec", + Comment = null, }, new() { Id = "hut", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Humla", + Comment = null, }, new() { Id = "huu", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Murui Huitoto", + Comment = null, }, new() { Id = "huv", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "San Mateo Del Mar Huave", + Comment = null, }, new() { Id = "huw", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Hukumina", + Comment = null, }, new() { Id = "hux", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Nüpode Huitoto", + Comment = null, }, new() { Id = "huy", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Hulaulá", + Comment = null, }, new() { Id = "huz", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Hunzib", + Comment = null, }, new() { Id = "hvc", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Haitian Vodoun Culture Language", + Comment = null, }, new() { Id = "hve", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "San Dionisio Del Mar Huave", + Comment = null, }, new() { Id = "hvk", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Haveke", + Comment = null, }, new() { Id = "hvn", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Sabu", + Comment = null, }, new() { Id = "hvv", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Santa María Del Mar Huave", + Comment = null, }, new() { Id = "hwa", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Wané", + Comment = null, }, new() { Id = "hwc", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Hawai'i Creole English", + Comment = null, }, new() { Id = "hwo", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Hwana", + Comment = null, }, new() { Id = "hya", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Hya", + Comment = null, }, new() { @@ -18032,99 +27738,150 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Armenian", + Comment = null, }, new() { Id = "hyw", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Western Armenian", + Comment = null, }, new() { Id = "iai", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Iaai", + Comment = null, }, new() { Id = "ian", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Iatmul", + Comment = null, }, new() { Id = "iar", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Purari", + Comment = null, }, new() { Id = "iba", Part2B = "iba", Part2T = "iba", + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Iban", + Comment = null, }, new() { Id = "ibb", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Ibibio", + Comment = null, }, new() { Id = "ibd", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Iwaidja", + Comment = null, }, new() { Id = "ibe", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Akpes", + Comment = null, }, new() { Id = "ibg", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Ibanag", + Comment = null, }, new() { Id = "ibh", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Bih", + Comment = null, }, new() { Id = "ibl", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Ibaloi", + Comment = null, }, new() { Id = "ibm", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Agoi", + Comment = null, }, new() { Id = "ibn", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Ibino", + Comment = null, }, new() { @@ -18135,97 +27892,150 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Igbo", + Comment = null, }, new() { Id = "ibr", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Ibuoro", + Comment = null, }, new() { Id = "ibu", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Ibu", + Comment = null, }, new() { Id = "iby", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Ibani", + Comment = null, }, new() { Id = "ica", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Ede Ica", + Comment = null, }, new() { Id = "ich", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Etkywan", + Comment = null, }, new() { Id = "icl", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Icelandic Sign Language", + Comment = null, }, new() { Id = "icr", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Islander Creole English", + Comment = null, }, new() { Id = "ida", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Idakho-Isukha-Tiriki", + Comment = null, }, new() { Id = "idb", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Indo-Portuguese", + Comment = null, }, new() { Id = "idc", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Idon", + Comment = null, }, new() { Id = "idd", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Ede Idaca", + Comment = null, }, new() { Id = "ide", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Idere", + Comment = null, }, new() { Id = "idi", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Idi", + Comment = null, }, new() { @@ -18236,181 +28046,282 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "C", RefName = "Ido", + Comment = null, }, new() { Id = "idr", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Indri", + Comment = null, }, new() { Id = "ids", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Idesa", + Comment = null, }, new() { Id = "idt", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Idaté", + Comment = null, }, new() { Id = "idu", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Idoma", + Comment = null, }, new() { Id = "ifa", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Amganad Ifugao", + Comment = null, }, new() { Id = "ifb", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Batad Ifugao", + Comment = null, }, new() { Id = "ife", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Ifè", + Comment = null, }, new() { Id = "iff", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Ifo", + Comment = null, }, new() { Id = "ifk", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Tuwali Ifugao", + Comment = null, }, new() { Id = "ifm", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Teke-Fuumu", + Comment = null, }, new() { Id = "ifu", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Mayoyao Ifugao", + Comment = null, }, new() { Id = "ify", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Keley-I Kallahan", + Comment = null, }, new() { Id = "igb", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Ebira", + Comment = null, }, new() { Id = "ige", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Igede", + Comment = null, }, new() { Id = "igg", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Igana", + Comment = null, }, new() { Id = "igl", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Igala", + Comment = null, }, new() { Id = "igm", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kanggape", + Comment = null, }, new() { Id = "ign", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Ignaciano", + Comment = null, }, new() { Id = "igo", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Isebe", + Comment = null, }, new() { Id = "igs", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "C", RefName = "Interglossa", + Comment = null, }, new() { Id = "igw", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Igwe", + Comment = null, }, new() { Id = "ihb", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Iha Based Pidgin", + Comment = null, }, new() { Id = "ihi", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Ihievbe", + Comment = null, }, new() { Id = "ihp", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Iha", + Comment = null, }, new() { Id = "ihw", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Bidhawal", + Comment = null, }, new() { @@ -18421,118 +28332,183 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sichuan Yi", + Comment = null, }, new() { Id = "iin", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Thiin", + Comment = null, }, new() { Id = "ijc", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Izon", + Comment = null, }, new() { Id = "ije", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Biseni", + Comment = null, }, new() { Id = "ijj", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Ede Ije", + Comment = null, }, new() { Id = "ijn", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kalabari", + Comment = null, }, new() { Id = "ijs", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Southeast Ijo", + Comment = null, }, new() { Id = "ike", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Eastern Canadian Inuktitut", + Comment = null, }, new() { Id = "ikh", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Ikhin-Arokho", + Comment = null, }, new() { Id = "iki", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Iko", + Comment = null, }, new() { Id = "ikk", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Ika", + Comment = null, }, new() { Id = "ikl", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Ikulu", + Comment = null, }, new() { Id = "iko", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Olulumo-Ikom", + Comment = null, }, new() { Id = "ikp", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Ikpeshi", + Comment = null, }, new() { Id = "ikr", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Ikaranggal", + Comment = null, }, new() { Id = "iks", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Inuit Sign Language", + Comment = null, }, new() { Id = "ikt", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Inuinnaqtun", + Comment = null, }, new() { @@ -18543,48 +28519,73 @@ public static Iso6393Data Create() => Scope = "M", LanguageType = "L", RefName = "Inuktitut", + Comment = null, }, new() { Id = "ikv", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Iku-Gora-Ankwa", + Comment = null, }, new() { Id = "ikw", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Ikwere", + Comment = null, }, new() { Id = "ikx", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Ik", + Comment = null, }, new() { Id = "ikz", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Ikizu", + Comment = null, }, new() { Id = "ila", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Ile Ape", + Comment = null, }, new() { Id = "ilb", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Ila", + Comment = null, }, new() { @@ -18595,134 +28596,205 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "C", RefName = "Interlingue", + Comment = null, }, new() { Id = "ilg", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Garig-Ilgar", + Comment = null, }, new() { Id = "ili", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Ili Turki", + Comment = null, }, new() { Id = "ilk", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Ilongot", + Comment = null, }, new() { Id = "ilm", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Iranun (Malaysia)", + Comment = null, }, new() { Id = "ilo", Part2B = "ilo", Part2T = "ilo", + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Iloko", + Comment = null, }, new() { Id = "ilp", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Iranun (Philippines)", + Comment = null, }, new() { Id = "ils", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "International Sign", + Comment = null, }, new() { Id = "ilu", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Ili'uun", + Comment = null, }, new() { Id = "ilv", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Ilue", + Comment = null, }, new() { Id = "ima", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Mala Malasar", + Comment = null, }, new() { Id = "imi", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Anamgura", + Comment = null, }, new() { Id = "iml", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Miluk", + Comment = null, }, new() { Id = "imn", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Imonda", + Comment = null, }, new() { Id = "imo", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Imbongu", + Comment = null, }, new() { Id = "imr", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Imroing", + Comment = null, }, new() { Id = "ims", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "H", RefName = "Marsian", + Comment = null, }, new() { Id = "imt", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Imotong", + Comment = null, }, new() { Id = "imy", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "H", RefName = "Milyan", + Comment = null, }, new() { @@ -18733,13 +28805,18 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "C", RefName = "Interlingua (International Auxiliary Language Association)", + Comment = null, }, new() { Id = "inb", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Inga", + Comment = null, }, new() { @@ -18750,113 +28827,172 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Indonesian", + Comment = null, }, new() { Id = "ing", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Degexit'an", + Comment = null, }, new() { Id = "inh", Part2B = "inh", Part2T = "inh", + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Ingush", + Comment = null, }, new() { Id = "inj", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Jungle Inga", + Comment = null, }, new() { Id = "inl", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Indonesian Sign Language", + Comment = null, }, new() { Id = "inm", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "H", RefName = "Minaean", + Comment = null, }, new() { Id = "inn", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Isinai", + Comment = null, }, new() { Id = "ino", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Inoke-Yate", + Comment = null, }, new() { Id = "inp", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Iñapari", + Comment = null, }, new() { Id = "ins", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Indian Sign Language", + Comment = null, }, new() { Id = "int", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Intha", + Comment = null, }, new() { Id = "inz", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Ineseño", + Comment = null, }, new() { Id = "ior", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Inor", + Comment = null, }, new() { Id = "iou", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Tuma-Irumu", + Comment = null, }, new() { Id = "iow", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Iowa-Oto", + Comment = null, }, new() { Id = "ipi", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Ipili", + Comment = null, }, new() { @@ -18867,146 +29003,227 @@ public static Iso6393Data Create() => Scope = "M", LanguageType = "L", RefName = "Inupiaq", + Comment = null, }, new() { Id = "ipo", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Ipiko", + Comment = null, }, new() { Id = "iqu", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Iquito", + Comment = null, }, new() { Id = "iqw", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Ikwo", + Comment = null, }, new() { Id = "ire", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Iresim", + Comment = null, }, new() { Id = "irh", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Irarutu", + Comment = null, }, new() { Id = "iri", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Rigwe", + Comment = null, }, new() { Id = "irk", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Iraqw", + Comment = null, }, new() { Id = "irn", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Irántxe", + Comment = null, }, new() { Id = "irr", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Ir", + Comment = null, }, new() { Id = "iru", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Irula", + Comment = null, }, new() { Id = "irx", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kamberau", + Comment = null, }, new() { Id = "iry", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Iraya", + Comment = null, }, new() { Id = "isa", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Isabi", + Comment = null, }, new() { Id = "isc", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Isconahua", + Comment = null, }, new() { Id = "isd", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Isnag", + Comment = null, }, new() { Id = "ise", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Italian Sign Language", + Comment = null, }, new() { Id = "isg", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Irish Sign Language", + Comment = null, }, new() { Id = "ish", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Esan", + Comment = null, }, new() { Id = "isi", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Nkem-Nkum", + Comment = null, }, new() { Id = "isk", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Ishkashimi", + Comment = null, }, new() { @@ -19017,55 +29234,84 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Icelandic", + Comment = null, }, new() { Id = "ism", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Masimasi", + Comment = null, }, new() { Id = "isn", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Isanzu", + Comment = null, }, new() { Id = "iso", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Isoko", + Comment = null, }, new() { Id = "isr", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Israeli Sign Language", + Comment = null, }, new() { Id = "ist", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Istriot", + Comment = null, }, new() { Id = "isu", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Isu (Menchum Division)", + Comment = null, }, new() { Id = "isv", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "C", RefName = "Interslavic", + Comment = null, }, new() { @@ -19076,349 +29322,546 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Italian", + Comment = null, }, new() { Id = "itb", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Binongan Itneg", + Comment = null, }, new() { Id = "itd", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Southern Tidung", + Comment = null, }, new() { Id = "ite", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Itene", + Comment = null, }, new() { Id = "iti", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Inlaod Itneg", + Comment = null, }, new() { Id = "itk", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Judeo-Italian", + Comment = null, }, new() { Id = "itl", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Itelmen", + Comment = null, }, new() { Id = "itm", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Itu Mbon Uzo", + Comment = null, }, new() { Id = "ito", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Itonama", + Comment = null, }, new() { Id = "itr", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Iteri", + Comment = null, }, new() { Id = "its", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Isekiri", + Comment = null, }, new() { Id = "itt", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Maeng Itneg", + Comment = null, }, new() { Id = "itv", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Itawit", + Comment = null, }, new() { Id = "itw", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Ito", + Comment = null, }, new() { Id = "itx", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Itik", + Comment = null, }, new() { Id = "ity", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Moyadan Itneg", + Comment = null, }, new() { Id = "itz", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Itzá", + Comment = null, }, new() { Id = "ium", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Iu Mien", + Comment = null, }, new() { Id = "ivb", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Ibatan", + Comment = null, }, new() { Id = "ivv", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Ivatan", + Comment = null, }, new() { Id = "iwk", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "I-Wak", + Comment = null, }, new() { Id = "iwm", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Iwam", + Comment = null, }, new() { Id = "iwo", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Iwur", + Comment = null, }, new() { Id = "iws", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Sepik Iwam", + Comment = null, }, new() { Id = "ixc", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Ixcatec", + Comment = null, }, new() { Id = "ixl", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Ixil", + Comment = null, }, new() { Id = "iya", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Iyayu", + Comment = null, }, new() { Id = "iyo", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Mesaka", + Comment = null, }, new() { Id = "iyx", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Yaka (Congo)", + Comment = null, }, new() { Id = "izh", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Ingrian", + Comment = null, }, new() { Id = "izm", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kizamani", + Comment = null, }, new() { Id = "izr", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Izere", + Comment = null, }, new() { Id = "izz", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Izii", + Comment = null, }, new() { Id = "jaa", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Jamamadí", + Comment = null, }, new() { Id = "jab", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Hyam", + Comment = null, }, new() { Id = "jac", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Popti'", + Comment = null, }, new() { Id = "jad", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Jahanka", + Comment = null, }, new() { Id = "jae", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Yabem", + Comment = null, }, new() { Id = "jaf", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Jara", + Comment = null, }, new() { Id = "jah", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Jah Hut", + Comment = null, }, new() { Id = "jaj", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Zazao", + Comment = null, }, new() { Id = "jak", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Jakun", + Comment = null, }, new() { Id = "jal", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Yalahatan", + Comment = null, }, new() { Id = "jam", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Jamaican Creole English", + Comment = null, }, new() { Id = "jan", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Jandai", + Comment = null, }, new() { Id = "jao", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Yanyuwa", + Comment = null, }, new() { Id = "jaq", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Yaqay", + Comment = null, }, new() { Id = "jas", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "New Caledonian Javanese", + Comment = null, }, new() { Id = "jat", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Jakati", + Comment = null, }, new() { Id = "jau", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Yaur", + Comment = null, }, new() { @@ -19429,617 +29872,964 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Javanese", + Comment = null, }, new() { Id = "jax", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Jambi Malay", + Comment = null, }, new() { Id = "jay", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Yan-nhangu", + Comment = null, }, new() { Id = "jaz", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Jawe", + Comment = null, }, new() { Id = "jbe", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Judeo-Berber", + Comment = null, }, new() { Id = "jbi", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Badjiri", + Comment = null, }, new() { Id = "jbj", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Arandai", + Comment = null, }, new() { Id = "jbk", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Barikewa", + Comment = null, }, new() { Id = "jbm", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Bijim", + Comment = null, }, new() { Id = "jbn", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Nafusi", + Comment = null, }, new() { Id = "jbo", Part2B = "jbo", Part2T = "jbo", + Part1 = null, Scope = "I", LanguageType = "C", RefName = "Lojban", + Comment = null, }, new() { Id = "jbr", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Jofotek-Bromnya", + Comment = null, }, new() { Id = "jbt", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Jabutí", + Comment = null, }, new() { Id = "jbu", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Jukun Takum", + Comment = null, }, new() { Id = "jbw", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Yawijibaya", + Comment = null, }, new() { Id = "jcs", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Jamaican Country Sign Language", + Comment = null, }, new() { Id = "jct", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Krymchak", + Comment = null, }, new() { Id = "jda", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Jad", + Comment = null, }, new() { Id = "jdg", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Jadgali", + Comment = null, }, new() { Id = "jdt", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Judeo-Tat", + Comment = null, }, new() { Id = "jeb", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Jebero", + Comment = null, }, new() { Id = "jee", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Jerung", + Comment = null, }, new() { Id = "jeh", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Jeh", + Comment = null, }, new() { Id = "jei", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Yei", + Comment = null, }, new() { Id = "jek", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Jeri Kuo", + Comment = null, }, new() { Id = "jel", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Yelmek", + Comment = null, }, new() { Id = "jen", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Dza", + Comment = null, }, new() { Id = "jer", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Jere", + Comment = null, }, new() { Id = "jet", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Manem", + Comment = null, }, new() { Id = "jeu", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Jonkor Bourmataguil", + Comment = null, }, new() { Id = "jgb", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Ngbee", + Comment = null, }, new() { Id = "jge", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Judeo-Georgian", + Comment = null, }, new() { Id = "jgk", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Gwak", + Comment = null, }, new() { Id = "jgo", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Ngomba", + Comment = null, }, new() { Id = "jhi", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Jehai", + Comment = null, }, new() { Id = "jhs", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Jhankot Sign Language", + Comment = null, }, new() { Id = "jia", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Jina", + Comment = null, }, new() { Id = "jib", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Jibu", + Comment = null, }, new() { Id = "jic", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Tol", + Comment = null, }, new() { Id = "jid", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Bu (Kaduna State)", + Comment = null, }, new() { Id = "jie", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Jilbe", + Comment = null, }, new() { Id = "jig", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Jingulu", + Comment = null, }, new() { Id = "jih", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "sTodsde", + Comment = null, }, new() { Id = "jii", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Jiiddu", + Comment = null, }, new() { Id = "jil", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Jilim", + Comment = null, }, new() { Id = "jim", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Jimi (Cameroon)", + Comment = null, }, new() { Id = "jio", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Jiamao", + Comment = null, }, new() { Id = "jiq", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Guanyinqiao", + Comment = null, }, new() { Id = "jit", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Jita", + Comment = null, }, new() { Id = "jiu", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Youle Jinuo", + Comment = null, }, new() { Id = "jiv", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Shuar", + Comment = null, }, new() { Id = "jiy", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Buyuan Jinuo", + Comment = null, }, new() { Id = "jje", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Jejueo", + Comment = null, }, new() { Id = "jjr", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Bankal", + Comment = null, }, new() { Id = "jka", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kaera", + Comment = null, }, new() { Id = "jkm", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Mobwa Karen", + Comment = null, }, new() { Id = "jko", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kubo", + Comment = null, }, new() { Id = "jkp", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Paku Karen", + Comment = null, }, new() { Id = "jkr", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Koro (India)", + Comment = null, }, new() { Id = "jks", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Amami Koniya Sign Language", + Comment = null, }, new() { Id = "jku", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Labir", + Comment = null, }, new() { Id = "jle", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Ngile", + Comment = null, }, new() { Id = "jls", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Jamaican Sign Language", + Comment = null, }, new() { Id = "jma", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Dima", + Comment = null, }, new() { Id = "jmb", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Zumbun", + Comment = null, }, new() { Id = "jmc", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Machame", + Comment = null, }, new() { Id = "jmd", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Yamdena", + Comment = null, }, new() { Id = "jmi", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Jimi (Nigeria)", + Comment = null, }, new() { Id = "jml", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Jumli", + Comment = null, }, new() { Id = "jmn", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Makuri Naga", + Comment = null, }, new() { Id = "jmr", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kamara", + Comment = null, }, new() { Id = "jms", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Mashi (Nigeria)", + Comment = null, }, new() { Id = "jmw", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Mouwase", + Comment = null, }, new() { Id = "jmx", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Western Juxtlahuaca Mixtec", + Comment = null, }, new() { Id = "jna", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Jangshung", + Comment = null, }, new() { Id = "jnd", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Jandavra", + Comment = null, }, new() { Id = "jng", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Yangman", + Comment = null, }, new() { Id = "jni", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Janji", + Comment = null, }, new() { Id = "jnj", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Yemsa", + Comment = null, }, new() { Id = "jnl", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Rawat", + Comment = null, }, new() { Id = "jns", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Jaunsari", + Comment = null, }, new() { Id = "job", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Joba", + Comment = null, }, new() { Id = "jod", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Wojenaka", + Comment = null, }, new() { Id = "jog", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Jogi", + Comment = null, }, new() { Id = "jor", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Jorá", + Comment = null, }, new() { Id = "jos", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Jordanian Sign Language", + Comment = null, }, new() { Id = "jow", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Jowulu", + Comment = null, }, new() { Id = "jpa", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "H", RefName = "Jewish Palestinian Aramaic", + Comment = null, }, new() { @@ -20050,317 +30840,480 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Japanese", + Comment = null, }, new() { Id = "jpr", Part2B = "jpr", Part2T = "jpr", + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Judeo-Persian", + Comment = null, }, new() { Id = "jqr", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Jaqaru", + Comment = null, }, new() { Id = "jra", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Jarai", + Comment = null, }, new() { Id = "jrb", Part2B = "jrb", Part2T = "jrb", + Part1 = null, Scope = "M", LanguageType = "L", RefName = "Judeo-Arabic", + Comment = null, }, new() { Id = "jrr", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Jiru", + Comment = null, }, new() { Id = "jrt", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Jakattoe", + Comment = null, }, new() { Id = "jru", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Japrería", + Comment = null, }, new() { Id = "jsl", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Japanese Sign Language", + Comment = null, }, new() { Id = "jua", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Júma", + Comment = null, }, new() { Id = "jub", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Wannu", + Comment = null, }, new() { Id = "juc", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "H", RefName = "Jurchen", + Comment = null, }, new() { Id = "jud", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Worodougou", + Comment = null, }, new() { Id = "juh", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Hõne", + Comment = null, }, new() { Id = "jui", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Ngadjuri", + Comment = null, }, new() { Id = "juk", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Wapan", + Comment = null, }, new() { Id = "jul", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Jirel", + Comment = null, }, new() { Id = "jum", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Jumjum", + Comment = null, }, new() { Id = "jun", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Juang", + Comment = null, }, new() { Id = "juo", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Jiba", + Comment = null, }, new() { Id = "jup", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Hupdë", + Comment = null, }, new() { Id = "jur", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Jurúna", + Comment = null, }, new() { Id = "jus", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Jumla Sign Language", + Comment = null, }, new() { Id = "jut", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "H", RefName = "Jutish", + Comment = null, }, new() { Id = "juu", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Ju", + Comment = null, }, new() { Id = "juw", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Wãpha", + Comment = null, }, new() { Id = "juy", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Juray", + Comment = null, }, new() { Id = "jvd", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Javindo", + Comment = null, }, new() { Id = "jvn", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Caribbean Javanese", + Comment = null, }, new() { Id = "jwi", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Jwira-Pepesa", + Comment = null, }, new() { Id = "jya", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Jiarong", + Comment = null, }, new() { Id = "jye", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Judeo-Yemeni Arabic", + Comment = null, }, new() { Id = "jyy", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Jaya", + Comment = null, }, new() { Id = "kaa", Part2B = "kaa", Part2T = "kaa", + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kara-Kalpak", + Comment = null, }, new() { Id = "kab", Part2B = "kab", Part2T = "kab", + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kabyle", + Comment = null, }, new() { Id = "kac", Part2B = "kac", Part2T = "kac", + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kachin", + Comment = null, }, new() { Id = "kad", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Adara", + Comment = null, }, new() { Id = "kae", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Ketangalan", + Comment = null, }, new() { Id = "kaf", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Katso", + Comment = null, }, new() { Id = "kag", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kajaman", + Comment = null, }, new() { Id = "kah", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kara (Central African Republic)", + Comment = null, }, new() { Id = "kai", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Karekare", + Comment = null, }, new() { Id = "kaj", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Jju", + Comment = null, }, new() { Id = "kak", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kalanguya", + Comment = null, }, new() { @@ -20371,15 +31324,18 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kalaallisut", + Comment = null, }, new() { Id = "kam", Part2B = "kam", Part2T = "kam", + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kamba (Kenya)", + Comment = null, }, new() { @@ -20390,27 +31346,40 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kannada", + Comment = null, }, new() { Id = "kao", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Xaasongaxango", + Comment = null, }, new() { Id = "kap", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Bezhta", + Comment = null, }, new() { Id = "kaq", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Capanahua", + Comment = null, }, new() { @@ -20421,6 +31390,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kashmiri", + Comment = null, }, new() { @@ -20431,6 +31401,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Georgian", + Comment = null, }, new() { @@ -20441,36 +31412,51 @@ public static Iso6393Data Create() => Scope = "M", LanguageType = "L", RefName = "Kanuri", + Comment = null, }, new() { Id = "kav", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Katukína", + Comment = null, }, new() { Id = "kaw", Part2B = "kaw", Part2T = "kaw", + Part1 = null, Scope = "I", LanguageType = "H", RefName = "Kawi", + Comment = null, }, new() { Id = "kax", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kao", + Comment = null, }, new() { Id = "kay", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kamayurá", + Comment = null, }, new() { @@ -20481,1109 +31467,1734 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kazakh", + Comment = null, }, new() { Id = "kba", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Kalarko", + Comment = null, }, new() { Id = "kbb", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Kaxuiâna", + Comment = null, }, new() { Id = "kbc", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kadiwéu", + Comment = null, }, new() { Id = "kbd", Part2B = "kbd", Part2T = "kbd", + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kabardian", + Comment = null, }, new() { Id = "kbe", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kanju", + Comment = null, }, new() { Id = "kbg", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Khamba", + Comment = null, }, new() { Id = "kbh", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Camsá", + Comment = null, }, new() { Id = "kbi", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kaptiau", + Comment = null, }, new() { Id = "kbj", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kari", + Comment = null, }, new() { Id = "kbk", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Grass Koiari", + Comment = null, }, new() { Id = "kbl", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kanembu", + Comment = null, }, new() { Id = "kbm", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Iwal", + Comment = null, }, new() { Id = "kbn", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kare (Central African Republic)", + Comment = null, }, new() { Id = "kbo", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Keliko", + Comment = null, }, new() { Id = "kbp", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kabiyè", + Comment = null, }, new() { Id = "kbq", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kamano", + Comment = null, }, new() { Id = "kbr", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kafa", + Comment = null, }, new() { Id = "kbs", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kande", + Comment = null, }, new() { Id = "kbt", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Abadi", + Comment = null, }, new() { Id = "kbu", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kabutra", + Comment = null, }, new() { Id = "kbv", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Dera (Indonesia)", + Comment = null, }, new() { Id = "kbw", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kaiep", + Comment = null, }, new() { Id = "kbx", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Ap Ma", + Comment = null, }, new() { Id = "kby", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Manga Kanuri", + Comment = null, }, new() { Id = "kbz", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Duhwa", + Comment = null, }, new() { Id = "kca", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Khanty", + Comment = null, }, new() { Id = "kcb", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kawacha", + Comment = null, }, new() { Id = "kcc", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Lubila", + Comment = null, }, new() { Id = "kcd", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Ngkâlmpw Kanum", + Comment = null, }, new() { Id = "kce", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kaivi", + Comment = null, }, new() { Id = "kcf", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Ukaan", + Comment = null, }, new() { Id = "kcg", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Tyap", + Comment = null, }, new() { Id = "kch", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Vono", + Comment = null, }, new() { Id = "kci", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Ngyian", + Comment = null, }, new() { Id = "kcj", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kobiana", + Comment = null, }, new() { Id = "kck", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kalanga", + Comment = null, }, new() { Id = "kcl", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kela (Papua New Guinea)", + Comment = null, }, new() { Id = "kcm", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Gula (Central African Republic)", + Comment = null, }, new() { Id = "kcn", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Nubi", + Comment = null, }, new() { Id = "kco", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kinalakna", + Comment = null, }, new() { Id = "kcp", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kanga", + Comment = null, }, new() { Id = "kcq", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kamo", + Comment = null, }, new() { Id = "kcr", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Katla", + Comment = null, }, new() { Id = "kcs", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Koenoem", + Comment = null, }, new() { Id = "kct", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kaian", + Comment = null, }, new() { Id = "kcu", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kami (Tanzania)", + Comment = null, }, new() { Id = "kcv", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kete", + Comment = null, }, new() { Id = "kcw", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kabwari", + Comment = null, }, new() { Id = "kcx", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kachama-Ganjule", + Comment = null, }, new() { Id = "kcy", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Korandje", + Comment = null, }, new() { Id = "kcz", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Konongo", + Comment = null, }, new() { Id = "kda", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Worimi", + Comment = null, }, new() { Id = "kdc", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kutu", + Comment = null, }, new() { Id = "kdd", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Yankunytjatjara", + Comment = null, }, new() { Id = "kde", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Makonde", + Comment = null, }, new() { Id = "kdf", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Mamusi", + Comment = null, }, new() { Id = "kdg", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Seba", + Comment = null, }, new() { Id = "kdh", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Tem", + Comment = null, }, new() { Id = "kdi", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kumam", + Comment = null, }, new() { Id = "kdj", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Karamojong", + Comment = null, }, new() { Id = "kdk", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Numèè", + Comment = null, }, new() { Id = "kdl", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Tsikimba", + Comment = null, }, new() { Id = "kdm", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kagoma", + Comment = null, }, new() { Id = "kdn", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kunda", + Comment = null, }, new() { Id = "kdp", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kaningdon-Nindem", + Comment = null, }, new() { Id = "kdq", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Koch", + Comment = null, }, new() { Id = "kdr", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Karaim", + Comment = null, }, new() { Id = "kdt", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kuy", + Comment = null, }, new() { Id = "kdu", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kadaru", + Comment = null, }, new() { Id = "kdw", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Koneraw", + Comment = null, }, new() { Id = "kdx", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kam", + Comment = null, }, new() { Id = "kdy", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Keder", + Comment = null, }, new() { Id = "kdz", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kwaja", + Comment = null, }, new() { Id = "kea", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kabuverdianu", + Comment = null, }, new() { Id = "keb", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kélé", + Comment = null, }, new() { Id = "kec", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Keiga", + Comment = null, }, new() { Id = "ked", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kerewe", + Comment = null, }, new() { Id = "kee", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Eastern Keres", + Comment = null, }, new() { Id = "kef", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kpessi", + Comment = null, }, new() { Id = "keg", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Tese", + Comment = null, }, new() { Id = "keh", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Keak", + Comment = null, }, new() { Id = "kei", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kei", + Comment = null, }, new() { Id = "kej", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kadar", + Comment = null, }, new() { Id = "kek", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kekchí", + Comment = null, }, new() { Id = "kel", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kela (Democratic Republic of Congo)", + Comment = null, }, new() { Id = "kem", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kemak", + Comment = null, }, new() { Id = "ken", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kenyang", + Comment = null, }, new() { Id = "keo", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kakwa", + Comment = null, }, new() { Id = "kep", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kaikadi", + Comment = null, }, new() { Id = "keq", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kamar", + Comment = null, }, new() { Id = "ker", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kera", + Comment = null, }, new() { Id = "kes", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kugbo", + Comment = null, }, new() { Id = "ket", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Ket", + Comment = null, }, new() { Id = "keu", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Akebu", + Comment = null, }, new() { Id = "kev", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kanikkaran", + Comment = null, }, new() { Id = "kew", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "West Kewa", + Comment = null, }, new() { Id = "kex", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kukna", + Comment = null, }, new() { Id = "key", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kupia", + Comment = null, }, new() { Id = "kez", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kukele", + Comment = null, }, new() { Id = "kfa", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kodava", + Comment = null, }, new() { Id = "kfb", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Northwestern Kolami", + Comment = null, }, new() { Id = "kfc", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Konda-Dora", + Comment = null, }, new() { Id = "kfd", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Korra Koraga", + Comment = null, }, new() { Id = "kfe", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kota (India)", + Comment = null, }, new() { Id = "kff", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Koya", + Comment = null, }, new() { Id = "kfg", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kudiya", + Comment = null, }, new() { Id = "kfh", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kurichiya", + Comment = null, }, new() { Id = "kfi", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kannada Kurumba", + Comment = null, }, new() { Id = "kfj", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kemiehua", + Comment = null, }, new() { Id = "kfk", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kinnauri", + Comment = null, }, new() { Id = "kfl", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kung", + Comment = null, }, new() { Id = "kfm", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Khunsari", + Comment = null, }, new() { Id = "kfn", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kuk", + Comment = null, }, new() { Id = "kfo", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Koro (Côte d'Ivoire)", + Comment = null, }, new() { Id = "kfp", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Korwa", + Comment = null, }, new() { Id = "kfq", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Korku", + Comment = null, }, new() { Id = "kfr", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kachhi", + Comment = null, }, new() { Id = "kfs", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Bilaspuri", + Comment = null, }, new() { Id = "kft", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kanjari", + Comment = null, }, new() { Id = "kfu", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Katkari", + Comment = null, }, new() { Id = "kfv", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kurmukar", + Comment = null, }, new() { Id = "kfw", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kharam Naga", + Comment = null, }, new() { Id = "kfx", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kullu Pahari", + Comment = null, }, new() { Id = "kfy", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kumaoni", + Comment = null, }, new() { Id = "kfz", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Koromfé", + Comment = null, }, new() { Id = "kga", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Koyaga", + Comment = null, }, new() { Id = "kgb", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kawe", + Comment = null, }, new() { Id = "kge", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Komering", + Comment = null, }, new() { Id = "kgf", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kube", + Comment = null, }, new() { Id = "kgg", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kusunda", + Comment = null, }, new() { Id = "kgi", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Selangor Sign Language", + Comment = null, }, new() { Id = "kgj", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Gamale Kham", + Comment = null, }, new() { Id = "kgk", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kaiwá", + Comment = null, }, new() { Id = "kgl", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Kunggari", + Comment = null, }, new() { Id = "kgn", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Karingani", + Comment = null, }, new() { Id = "kgo", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Krongo", + Comment = null, }, new() { Id = "kgp", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kaingang", + Comment = null, }, new() { Id = "kgq", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kamoro", + Comment = null, }, new() { Id = "kgr", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Abun", + Comment = null, }, new() { Id = "kgs", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kumbainggar", + Comment = null, }, new() { Id = "kgt", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Somyev", + Comment = null, }, new() { Id = "kgu", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kobol", + Comment = null, }, new() { Id = "kgv", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Karas", + Comment = null, }, new() { Id = "kgw", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Karon Dori", + Comment = null, }, new() { Id = "kgx", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kamaru", + Comment = null, }, new() { Id = "kgy", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kyerung", + Comment = null, }, new() { Id = "kha", Part2B = "kha", Part2T = "kha", + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Khasi", + Comment = null, }, new() { Id = "khb", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Lü", + Comment = null, }, new() { Id = "khc", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Tukang Besi North", + Comment = null, }, new() { Id = "khd", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Bädi Kanum", + Comment = null, }, new() { Id = "khe", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Korowai", + Comment = null, }, new() { Id = "khf", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Khuen", + Comment = null, }, new() { Id = "khg", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Khams Tibetan", + Comment = null, }, new() { Id = "khh", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kehu", + Comment = null, }, new() { Id = "khj", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kuturmi", + Comment = null, }, new() { Id = "khk", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Halh Mongolian", + Comment = null, }, new() { Id = "khl", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Lusi", + Comment = null, }, new() { @@ -21594,169 +33205,260 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Khmer", + Comment = null, }, new() { Id = "khn", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Khandesi", + Comment = null, }, new() { Id = "kho", Part2B = "kho", Part2T = "kho", + Part1 = null, Scope = "I", LanguageType = "H", RefName = "Khotanese", + Comment = null, }, new() { Id = "khp", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kapori", + Comment = null, }, new() { Id = "khq", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Koyra Chiini Songhay", + Comment = null, }, new() { Id = "khr", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kharia", + Comment = null, }, new() { Id = "khs", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kasua", + Comment = null, }, new() { Id = "kht", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Khamti", + Comment = null, }, new() { Id = "khu", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Nkhumbi", + Comment = null, }, new() { Id = "khv", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Khvarshi", + Comment = null, }, new() { Id = "khw", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Khowar", + Comment = null, }, new() { Id = "khx", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kanu", + Comment = null, }, new() { Id = "khy", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kele (Democratic Republic of Congo)", + Comment = null, }, new() { Id = "khz", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Keapara", + Comment = null, }, new() { Id = "kia", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kim", + Comment = null, }, new() { Id = "kib", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Koalib", + Comment = null, }, new() { Id = "kic", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kickapoo", + Comment = null, }, new() { Id = "kid", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Koshin", + Comment = null, }, new() { Id = "kie", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kibet", + Comment = null, }, new() { Id = "kif", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Eastern Parbate Kham", + Comment = null, }, new() { Id = "kig", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kimaama", + Comment = null, }, new() { Id = "kih", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kilmeri", + Comment = null, }, new() { Id = "kii", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Kitsai", + Comment = null, }, new() { Id = "kij", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kilivila", + Comment = null, }, new() { @@ -21767,20 +33469,29 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kikuyu", + Comment = null, }, new() { Id = "kil", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kariya", + Comment = null, }, new() { Id = "kim", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Karagas", + Comment = null, }, new() { @@ -21791,27 +33502,40 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kinyarwanda", + Comment = null, }, new() { Id = "kio", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kiowa", + Comment = null, }, new() { Id = "kip", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Sheshi Kham", + Comment = null, }, new() { Id = "kiq", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kosadle", + Comment = null, }, new() { @@ -21822,1025 +33546,1602 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kirghiz", + Comment = null, }, new() { Id = "kis", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kis", + Comment = null, }, new() { Id = "kit", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Agob", + Comment = null, }, new() { Id = "kiu", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kirmanjki (individual language)", + Comment = null, }, new() { Id = "kiv", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kimbu", + Comment = null, }, new() { Id = "kiw", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Northeast Kiwai", + Comment = null, }, new() { Id = "kix", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Khiamniungan Naga", + Comment = null, }, new() { Id = "kiy", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kirikiri", + Comment = null, }, new() { Id = "kiz", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kisi", + Comment = null, }, new() { Id = "kja", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Mlap", + Comment = null, }, new() { Id = "kjb", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Q'anjob'al", + Comment = null, }, new() { Id = "kjc", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Coastal Konjo", + Comment = null, }, new() { Id = "kjd", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Southern Kiwai", + Comment = null, }, new() { Id = "kje", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kisar", + Comment = null, }, new() { Id = "kjg", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Khmu", + Comment = null, }, new() { Id = "kjh", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Khakas", + Comment = null, }, new() { Id = "kji", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Zabana", + Comment = null, }, new() { Id = "kjj", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Khinalugh", + Comment = null, }, new() { Id = "kjk", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Highland Konjo", + Comment = null, }, new() { Id = "kjl", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Western Parbate Kham", + Comment = null, }, new() { Id = "kjm", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kháng", + Comment = null, }, new() { Id = "kjn", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kunjen", + Comment = null, }, new() { Id = "kjo", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Harijan Kinnauri", + Comment = null, }, new() { Id = "kjp", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Pwo Eastern Karen", + Comment = null, }, new() { Id = "kjq", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Western Keres", + Comment = null, }, new() { Id = "kjr", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kurudu", + Comment = null, }, new() { Id = "kjs", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "East Kewa", + Comment = null, }, new() { Id = "kjt", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Phrae Pwo Karen", + Comment = null, }, new() { Id = "kju", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kashaya", + Comment = null, }, new() { Id = "kjv", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "H", RefName = "Kaikavian Literary Language", + Comment = null, }, new() { Id = "kjx", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Ramopa", + Comment = null, }, new() { Id = "kjy", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Erave", + Comment = null, }, new() { Id = "kjz", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Bumthangkha", + Comment = null, }, new() { Id = "kka", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kakanda", + Comment = null, }, new() { Id = "kkb", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kwerisa", + Comment = null, }, new() { Id = "kkc", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Odoodee", + Comment = null, }, new() { Id = "kkd", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kinuku", + Comment = null, }, new() { Id = "kke", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kakabe", + Comment = null, }, new() { Id = "kkf", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kalaktang Monpa", + Comment = null, }, new() { Id = "kkg", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Mabaka Valley Kalinga", + Comment = null, }, new() { Id = "kkh", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Khün", + Comment = null, }, new() { Id = "kki", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kagulu", + Comment = null, }, new() { Id = "kkj", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kako", + Comment = null, }, new() { Id = "kkk", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kokota", + Comment = null, }, new() { Id = "kkl", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kosarek Yale", + Comment = null, }, new() { Id = "kkm", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kiong", + Comment = null, }, new() { Id = "kkn", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kon Keu", + Comment = null, }, new() { Id = "kko", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Karko", + Comment = null, }, new() { Id = "kkp", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Gugubera", + Comment = null, }, new() { Id = "kkq", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kaeku", + Comment = null, }, new() { Id = "kkr", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kir-Balar", + Comment = null, }, new() { Id = "kks", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Giiwo", + Comment = null, }, new() { Id = "kkt", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Koi", + Comment = null, }, new() { Id = "kku", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Tumi", + Comment = null, }, new() { Id = "kkv", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kangean", + Comment = null, }, new() { Id = "kkw", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Teke-Kukuya", + Comment = null, }, new() { Id = "kkx", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kohin", + Comment = null, }, new() { Id = "kky", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Guugu Yimidhirr", + Comment = null, }, new() { Id = "kkz", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kaska", + Comment = null, }, new() { Id = "kla", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Klamath-Modoc", + Comment = null, }, new() { Id = "klb", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kiliwa", + Comment = null, }, new() { Id = "klc", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kolbila", + Comment = null, }, new() { Id = "kld", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Gamilaraay", + Comment = null, }, new() { Id = "kle", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kulung (Nepal)", + Comment = null, }, new() { Id = "klf", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kendeje", + Comment = null, }, new() { Id = "klg", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Tagakaulo", + Comment = null, }, new() { Id = "klh", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Weliki", + Comment = null, }, new() { Id = "kli", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kalumpang", + Comment = null, }, new() { Id = "klj", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Khalaj", + Comment = null, }, new() { Id = "klk", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kono (Nigeria)", + Comment = null, }, new() { Id = "kll", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kagan Kalagan", + Comment = null, }, new() { Id = "klm", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Migum", + Comment = null, }, new() { Id = "kln", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "M", LanguageType = "L", RefName = "Kalenjin", + Comment = null, }, new() { Id = "klo", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kapya", + Comment = null, }, new() { Id = "klp", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kamasa", + Comment = null, }, new() { Id = "klq", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Rumu", + Comment = null, }, new() { Id = "klr", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Khaling", + Comment = null, }, new() { Id = "kls", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kalasha", + Comment = null, }, new() { Id = "klt", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Nukna", + Comment = null, }, new() { Id = "klu", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Klao", + Comment = null, }, new() { Id = "klv", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Maskelynes", + Comment = null, }, new() { Id = "klw", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Tado", + Comment = null, }, new() { Id = "klx", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Koluwawa", + Comment = null, }, new() { Id = "kly", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kalao", + Comment = null, }, new() { Id = "klz", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kabola", + Comment = null, }, new() { Id = "kma", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Konni", + Comment = null, }, new() { Id = "kmb", Part2B = "kmb", Part2T = "kmb", + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kimbundu", + Comment = null, }, new() { Id = "kmc", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Southern Dong", + Comment = null, }, new() { Id = "kmd", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Majukayang Kalinga", + Comment = null, }, new() { Id = "kme", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Bakole", + Comment = null, }, new() { Id = "kmf", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kare (Papua New Guinea)", + Comment = null, }, new() { Id = "kmg", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kâte", + Comment = null, }, new() { Id = "kmh", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kalam", + Comment = null, }, new() { Id = "kmi", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kami (Nigeria)", + Comment = null, }, new() { Id = "kmj", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kumarbhag Paharia", + Comment = null, }, new() { Id = "kmk", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Limos Kalinga", + Comment = null, }, new() { Id = "kml", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Tanudan Kalinga", + Comment = null, }, new() { Id = "kmm", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kom (India)", + Comment = null, }, new() { Id = "kmn", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Awtuw", + Comment = null, }, new() { Id = "kmo", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kwoma", + Comment = null, }, new() { Id = "kmp", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Gimme", + Comment = null, }, new() { Id = "kmq", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kwama", + Comment = null, }, new() { Id = "kmr", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Northern Kurdish", + Comment = null, }, new() { Id = "kms", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kamasau", + Comment = null, }, new() { Id = "kmt", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kemtuik", + Comment = null, }, new() { Id = "kmu", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kanite", + Comment = null, }, new() { Id = "kmv", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Karipúna Creole French", + Comment = null, }, new() { Id = "kmw", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Komo (Democratic Republic of Congo)", + Comment = null, }, new() { Id = "kmx", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Waboda", + Comment = null, }, new() { Id = "kmy", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Koma", + Comment = null, }, new() { Id = "kmz", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Khorasani Turkish", + Comment = null, }, new() { Id = "kna", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Dera (Nigeria)", + Comment = null, }, new() { Id = "knb", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Lubuagan Kalinga", + Comment = null, }, new() { Id = "knc", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Central Kanuri", + Comment = null, }, new() { Id = "knd", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Konda", + Comment = null, }, new() { Id = "kne", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kankanaey", + Comment = null, }, new() { Id = "knf", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Mankanya", + Comment = null, }, new() { Id = "kng", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Koongo", + Comment = null, }, new() { Id = "kni", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kanufi", + Comment = null, }, new() { Id = "knj", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Western Kanjobal", + Comment = null, }, new() { Id = "knk", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kuranko", + Comment = null, }, new() { Id = "knl", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Keninjal", + Comment = null, }, new() { Id = "knm", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kanamarí", + Comment = null, }, new() { Id = "knn", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Konkani (individual language)", + Comment = null, }, new() { Id = "kno", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kono (Sierra Leone)", + Comment = null, }, new() { Id = "knp", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kwanja", + Comment = null, }, new() { Id = "knq", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kintaq", + Comment = null, }, new() { Id = "knr", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kaningra", + Comment = null, }, new() { Id = "kns", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kensiu", + Comment = null, }, new() { Id = "knt", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Panoan Katukína", + Comment = null, }, new() { Id = "knu", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kono (Guinea)", + Comment = null, }, new() { Id = "knv", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Tabo", + Comment = null, }, new() { Id = "knw", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kung-Ekoka", + Comment = null, }, new() { Id = "knx", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kendayan", + Comment = null, }, new() { Id = "kny", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kanyok", + Comment = null, }, new() { Id = "knz", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kalamsé", + Comment = null, }, new() { Id = "koa", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Konomala", + Comment = null, }, new() { Id = "koc", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Kpati", + Comment = null, }, new() { Id = "kod", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kodi", + Comment = null, }, new() { Id = "koe", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kacipo-Bale Suri", + Comment = null, }, new() { Id = "kof", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Kubi", + Comment = null, }, new() { Id = "kog", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Cogui", + Comment = null, }, new() { Id = "koh", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Koyo", + Comment = null, }, new() { Id = "koi", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Komi-Permyak", + Comment = null, }, new() { Id = "kok", Part2B = "kok", Part2T = "kok", + Part1 = null, Scope = "M", LanguageType = "L", RefName = "Konkani (macrolanguage)", + Comment = null, }, new() { Id = "kol", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kol (Papua New Guinea)", + Comment = null, }, new() { @@ -22851,6 +35152,7 @@ public static Iso6393Data Create() => Scope = "M", LanguageType = "L", RefName = "Komi", + Comment = null, }, new() { @@ -22861,27 +35163,40 @@ public static Iso6393Data Create() => Scope = "M", LanguageType = "L", RefName = "Kongo", + Comment = null, }, new() { Id = "koo", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Konzo", + Comment = null, }, new() { Id = "kop", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Waube", + Comment = null, }, new() { Id = "koq", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kota (Gabon)", + Comment = null, }, new() { @@ -22892,926 +35207,1437 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Korean", + Comment = null, }, new() { Id = "kos", Part2B = "kos", Part2T = "kos", + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kosraean", + Comment = null, }, new() { Id = "kot", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Lagwan", + Comment = null, }, new() { Id = "kou", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Koke", + Comment = null, }, new() { Id = "kov", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kudu-Camo", + Comment = null, }, new() { Id = "kow", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kugama", + Comment = null, }, new() { Id = "koy", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Koyukon", + Comment = null, }, new() { Id = "koz", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Korak", + Comment = null, }, new() { Id = "kpa", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kutto", + Comment = null, }, new() { Id = "kpb", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Mullu Kurumba", + Comment = null, }, new() { Id = "kpc", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Curripaco", + Comment = null, }, new() { Id = "kpd", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Koba", + Comment = null, }, new() { Id = "kpe", Part2B = "kpe", Part2T = "kpe", + Part1 = null, Scope = "M", LanguageType = "L", RefName = "Kpelle", + Comment = null, }, new() { Id = "kpf", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Komba", + Comment = null, }, new() { Id = "kpg", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kapingamarangi", + Comment = null, }, new() { Id = "kph", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kplang", + Comment = null, }, new() { Id = "kpi", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kofei", + Comment = null, }, new() { Id = "kpj", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Karajá", + Comment = null, }, new() { Id = "kpk", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kpan", + Comment = null, }, new() { Id = "kpl", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kpala", + Comment = null, }, new() { Id = "kpm", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Koho", + Comment = null, }, new() { Id = "kpn", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Kepkiriwát", + Comment = null, }, new() { Id = "kpo", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Ikposo", + Comment = null, }, new() { Id = "kpq", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Korupun-Sela", + Comment = null, }, new() { Id = "kpr", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Korafe-Yegha", + Comment = null, }, new() { Id = "kps", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Tehit", + Comment = null, }, new() { Id = "kpt", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Karata", + Comment = null, }, new() { Id = "kpu", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kafoa", + Comment = null, }, new() { Id = "kpv", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Komi-Zyrian", + Comment = null, }, new() { Id = "kpw", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kobon", + Comment = null, }, new() { Id = "kpx", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Mountain Koiali", + Comment = null, }, new() { Id = "kpy", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Koryak", + Comment = null, }, new() { Id = "kpz", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kupsabiny", + Comment = null, }, new() { Id = "kqa", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Mum", + Comment = null, }, new() { Id = "kqb", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kovai", + Comment = null, }, new() { Id = "kqc", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Doromu-Koki", + Comment = null, }, new() { Id = "kqd", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Koy Sanjaq Surat", + Comment = null, }, new() { Id = "kqe", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kalagan", + Comment = null, }, new() { Id = "kqf", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kakabai", + Comment = null, }, new() { Id = "kqg", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Khe", + Comment = null, }, new() { Id = "kqh", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kisankasa", + Comment = null, }, new() { Id = "kqi", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Koitabu", + Comment = null, }, new() { Id = "kqj", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Koromira", + Comment = null, }, new() { Id = "kqk", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kotafon Gbe", + Comment = null, }, new() { Id = "kql", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kyenele", + Comment = null, }, new() { Id = "kqm", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Khisa", + Comment = null, }, new() { Id = "kqn", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kaonde", + Comment = null, }, new() { Id = "kqo", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Eastern Krahn", + Comment = null, }, new() { Id = "kqp", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kimré", + Comment = null, }, new() { Id = "kqq", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Krenak", + Comment = null, }, new() { Id = "kqr", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kimaragang", + Comment = null, }, new() { Id = "kqs", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Northern Kissi", + Comment = null, }, new() { Id = "kqt", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Klias River Kadazan", + Comment = null, }, new() { Id = "kqu", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Seroa", + Comment = null, }, new() { Id = "kqv", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Okolod", + Comment = null, }, new() { Id = "kqw", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kandas", + Comment = null, }, new() { Id = "kqx", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Mser", + Comment = null, }, new() { Id = "kqy", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Koorete", + Comment = null, }, new() { Id = "kqz", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Korana", + Comment = null, }, new() { Id = "kra", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kumhali", + Comment = null, }, new() { Id = "krb", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Karkin", + Comment = null, }, new() { Id = "krc", Part2B = "krc", Part2T = "krc", + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Karachay-Balkar", + Comment = null, }, new() { Id = "krd", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kairui-Midiki", + Comment = null, }, new() { Id = "kre", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Panará", + Comment = null, }, new() { Id = "krf", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Koro (Vanuatu)", + Comment = null, }, new() { Id = "krh", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kurama", + Comment = null, }, new() { Id = "kri", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Krio", + Comment = null, }, new() { Id = "krj", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kinaray-A", + Comment = null, }, new() { Id = "krk", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Kerek", + Comment = null, }, new() { Id = "krl", Part2B = "krl", Part2T = "krl", + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Karelian", + Comment = null, }, new() { Id = "krn", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Sapo", + Comment = null, }, new() { Id = "krp", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Durop", + Comment = null, }, new() { Id = "krr", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Krung", + Comment = null, }, new() { Id = "krs", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Gbaya (Sudan)", + Comment = null, }, new() { Id = "krt", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Tumari Kanuri", + Comment = null, }, new() { Id = "kru", Part2B = "kru", Part2T = "kru", + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kurukh", + Comment = null, }, new() { Id = "krv", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kavet", + Comment = null, }, new() { Id = "krw", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Western Krahn", + Comment = null, }, new() { Id = "krx", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Karon", + Comment = null, }, new() { Id = "kry", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kryts", + Comment = null, }, new() { Id = "krz", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Sota Kanum", + Comment = null, }, new() { Id = "ksb", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Shambala", + Comment = null, }, new() { Id = "ksc", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Southern Kalinga", + Comment = null, }, new() { Id = "ksd", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kuanua", + Comment = null, }, new() { Id = "kse", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kuni", + Comment = null, }, new() { Id = "ksf", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Bafia", + Comment = null, }, new() { Id = "ksg", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kusaghe", + Comment = null, }, new() { Id = "ksh", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kölsch", + Comment = null, }, new() { Id = "ksi", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Krisa", + Comment = null, }, new() { Id = "ksj", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Uare", + Comment = null, }, new() { Id = "ksk", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kansa", + Comment = null, }, new() { Id = "ksl", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kumalu", + Comment = null, }, new() { Id = "ksm", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kumba", + Comment = null, }, new() { Id = "ksn", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kasiguranin", + Comment = null, }, new() { Id = "kso", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kofa", + Comment = null, }, new() { Id = "ksp", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kaba", + Comment = null, }, new() { Id = "ksq", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kwaami", + Comment = null, }, new() { Id = "ksr", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Borong", + Comment = null, }, new() { Id = "kss", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Southern Kisi", + Comment = null, }, new() { Id = "kst", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Winyé", + Comment = null, }, new() { Id = "ksu", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Khamyang", + Comment = null, }, new() { Id = "ksv", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kusu", + Comment = null, }, new() { Id = "ksw", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "S'gaw Karen", + Comment = null, }, new() { Id = "ksx", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kedang", + Comment = null, }, new() { Id = "ksy", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kharia Thar", + Comment = null, }, new() { Id = "ksz", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kodaku", + Comment = null, }, new() { Id = "kta", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Katua", + Comment = null, }, new() { Id = "ktb", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kambaata", + Comment = null, }, new() { Id = "ktc", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kholok", + Comment = null, }, new() { Id = "ktd", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kokata", + Comment = null, }, new() { Id = "kte", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Nubri", + Comment = null, }, new() { Id = "ktf", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kwami", + Comment = null, }, new() { Id = "ktg", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Kalkutung", + Comment = null, }, new() { Id = "kth", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Karanga", + Comment = null, }, new() { Id = "kti", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "North Muyu", + Comment = null, }, new() { Id = "ktj", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Plapo Krumen", + Comment = null, }, new() { Id = "ktk", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Kaniet", + Comment = null, }, new() { Id = "ktl", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Koroshi", + Comment = null, }, new() { Id = "ktm", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kurti", + Comment = null, }, new() { Id = "ktn", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Karitiâna", + Comment = null, }, new() { Id = "kto", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kuot", + Comment = null, }, new() { Id = "ktp", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kaduo", + Comment = null, }, new() { Id = "ktq", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Katabaga", + Comment = null, }, new() { Id = "kts", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "South Muyu", + Comment = null, }, new() { Id = "ktt", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Ketum", + Comment = null, }, new() { Id = "ktu", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kituba (Democratic Republic of Congo)", + Comment = null, }, new() { Id = "ktv", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Eastern Katu", + Comment = null, }, new() { Id = "ktw", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Kato", + Comment = null, }, new() { Id = "ktx", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kaxararí", + Comment = null, }, new() { Id = "kty", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kango (Bas-Uélé District)", + Comment = null, }, new() { Id = "ktz", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Juǀʼhoan", + Comment = null, }, new() { @@ -23822,120 +36648,183 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kuanyama", + Comment = null, }, new() { Id = "kub", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kutep", + Comment = null, }, new() { Id = "kuc", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kwinsu", + Comment = null, }, new() { Id = "kud", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "'Auhelawa", + Comment = null, }, new() { Id = "kue", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kuman (Papua New Guinea)", + Comment = null, }, new() { Id = "kuf", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Western Katu", + Comment = null, }, new() { Id = "kug", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kupa", + Comment = null, }, new() { Id = "kuh", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kushi", + Comment = null, }, new() { Id = "kui", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kuikúro-Kalapálo", + Comment = null, }, new() { Id = "kuj", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kuria", + Comment = null, }, new() { Id = "kuk", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kepo'", + Comment = null, }, new() { Id = "kul", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kulere", + Comment = null, }, new() { Id = "kum", Part2B = "kum", Part2T = "kum", + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kumyk", + Comment = null, }, new() { Id = "kun", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kunama", + Comment = null, }, new() { Id = "kuo", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kumukio", + Comment = null, }, new() { Id = "kup", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kunimaipa", + Comment = null, }, new() { Id = "kuq", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Karipuna", + Comment = null, }, new() { @@ -23946,1008 +36835,1569 @@ public static Iso6393Data Create() => Scope = "M", LanguageType = "L", RefName = "Kurdish", + Comment = null, }, new() { Id = "kus", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kusaal", + Comment = null, }, new() { Id = "kut", Part2B = "kut", Part2T = "kut", + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kutenai", + Comment = null, }, new() { Id = "kuu", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Upper Kuskokwim", + Comment = null, }, new() { Id = "kuv", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kur", + Comment = null, }, new() { Id = "kuw", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kpagua", + Comment = null, }, new() { Id = "kux", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kukatja", + Comment = null, }, new() { Id = "kuy", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kuuku-Ya'u", + Comment = null, }, new() { Id = "kuz", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Kunza", + Comment = null, }, new() { Id = "kva", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Bagvalal", + Comment = null, }, new() { Id = "kvb", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kubu", + Comment = null, }, new() { Id = "kvc", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kove", + Comment = null, }, new() { Id = "kvd", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kui (Indonesia)", + Comment = null, }, new() { Id = "kve", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kalabakan", + Comment = null, }, new() { Id = "kvf", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kabalai", + Comment = null, }, new() { Id = "kvg", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kuni-Boazi", + Comment = null, }, new() { Id = "kvh", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Komodo", + Comment = null, }, new() { Id = "kvi", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kwang", + Comment = null, }, new() { Id = "kvj", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Psikye", + Comment = null, }, new() { Id = "kvk", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Korean Sign Language", + Comment = null, }, new() { Id = "kvl", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kayaw", + Comment = null, }, new() { Id = "kvm", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kendem", + Comment = null, }, new() { Id = "kvn", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Border Kuna", + Comment = null, }, new() { Id = "kvo", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Dobel", + Comment = null, }, new() { Id = "kvp", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kompane", + Comment = null, }, new() { Id = "kvq", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Geba Karen", + Comment = null, }, new() { Id = "kvr", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kerinci", + Comment = null, }, new() { Id = "kvt", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Lahta Karen", + Comment = null, }, new() { Id = "kvu", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Yinbaw Karen", + Comment = null, }, new() { Id = "kvv", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kola", + Comment = null, }, new() { Id = "kvw", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Wersing", + Comment = null, }, new() { Id = "kvx", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Parkari Koli", + Comment = null, }, new() { Id = "kvy", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Yintale Karen", + Comment = null, }, new() { Id = "kvz", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Tsakwambo", + Comment = null, }, new() { Id = "kwa", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Dâw", + Comment = null, }, new() { Id = "kwb", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kwa", + Comment = null, }, new() { Id = "kwc", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Likwala", + Comment = null, }, new() { Id = "kwd", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kwaio", + Comment = null, }, new() { Id = "kwe", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kwerba", + Comment = null, }, new() { Id = "kwf", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kwara'ae", + Comment = null, }, new() { Id = "kwg", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Sara Kaba Deme", + Comment = null, }, new() { Id = "kwh", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kowiai", + Comment = null, }, new() { Id = "kwi", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Awa-Cuaiquer", + Comment = null, }, new() { Id = "kwj", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kwanga", + Comment = null, }, new() { Id = "kwk", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kwak'wala", + Comment = null, }, new() { Id = "kwl", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kofyar", + Comment = null, }, new() { Id = "kwm", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kwambi", + Comment = null, }, new() { Id = "kwn", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kwangali", + Comment = null, }, new() { Id = "kwo", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kwomtari", + Comment = null, }, new() { Id = "kwp", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kodia", + Comment = null, }, new() { Id = "kwr", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kwer", + Comment = null, }, new() { Id = "kws", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kwese", + Comment = null, }, new() { Id = "kwt", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kwesten", + Comment = null, }, new() { Id = "kwu", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kwakum", + Comment = null, }, new() { Id = "kwv", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Sara Kaba Náà", + Comment = null, }, new() { Id = "kww", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kwinti", + Comment = null, }, new() { Id = "kwx", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Khirwar", + Comment = null, }, new() { Id = "kwy", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "San Salvador Kongo", + Comment = null, }, new() { Id = "kwz", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Kwadi", + Comment = null, }, new() { Id = "kxa", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kairiru", + Comment = null, }, new() { Id = "kxb", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Krobu", + Comment = null, }, new() { Id = "kxc", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Konso", + Comment = null, }, new() { Id = "kxd", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Brunei", + Comment = null, }, new() { Id = "kxf", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Manumanaw Karen", + Comment = null, }, new() { Id = "kxh", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Karo (Ethiopia)", + Comment = null, }, new() { Id = "kxi", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Keningau Murut", + Comment = null, }, new() { Id = "kxj", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kulfa", + Comment = null, }, new() { Id = "kxk", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Zayein Karen", + Comment = null, }, new() { Id = "kxm", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Northern Khmer", + Comment = null, }, new() { Id = "kxn", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kanowit-Tanjong Melanau", + Comment = null, }, new() { Id = "kxo", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Kanoé", + Comment = null, }, new() { Id = "kxp", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Wadiyara Koli", + Comment = null, }, new() { Id = "kxq", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Smärky Kanum", + Comment = null, }, new() { Id = "kxr", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Koro (Papua New Guinea)", + Comment = null, }, new() { Id = "kxs", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kangjia", + Comment = null, }, new() { Id = "kxt", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Koiwat", + Comment = null, }, new() { Id = "kxv", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kuvi", + Comment = null, }, new() { Id = "kxw", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Konai", + Comment = null, }, new() { Id = "kxx", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Likuba", + Comment = null, }, new() { Id = "kxy", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kayong", + Comment = null, }, new() { Id = "kxz", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kerewo", + Comment = null, }, new() { Id = "kya", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kwaya", + Comment = null, }, new() { Id = "kyb", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Butbut Kalinga", + Comment = null, }, new() { Id = "kyc", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kyaka", + Comment = null, }, new() { Id = "kyd", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Karey", + Comment = null, }, new() { Id = "kye", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Krache", + Comment = null, }, new() { Id = "kyf", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kouya", + Comment = null, }, new() { Id = "kyg", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Keyagana", + Comment = null, }, new() { Id = "kyh", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Karok", + Comment = null, }, new() { Id = "kyi", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kiput", + Comment = null, }, new() { Id = "kyj", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Karao", + Comment = null, }, new() { Id = "kyk", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kamayo", + Comment = null, }, new() { Id = "kyl", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kalapuya", + Comment = null, }, new() { Id = "kym", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kpatili", + Comment = null, }, new() { Id = "kyn", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Northern Binukidnon", + Comment = null, }, new() { Id = "kyo", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kelon", + Comment = null, }, new() { Id = "kyp", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kang", + Comment = null, }, new() { Id = "kyq", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kenga", + Comment = null, }, new() { Id = "kyr", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kuruáya", + Comment = null, }, new() { Id = "kys", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Baram Kayan", + Comment = null, }, new() { Id = "kyt", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kayagar", + Comment = null, }, new() { Id = "kyu", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Western Kayah", + Comment = null, }, new() { Id = "kyv", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kayort", + Comment = null, }, new() { Id = "kyw", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kudmali", + Comment = null, }, new() { Id = "kyx", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Rapoisi", + Comment = null, }, new() { Id = "kyy", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kambaira", + Comment = null, }, new() { Id = "kyz", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kayabí", + Comment = null, }, new() { Id = "kza", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Western Karaboro", + Comment = null, }, new() { Id = "kzb", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kaibobo", + Comment = null, }, new() { Id = "kzc", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Bondoukou Kulango", + Comment = null, }, new() { Id = "kzd", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kadai", + Comment = null, }, new() { Id = "kze", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kosena", + Comment = null, }, new() { Id = "kzf", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Da'a Kaili", + Comment = null, }, new() { Id = "kzg", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kikai", + Comment = null, }, new() { Id = "kzi", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kelabit", + Comment = null, }, new() { Id = "kzk", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Kazukuru", + Comment = null, }, new() { Id = "kzl", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kayeli", + Comment = null, }, new() { Id = "kzm", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kais", + Comment = null, }, new() { Id = "kzn", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kokola", + Comment = null, }, new() { Id = "kzo", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kaningi", + Comment = null, }, new() { Id = "kzp", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kaidipang", + Comment = null, }, new() { Id = "kzq", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kaike", + Comment = null, }, new() { Id = "kzr", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Karang", + Comment = null, }, new() { Id = "kzs", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Sugut Dusun", + Comment = null, }, new() { Id = "kzu", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kayupulau", + Comment = null, }, new() { Id = "kzv", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Komyandaret", + Comment = null, }, new() { Id = "kzw", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Karirí-Xocó", + Comment = null, }, new() { Id = "kzx", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Kamarian", + Comment = null, }, new() { Id = "kzy", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kango (Tshopo District)", + Comment = null, }, new() { Id = "kzz", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kalabra", + Comment = null, }, new() { Id = "laa", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Southern Subanen", + Comment = null, }, new() { Id = "lab", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "H", RefName = "Linear A", + Comment = null, }, new() { Id = "lac", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Lacandon", + Comment = null, }, new() { Id = "lad", Part2B = "lad", Part2T = "lad", + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Ladino", + Comment = null, }, new() { Id = "lae", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Pattani", + Comment = null, }, new() { Id = "laf", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Lafofa", + Comment = null, }, new() { Id = "lag", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Rangi", + Comment = null, }, new() { Id = "lah", Part2B = "lah", Part2T = "lah", + Part1 = null, Scope = "M", LanguageType = "L", RefName = "Lahnda", + Comment = null, }, new() { Id = "lai", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Lambya", + Comment = null, }, new() { Id = "laj", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Lango (Uganda)", + Comment = null, }, new() { Id = "lal", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Lalia", + Comment = null, }, new() { Id = "lam", Part2B = "lam", Part2T = "lam", + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Lamba", + Comment = null, }, new() { Id = "lan", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Laru", + Comment = null, }, new() { @@ -24958,34 +38408,51 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Lao", + Comment = null, }, new() { Id = "lap", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Laka (Chad)", + Comment = null, }, new() { Id = "laq", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Qabiao", + Comment = null, }, new() { Id = "lar", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Larteh", + Comment = null, }, new() { Id = "las", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Lama (Togo)", + Comment = null, }, new() { @@ -24996,13 +38463,18 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Latin", + Comment = null, }, new() { Id = "lau", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Laba", + Comment = null, }, new() { @@ -25013,806 +38485,1261 @@ public static Iso6393Data Create() => Scope = "M", LanguageType = "L", RefName = "Latvian", + Comment = null, }, new() { Id = "law", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Lauje", + Comment = null, }, new() { Id = "lax", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Tiwa", + Comment = null, }, new() { Id = "lay", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Lama Bai", + Comment = null, }, new() { Id = "laz", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Aribwatsa", + Comment = null, }, new() { Id = "lbb", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Label", + Comment = null, }, new() { Id = "lbc", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Lakkia", + Comment = null, }, new() { Id = "lbe", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Lak", + Comment = null, }, new() { Id = "lbf", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Tinani", + Comment = null, }, new() { Id = "lbg", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Laopang", + Comment = null, }, new() { Id = "lbi", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "La'bi", + Comment = null, }, new() { Id = "lbj", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Ladakhi", + Comment = null, }, new() { Id = "lbk", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Central Bontok", + Comment = null, }, new() { Id = "lbl", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Libon Bikol", + Comment = null, }, new() { Id = "lbm", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Lodhi", + Comment = null, }, new() { Id = "lbn", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Rmeet", + Comment = null, }, new() { Id = "lbo", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Laven", + Comment = null, }, new() { Id = "lbq", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Wampar", + Comment = null, }, new() { Id = "lbr", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Lohorung", + Comment = null, }, new() { Id = "lbs", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Libyan Sign Language", + Comment = null, }, new() { Id = "lbt", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Lachi", + Comment = null, }, new() { Id = "lbu", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Labu", + Comment = null, }, new() { Id = "lbv", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Lavatbura-Lamusong", + Comment = null, }, new() { Id = "lbw", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Tolaki", + Comment = null, }, new() { Id = "lbx", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Lawangan", + Comment = null, }, new() { Id = "lby", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Lamalama", + Comment = null, }, new() { Id = "lbz", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Lardil", + Comment = null, }, new() { Id = "lcc", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Legenyem", + Comment = null, }, new() { Id = "lcd", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Lola", + Comment = null, }, new() { Id = "lce", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Loncong", + Comment = null, }, new() { Id = "lcf", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Lubu", + Comment = null, }, new() { Id = "lch", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Luchazi", + Comment = null, }, new() { Id = "lcl", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Lisela", + Comment = null, }, new() { Id = "lcm", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Tungag", + Comment = null, }, new() { Id = "lcp", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Western Lawa", + Comment = null, }, new() { Id = "lcq", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Luhu", + Comment = null, }, new() { Id = "lcs", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Lisabata-Nuniali", + Comment = null, }, new() { Id = "lda", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kla-Dan", + Comment = null, }, new() { Id = "ldb", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Dũya", + Comment = null, }, new() { Id = "ldd", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Luri", + Comment = null, }, new() { Id = "ldg", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Lenyima", + Comment = null, }, new() { Id = "ldh", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Lamja-Dengsa-Tola", + Comment = null, }, new() { Id = "ldi", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Laari", + Comment = null, }, new() { Id = "ldj", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Lemoro", + Comment = null, }, new() { Id = "ldk", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Leelau", + Comment = null, }, new() { Id = "ldl", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kaan", + Comment = null, }, new() { Id = "ldm", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Landoma", + Comment = null, }, new() { Id = "ldn", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "C", RefName = "Láadan", + Comment = null, }, new() { Id = "ldo", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Loo", + Comment = null, }, new() { Id = "ldp", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Tso", + Comment = null, }, new() { Id = "ldq", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Lufu", + Comment = null, }, new() { Id = "lea", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Lega-Shabunda", + Comment = null, }, new() { Id = "leb", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Lala-Bisa", + Comment = null, }, new() { Id = "lec", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Leco", + Comment = null, }, new() { Id = "led", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Lendu", + Comment = null, }, new() { Id = "lee", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Lyélé", + Comment = null, }, new() { Id = "lef", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Lelemi", + Comment = null, }, new() { Id = "leh", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Lenje", + Comment = null, }, new() { Id = "lei", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Lemio", + Comment = null, }, new() { Id = "lej", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Lengola", + Comment = null, }, new() { Id = "lek", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Leipon", + Comment = null, }, new() { Id = "lel", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Lele (Democratic Republic of Congo)", + Comment = null, }, new() { Id = "lem", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Nomaande", + Comment = null, }, new() { Id = "len", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Lenca", + Comment = null, }, new() { Id = "leo", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Leti (Cameroon)", + Comment = null, }, new() { Id = "lep", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Lepcha", + Comment = null, }, new() { Id = "leq", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Lembena", + Comment = null, }, new() { Id = "ler", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Lenkau", + Comment = null, }, new() { Id = "les", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Lese", + Comment = null, }, new() { Id = "let", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Lesing-Gelimi", + Comment = null, }, new() { Id = "leu", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kara (Papua New Guinea)", + Comment = null, }, new() { Id = "lev", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Lamma", + Comment = null, }, new() { Id = "lew", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Ledo Kaili", + Comment = null, }, new() { Id = "lex", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Luang", + Comment = null, }, new() { Id = "ley", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Lemolang", + Comment = null, }, new() { Id = "lez", Part2B = "lez", Part2T = "lez", + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Lezghian", + Comment = null, }, new() { Id = "lfa", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Lefa", + Comment = null, }, new() { Id = "lfn", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "C", RefName = "Lingua Franca Nova", + Comment = null, }, new() { Id = "lga", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Lungga", + Comment = null, }, new() { Id = "lgb", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Laghu", + Comment = null, }, new() { Id = "lgg", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Lugbara", + Comment = null, }, new() { Id = "lgh", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Laghuu", + Comment = null, }, new() { Id = "lgi", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Lengilu", + Comment = null, }, new() { Id = "lgk", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Lingarak", + Comment = null, }, new() { Id = "lgl", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Wala", + Comment = null, }, new() { Id = "lgm", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Lega-Mwenga", + Comment = null, }, new() { Id = "lgn", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "T'apo", + Comment = null, }, new() { Id = "lgo", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Lango (South Sudan)", + Comment = null, }, new() { Id = "lgq", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Logba", + Comment = null, }, new() { Id = "lgr", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Lengo", + Comment = null, }, new() { Id = "lgs", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Guinea-Bissau Sign Language", + Comment = null, }, new() { Id = "lgt", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Pahi", + Comment = null, }, new() { Id = "lgu", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Longgu", + Comment = null, }, new() { Id = "lgz", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Ligenza", + Comment = null, }, new() { Id = "lha", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Laha (Viet Nam)", + Comment = null, }, new() { Id = "lhh", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Laha (Indonesia)", + Comment = null, }, new() { Id = "lhi", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Lahu Shi", + Comment = null, }, new() { Id = "lhl", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Lahul Lohar", + Comment = null, }, new() { Id = "lhm", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Lhomi", + Comment = null, }, new() { Id = "lhn", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Lahanan", + Comment = null, }, new() { Id = "lhp", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Lhokpu", + Comment = null, }, new() { Id = "lhs", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Mlahsö", + Comment = null, }, new() { Id = "lht", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Lo-Toga", + Comment = null, }, new() { Id = "lhu", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Lahu", + Comment = null, }, new() { Id = "lia", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "West-Central Limba", + Comment = null, }, new() { Id = "lib", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Likum", + Comment = null, }, new() { Id = "lic", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Hlai", + Comment = null, }, new() { Id = "lid", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Nyindrou", + Comment = null, }, new() { Id = "lie", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Likila", + Comment = null, }, new() { Id = "lif", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Limbu", + Comment = null, }, new() { Id = "lig", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Ligbi", + Comment = null, }, new() { Id = "lih", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Lihir", + Comment = null, }, new() { Id = "lij", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Ligurian", + Comment = null, }, new() { Id = "lik", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Lika", + Comment = null, }, new() { Id = "lil", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Lillooet", + Comment = null, }, new() { @@ -25823,6 +39750,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Limburgan", + Comment = null, }, new() { @@ -25833,41 +39761,62 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Lingala", + Comment = null, }, new() { Id = "lio", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Liki", + Comment = null, }, new() { Id = "lip", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Sekpele", + Comment = null, }, new() { Id = "liq", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Libido", + Comment = null, }, new() { Id = "lir", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Liberian English", + Comment = null, }, new() { Id = "lis", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Lisu", + Comment = null, }, new() { @@ -25878,1102 +39827,1723 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Lithuanian", + Comment = null, }, new() { Id = "liu", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Logorik", + Comment = null, }, new() { Id = "liv", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Liv", + Comment = null, }, new() { Id = "liw", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Col", + Comment = null, }, new() { Id = "lix", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Liabuku", + Comment = null, }, new() { Id = "liy", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Banda-Bambari", + Comment = null, }, new() { Id = "liz", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Libinza", + Comment = null, }, new() { Id = "lja", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Golpa", + Comment = null, }, new() { Id = "lje", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Rampi", + Comment = null, }, new() { Id = "lji", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Laiyolo", + Comment = null, }, new() { Id = "ljl", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Li'o", + Comment = null, }, new() { Id = "ljp", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Lampung Api", + Comment = null, }, new() { Id = "ljw", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Yirandali", + Comment = null, }, new() { Id = "ljx", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Yuru", + Comment = null, }, new() { Id = "lka", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Lakalei", + Comment = null, }, new() { Id = "lkb", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kabras", + Comment = null, }, new() { Id = "lkc", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kucong", + Comment = null, }, new() { Id = "lkd", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Lakondê", + Comment = null, }, new() { Id = "lke", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kenyi", + Comment = null, }, new() { Id = "lkh", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Lakha", + Comment = null, }, new() { Id = "lki", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Laki", + Comment = null, }, new() { Id = "lkj", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Remun", + Comment = null, }, new() { Id = "lkl", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Laeko-Libuat", + Comment = null, }, new() { Id = "lkm", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Kalaamaya", + Comment = null, }, new() { Id = "lkn", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Lakon", + Comment = null, }, new() { Id = "lko", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Khayo", + Comment = null, }, new() { Id = "lkr", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Päri", + Comment = null, }, new() { Id = "lks", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kisa", + Comment = null, }, new() { Id = "lkt", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Lakota", + Comment = null, }, new() { Id = "lku", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Kungkari", + Comment = null, }, new() { Id = "lky", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Lokoya", + Comment = null, }, new() { Id = "lla", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Lala-Roba", + Comment = null, }, new() { Id = "llb", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Lolo", + Comment = null, }, new() { Id = "llc", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Lele (Guinea)", + Comment = null, }, new() { Id = "lld", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Ladin", + Comment = null, }, new() { Id = "lle", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Lele (Papua New Guinea)", + Comment = null, }, new() { Id = "llf", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Hermit", + Comment = null, }, new() { Id = "llg", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Lole", + Comment = null, }, new() { Id = "llh", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Lamu", + Comment = null, }, new() { Id = "lli", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Teke-Laali", + Comment = null, }, new() { Id = "llj", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Ladji Ladji", + Comment = null, }, new() { Id = "llk", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Lelak", + Comment = null, }, new() { Id = "lll", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Lilau", + Comment = null, }, new() { Id = "llm", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Lasalimu", + Comment = null, }, new() { Id = "lln", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Lele (Chad)", + Comment = null, }, new() { Id = "llp", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "North Efate", + Comment = null, }, new() { Id = "llq", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Lolak", + Comment = null, }, new() { Id = "lls", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Lithuanian Sign Language", + Comment = null, }, new() { Id = "llu", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Lau", + Comment = null, }, new() { Id = "llx", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Lauan", + Comment = null, }, new() { Id = "lma", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "East Limba", + Comment = null, }, new() { Id = "lmb", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Merei", + Comment = null, }, new() { Id = "lmc", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Limilngan", + Comment = null, }, new() { Id = "lmd", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Lumun", + Comment = null, }, new() { Id = "lme", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Pévé", + Comment = null, }, new() { Id = "lmf", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "South Lembata", + Comment = null, }, new() { Id = "lmg", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Lamogai", + Comment = null, }, new() { Id = "lmh", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Lambichhong", + Comment = null, }, new() { Id = "lmi", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Lombi", + Comment = null, }, new() { Id = "lmj", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "West Lembata", + Comment = null, }, new() { Id = "lmk", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Lamkang", + Comment = null, }, new() { Id = "lml", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Hano", + Comment = null, }, new() { Id = "lmn", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Lambadi", + Comment = null, }, new() { Id = "lmo", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Lombard", + Comment = null, }, new() { Id = "lmp", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Limbum", + Comment = null, }, new() { Id = "lmq", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Lamatuka", + Comment = null, }, new() { Id = "lmr", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Lamalera", + Comment = null, }, new() { Id = "lmu", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Lamenu", + Comment = null, }, new() { Id = "lmv", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Lomaiviti", + Comment = null, }, new() { Id = "lmw", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Lake Miwok", + Comment = null, }, new() { Id = "lmx", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Laimbue", + Comment = null, }, new() { Id = "lmy", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Lamboya", + Comment = null, }, new() { Id = "lna", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Langbashe", + Comment = null, }, new() { Id = "lnb", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Mbalanhu", + Comment = null, }, new() { Id = "lnd", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Lundayeh", + Comment = null, }, new() { Id = "lng", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "H", RefName = "Langobardic", + Comment = null, }, new() { Id = "lnh", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Lanoh", + Comment = null, }, new() { Id = "lni", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Daantanai'", + Comment = null, }, new() { Id = "lnj", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Leningitij", + Comment = null, }, new() { Id = "lnl", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "South Central Banda", + Comment = null, }, new() { Id = "lnm", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Langam", + Comment = null, }, new() { Id = "lnn", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Lorediakarkar", + Comment = null, }, new() { Id = "lns", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Lamnso'", + Comment = null, }, new() { Id = "lnu", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Longuda", + Comment = null, }, new() { Id = "lnw", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Lanima", + Comment = null, }, new() { Id = "lnz", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Lonzo", + Comment = null, }, new() { Id = "loa", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Loloda", + Comment = null, }, new() { Id = "lob", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Lobi", + Comment = null, }, new() { Id = "loc", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Inonhan", + Comment = null, }, new() { Id = "loe", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Saluan", + Comment = null, }, new() { Id = "lof", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Logol", + Comment = null, }, new() { Id = "log", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Logo", + Comment = null, }, new() { Id = "loh", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Laarim", + Comment = null, }, new() { Id = "loi", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Loma (Côte d'Ivoire)", + Comment = null, }, new() { Id = "loj", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Lou", + Comment = null, }, new() { Id = "lok", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Loko", + Comment = null, }, new() { Id = "lol", Part2B = "lol", Part2T = "lol", + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Mongo", + Comment = null, }, new() { Id = "lom", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Loma (Liberia)", + Comment = null, }, new() { Id = "lon", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Malawi Lomwe", + Comment = null, }, new() { Id = "loo", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Lombo", + Comment = null, }, new() { Id = "lop", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Lopa", + Comment = null, }, new() { Id = "loq", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Lobala", + Comment = null, }, new() { Id = "lor", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Téén", + Comment = null, }, new() { Id = "los", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Loniu", + Comment = null, }, new() { Id = "lot", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Otuho", + Comment = null, }, new() { Id = "lou", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Louisiana Creole", + Comment = null, }, new() { Id = "lov", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Lopi", + Comment = null, }, new() { Id = "low", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Tampias Lobu", + Comment = null, }, new() { Id = "lox", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Loun", + Comment = null, }, new() { Id = "loy", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Loke", + Comment = null, }, new() { Id = "loz", Part2B = "loz", Part2T = "loz", + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Lozi", + Comment = null, }, new() { Id = "lpa", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Lelepa", + Comment = null, }, new() { Id = "lpe", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Lepki", + Comment = null, }, new() { Id = "lpn", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Long Phuri Naga", + Comment = null, }, new() { Id = "lpo", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Lipo", + Comment = null, }, new() { Id = "lpx", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Lopit", + Comment = null, }, new() { Id = "lqr", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Logir", + Comment = null, }, new() { Id = "lra", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Rara Bakati'", + Comment = null, }, new() { Id = "lrc", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Northern Luri", + Comment = null, }, new() { Id = "lre", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Laurentian", + Comment = null, }, new() { Id = "lrg", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Laragia", + Comment = null, }, new() { Id = "lri", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Marachi", + Comment = null, }, new() { Id = "lrk", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Loarki", + Comment = null, }, new() { Id = "lrl", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Lari", + Comment = null, }, new() { Id = "lrm", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Marama", + Comment = null, }, new() { Id = "lrn", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Lorang", + Comment = null, }, new() { Id = "lro", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Laro", + Comment = null, }, new() { Id = "lrr", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Southern Yamphu", + Comment = null, }, new() { Id = "lrt", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Larantuka Malay", + Comment = null, }, new() { Id = "lrv", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Larevat", + Comment = null, }, new() { Id = "lrz", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Lemerig", + Comment = null, }, new() { Id = "lsa", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Lasgerdi", + Comment = null, }, new() { Id = "lsb", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Burundian Sign Language", + Comment = null, }, new() { Id = "lsc", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Albarradas Sign Language", + Comment = null, }, new() { Id = "lsd", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Lishana Deni", + Comment = null, }, new() { Id = "lse", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Lusengo", + Comment = null, }, new() { Id = "lsh", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Lish", + Comment = null, }, new() { Id = "lsi", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Lashi", + Comment = null, }, new() { Id = "lsl", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Latvian Sign Language", + Comment = null, }, new() { Id = "lsm", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Saamia", + Comment = null, }, new() { Id = "lsn", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Tibetan Sign Language", + Comment = null, }, new() { Id = "lso", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Laos Sign Language", + Comment = null, }, new() { Id = "lsp", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Panamanian Sign Language", + Comment = null, }, new() { Id = "lsr", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Aruop", + Comment = null, }, new() { Id = "lss", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Lasi", + Comment = null, }, new() { Id = "lst", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Trinidad and Tobago Sign Language", + Comment = null, }, new() { Id = "lsv", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Sivia Sign Language", + Comment = null, }, new() { Id = "lsw", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Seychelles Sign Language", + Comment = null, }, new() { Id = "lsy", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Mauritian Sign Language", + Comment = null, }, new() { Id = "ltc", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "H", RefName = "Late Middle Chinese", + Comment = null, }, new() { Id = "ltg", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Latgalian", + Comment = null, }, new() { Id = "lth", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Thur", + Comment = null, }, new() { Id = "lti", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Leti (Indonesia)", + Comment = null, }, new() { Id = "ltn", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Latundê", + Comment = null, }, new() { Id = "lto", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Tsotso", + Comment = null, }, new() { Id = "lts", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Tachoni", + Comment = null, }, new() { Id = "ltu", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Latu", + Comment = null, }, new() { @@ -26984,15 +41554,18 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Luxembourgish", + Comment = null, }, new() { Id = "lua", Part2B = "lua", Part2T = "lua", + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Luba-Lulua", + Comment = null, }, new() { @@ -27003,34 +41576,51 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Luba-Katanga", + Comment = null, }, new() { Id = "luc", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Aringa", + Comment = null, }, new() { Id = "lud", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Ludian", + Comment = null, }, new() { Id = "lue", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Luvale", + Comment = null, }, new() { Id = "luf", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Laua", + Comment = null, }, new() { @@ -27041,361 +41631,546 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ganda", + Comment = null, }, new() { Id = "luh", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Leizhou Chinese", + Comment = null, }, new() { Id = "lui", Part2B = "lui", Part2T = "lui", + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Luiseno", + Comment = null, }, new() { Id = "luj", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Luna", + Comment = null, }, new() { Id = "luk", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Lunanakha", + Comment = null, }, new() { Id = "lul", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Olu'bo", + Comment = null, }, new() { Id = "lum", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Luimbi", + Comment = null, }, new() { Id = "lun", Part2B = "lun", Part2T = "lun", + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Lunda", + Comment = null, }, new() { Id = "luo", Part2B = "luo", Part2T = "luo", + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Luo (Kenya and Tanzania)", + Comment = null, }, new() { Id = "lup", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Lumbu", + Comment = null, }, new() { Id = "luq", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Lucumi", + Comment = null, }, new() { Id = "lur", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Laura", + Comment = null, }, new() { Id = "lus", Part2B = "lus", Part2T = "lus", + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Lushai", + Comment = null, }, new() { Id = "lut", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Lushootseed", + Comment = null, }, new() { Id = "luu", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Lumba-Yakkha", + Comment = null, }, new() { Id = "luv", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Luwati", + Comment = null, }, new() { Id = "luw", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Luo (Cameroon)", + Comment = null, }, new() { Id = "luy", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "M", LanguageType = "L", RefName = "Luyia", + Comment = null, }, new() { Id = "luz", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Southern Luri", + Comment = null, }, new() { Id = "lva", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Maku'a", + Comment = null, }, new() { Id = "lvi", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Lavi", + Comment = null, }, new() { Id = "lvk", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Lavukaleve", + Comment = null, }, new() { Id = "lvl", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Lwel", + Comment = null, }, new() { Id = "lvs", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Standard Latvian", + Comment = null, }, new() { Id = "lvu", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Levuka", + Comment = null, }, new() { Id = "lwa", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Lwalu", + Comment = null, }, new() { Id = "lwe", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Lewo Eleng", + Comment = null, }, new() { Id = "lwg", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Wanga", + Comment = null, }, new() { Id = "lwh", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "White Lachi", + Comment = null, }, new() { Id = "lwl", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Eastern Lawa", + Comment = null, }, new() { Id = "lwm", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Laomian", + Comment = null, }, new() { Id = "lwo", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Luwo", + Comment = null, }, new() { Id = "lws", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Malawian Sign Language", + Comment = null, }, new() { Id = "lwt", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Lewotobi", + Comment = null, }, new() { Id = "lwu", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Lawu", + Comment = null, }, new() { Id = "lww", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Lewo", + Comment = null, }, new() { Id = "lxm", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Lakurumau", + Comment = null, }, new() { Id = "lya", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Layakha", + Comment = null, }, new() { Id = "lyg", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Lyngngam", + Comment = null, }, new() { Id = "lyn", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Luyana", + Comment = null, }, new() { Id = "lzh", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "H", RefName = "Literary Chinese", + Comment = null, }, new() { Id = "lzl", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Litzlitz", + Comment = null, }, new() { Id = "lzn", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Leinong Naga", + Comment = null, }, new() { Id = "lzz", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Laz", + Comment = null, }, new() { Id = "maa", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "San Jerónimo Tecóatl Mazatec", + Comment = null, }, new() { Id = "mab", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Yutanduchi Mixtec", + Comment = null, }, new() { Id = "mad", Part2B = "mad", Part2T = "mad", + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Madurese", + Comment = null, }, new() { Id = "mae", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Bo-Rukul", + Comment = null, }, new() { Id = "maf", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Mafa", + Comment = null, }, new() { Id = "mag", Part2B = "mag", Part2T = "mag", + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Magahi", + Comment = null, }, new() { @@ -27406,31 +42181,40 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Marshallese", + Comment = null, }, new() { Id = "mai", Part2B = "mai", Part2T = "mai", + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Maithili", + Comment = null, }, new() { Id = "maj", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Jalapa De Díaz Mazatec", + Comment = null, }, new() { Id = "mak", Part2B = "mak", Part2T = "mak", + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Makasar", + Comment = null, }, new() { @@ -27441,29 +42225,40 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Malayalam", + Comment = null, }, new() { Id = "mam", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Mam", + Comment = null, }, new() { Id = "man", Part2B = "man", Part2T = "man", + Part1 = null, Scope = "M", LanguageType = "L", RefName = "Mandingo", + Comment = null, }, new() { Id = "maq", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Chiquihuitlán Mazatec", + Comment = null, }, new() { @@ -27474,1660 +42269,2581 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Marathi", + Comment = null, }, new() { Id = "mas", Part2B = "mas", Part2T = "mas", + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Masai", + Comment = null, }, new() { Id = "mat", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "San Francisco Matlatzinca", + Comment = null, }, new() { Id = "mau", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Huautla Mazatec", + Comment = null, }, new() { Id = "mav", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Sateré-Mawé", + Comment = null, }, new() { Id = "maw", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Mampruli", + Comment = null, }, new() { Id = "max", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "North Moluccan Malay", + Comment = null, }, new() { Id = "maz", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Central Mazahua", + Comment = null, }, new() { Id = "mba", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Higaonon", + Comment = null, }, new() { Id = "mbb", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Western Bukidnon Manobo", + Comment = null, }, new() { Id = "mbc", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Macushi", + Comment = null, }, new() { Id = "mbd", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Dibabawon Manobo", + Comment = null, }, new() { Id = "mbe", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Molale", + Comment = null, }, new() { Id = "mbf", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Baba Malay", + Comment = null, }, new() { Id = "mbh", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Mangseng", + Comment = null, }, new() { Id = "mbi", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Ilianen Manobo", + Comment = null, }, new() { Id = "mbj", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Nadëb", + Comment = null, }, new() { Id = "mbk", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Malol", + Comment = null, }, new() { Id = "mbl", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Maxakalí", + Comment = null, }, new() { Id = "mbm", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Ombamba", + Comment = null, }, new() { Id = "mbn", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Macaguán", + Comment = null, }, new() { Id = "mbo", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Mbo (Cameroon)", + Comment = null, }, new() { Id = "mbp", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Malayo", + Comment = null, }, new() { Id = "mbq", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Maisin", + Comment = null, }, new() { Id = "mbr", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Nukak Makú", + Comment = null, }, new() { Id = "mbs", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Sarangani Manobo", + Comment = null, }, new() { Id = "mbt", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Matigsalug Manobo", + Comment = null, }, new() { Id = "mbu", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Mbula-Bwazza", + Comment = null, }, new() { Id = "mbv", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Mbulungish", + Comment = null, }, new() { Id = "mbw", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Maring", + Comment = null, }, new() { Id = "mbx", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Mari (East Sepik Province)", + Comment = null, }, new() { Id = "mby", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Memoni", + Comment = null, }, new() { Id = "mbz", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Amoltepec Mixtec", + Comment = null, }, new() { Id = "mca", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Maca", + Comment = null, }, new() { Id = "mcb", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Machiguenga", + Comment = null, }, new() { Id = "mcc", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Bitur", + Comment = null, }, new() { Id = "mcd", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Sharanahua", + Comment = null, }, new() { Id = "mce", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Itundujia Mixtec", + Comment = null, }, new() { Id = "mcf", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Matsés", + Comment = null, }, new() { Id = "mcg", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Mapoyo", + Comment = null, }, new() { Id = "mch", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Maquiritari", + Comment = null, }, new() { Id = "mci", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Mese", + Comment = null, }, new() { Id = "mcj", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Mvanip", + Comment = null, }, new() { Id = "mck", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Mbunda", + Comment = null, }, new() { Id = "mcl", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Macaguaje", + Comment = null, }, new() { Id = "mcm", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Malaccan Creole Portuguese", + Comment = null, }, new() { Id = "mcn", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Masana", + Comment = null, }, new() { Id = "mco", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Coatlán Mixe", + Comment = null, }, new() { Id = "mcp", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Makaa", + Comment = null, }, new() { Id = "mcq", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Ese", + Comment = null, }, new() { Id = "mcr", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Menya", + Comment = null, }, new() { Id = "mcs", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Mambai", + Comment = null, }, new() { Id = "mct", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Mengisa", + Comment = null, }, new() { Id = "mcu", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Cameroon Mambila", + Comment = null, }, new() { Id = "mcv", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Minanibai", + Comment = null, }, new() { Id = "mcw", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Mawa (Chad)", + Comment = null, }, new() { Id = "mcx", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Mpiemo", + Comment = null, }, new() { Id = "mcy", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "South Watut", + Comment = null, }, new() { Id = "mcz", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Mawan", + Comment = null, }, new() { Id = "mda", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Mada (Nigeria)", + Comment = null, }, new() { Id = "mdb", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Morigi", + Comment = null, }, new() { Id = "mdc", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Male (Papua New Guinea)", + Comment = null, }, new() { Id = "mdd", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Mbum", + Comment = null, }, new() { Id = "mde", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Maba (Chad)", + Comment = null, }, new() { Id = "mdf", Part2B = "mdf", Part2T = "mdf", + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Moksha", + Comment = null, }, new() { Id = "mdg", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Massalat", + Comment = null, }, new() { Id = "mdh", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Maguindanaon", + Comment = null, }, new() { Id = "mdi", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Mamvu", + Comment = null, }, new() { Id = "mdj", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Mangbetu", + Comment = null, }, new() { Id = "mdk", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Mangbutu", + Comment = null, }, new() { Id = "mdl", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Maltese Sign Language", + Comment = null, }, new() { Id = "mdm", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Mayogo", + Comment = null, }, new() { Id = "mdn", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Mbati", + Comment = null, }, new() { Id = "mdp", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Mbala", + Comment = null, }, new() { Id = "mdq", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Mbole", + Comment = null, }, new() { Id = "mdr", Part2B = "mdr", Part2T = "mdr", + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Mandar", + Comment = null, }, new() { Id = "mds", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Maria (Papua New Guinea)", + Comment = null, }, new() { Id = "mdt", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Mbere", + Comment = null, }, new() { Id = "mdu", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Mboko", + Comment = null, }, new() { Id = "mdv", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Santa Lucía Monteverde Mixtec", + Comment = null, }, new() { Id = "mdw", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Mbosi", + Comment = null, }, new() { Id = "mdx", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Dizin", + Comment = null, }, new() { Id = "mdy", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Male (Ethiopia)", + Comment = null, }, new() { Id = "mdz", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Suruí Do Pará", + Comment = null, }, new() { Id = "mea", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Menka", + Comment = null, }, new() { Id = "meb", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Ikobi", + Comment = null, }, new() { Id = "mec", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Marra", + Comment = null, }, new() { Id = "med", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Melpa", + Comment = null, }, new() { Id = "mee", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Mengen", + Comment = null, }, new() { Id = "mef", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Megam", + Comment = null, }, new() { Id = "meh", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Southwestern Tlaxiaco Mixtec", + Comment = null, }, new() { Id = "mei", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Midob", + Comment = null, }, new() { Id = "mej", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Meyah", + Comment = null, }, new() { Id = "mek", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Mekeo", + Comment = null, }, new() { Id = "mel", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Central Melanau", + Comment = null, }, new() { Id = "mem", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Mangala", + Comment = null, }, new() { Id = "men", Part2B = "men", Part2T = "men", + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Mende (Sierra Leone)", + Comment = null, }, new() { Id = "meo", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kedah Malay", + Comment = null, }, new() { Id = "mep", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Miriwoong", + Comment = null, }, new() { Id = "meq", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Merey", + Comment = null, }, new() { Id = "mer", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Meru", + Comment = null, }, new() { Id = "mes", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Masmaje", + Comment = null, }, new() { Id = "met", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Mato", + Comment = null, }, new() { Id = "meu", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Motu", + Comment = null, }, new() { Id = "mev", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Mano", + Comment = null, }, new() { Id = "mew", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Maaka", + Comment = null, }, new() { Id = "mey", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Hassaniyya", + Comment = null, }, new() { Id = "mez", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Menominee", + Comment = null, }, new() { Id = "mfa", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Pattani Malay", + Comment = null, }, new() { Id = "mfb", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Bangka", + Comment = null, }, new() { Id = "mfc", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Mba", + Comment = null, }, new() { Id = "mfd", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Mendankwe-Nkwen", + Comment = null, }, new() { Id = "mfe", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Morisyen", + Comment = null, }, new() { Id = "mff", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Naki", + Comment = null, }, new() { Id = "mfg", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Mogofin", + Comment = null, }, new() { Id = "mfh", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Matal", + Comment = null, }, new() { Id = "mfi", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Wandala", + Comment = null, }, new() { Id = "mfj", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Mefele", + Comment = null, }, new() { Id = "mfk", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "North Mofu", + Comment = null, }, new() { Id = "mfl", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Putai", + Comment = null, }, new() { Id = "mfm", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Marghi South", + Comment = null, }, new() { Id = "mfn", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Cross River Mbembe", + Comment = null, }, new() { Id = "mfo", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Mbe", + Comment = null, }, new() { Id = "mfp", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Makassar Malay", + Comment = null, }, new() { Id = "mfq", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Moba", + Comment = null, }, new() { Id = "mfr", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Marrithiyel", + Comment = null, }, new() { Id = "mfs", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Mexican Sign Language", + Comment = null, }, new() { Id = "mft", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Mokerang", + Comment = null, }, new() { Id = "mfu", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Mbwela", + Comment = null, }, new() { Id = "mfv", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Mandjak", + Comment = null, }, new() { Id = "mfw", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Mulaha", + Comment = null, }, new() { Id = "mfx", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Melo", + Comment = null, }, new() { Id = "mfy", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Mayo", + Comment = null, }, new() { Id = "mfz", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Mabaan", + Comment = null, }, new() { Id = "mga", Part2B = "mga", Part2T = "mga", + Part1 = null, Scope = "I", LanguageType = "H", RefName = "Middle Irish (900-1200)", + Comment = null, }, new() { Id = "mgb", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Mararit", + Comment = null, }, new() { Id = "mgc", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Morokodo", + Comment = null, }, new() { Id = "mgd", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Moru", + Comment = null, }, new() { Id = "mge", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Mango", + Comment = null, }, new() { Id = "mgf", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Maklew", + Comment = null, }, new() { Id = "mgg", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Mpumpong", + Comment = null, }, new() { Id = "mgh", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Makhuwa-Meetto", + Comment = null, }, new() { Id = "mgi", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Lijili", + Comment = null, }, new() { Id = "mgj", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Abureni", + Comment = null, }, new() { Id = "mgk", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Mawes", + Comment = null, }, new() { Id = "mgl", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Maleu-Kilenge", + Comment = null, }, new() { Id = "mgm", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Mambae", + Comment = null, }, new() { Id = "mgn", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Mbangi", + Comment = null, }, new() { Id = "mgo", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Meta'", + Comment = null, }, new() { Id = "mgp", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Eastern Magar", + Comment = null, }, new() { Id = "mgq", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Malila", + Comment = null, }, new() { Id = "mgr", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Mambwe-Lungu", + Comment = null, }, new() { Id = "mgs", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Manda (Tanzania)", + Comment = null, }, new() { Id = "mgt", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Mongol", + Comment = null, }, new() { Id = "mgu", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Mailu", + Comment = null, }, new() { Id = "mgv", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Matengo", + Comment = null, }, new() { Id = "mgw", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Matumbi", + Comment = null, }, new() { Id = "mgy", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Mbunga", + Comment = null, }, new() { Id = "mgz", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Mbugwe", + Comment = null, }, new() { Id = "mha", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Manda (India)", + Comment = null, }, new() { Id = "mhb", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Mahongwe", + Comment = null, }, new() { Id = "mhc", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Mocho", + Comment = null, }, new() { Id = "mhd", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Mbugu", + Comment = null, }, new() { Id = "mhe", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Besisi", + Comment = null, }, new() { Id = "mhf", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Mamaa", + Comment = null, }, new() { Id = "mhg", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Margu", + Comment = null, }, new() { Id = "mhi", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Ma'di", + Comment = null, }, new() { Id = "mhj", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Mogholi", + Comment = null, }, new() { Id = "mhk", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Mungaka", + Comment = null, }, new() { Id = "mhl", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Mauwake", + Comment = null, }, new() { Id = "mhm", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Makhuwa-Moniga", + Comment = null, }, new() { Id = "mhn", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Mòcheno", + Comment = null, }, new() { Id = "mho", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Mashi (Zambia)", + Comment = null, }, new() { Id = "mhp", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Balinese Malay", + Comment = null, }, new() { Id = "mhq", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Mandan", + Comment = null, }, new() { Id = "mhr", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Eastern Mari", + Comment = null, }, new() { Id = "mhs", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Buru (Indonesia)", + Comment = null, }, new() { Id = "mht", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Mandahuaca", + Comment = null, }, new() { Id = "mhu", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Digaro-Mishmi", + Comment = null, }, new() { Id = "mhw", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Mbukushu", + Comment = null, }, new() { Id = "mhx", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Maru", + Comment = null, }, new() { Id = "mhy", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Ma'anyan", + Comment = null, }, new() { Id = "mhz", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Mor (Mor Islands)", + Comment = null, }, new() { Id = "mia", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Miami", + Comment = null, }, new() { Id = "mib", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Atatláhuca Mixtec", + Comment = null, }, new() { Id = "mic", Part2B = "mic", Part2T = "mic", + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Mi'kmaq", + Comment = null, }, new() { Id = "mid", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Mandaic", + Comment = null, }, new() { Id = "mie", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Ocotepec Mixtec", + Comment = null, }, new() { Id = "mif", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Mofu-Gudur", + Comment = null, }, new() { Id = "mig", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "San Miguel El Grande Mixtec", + Comment = null, }, new() { Id = "mih", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Chayuco Mixtec", + Comment = null, }, new() { Id = "mii", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Chigmecatitlán Mixtec", + Comment = null, }, new() { Id = "mij", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Abar", + Comment = null, }, new() { Id = "mik", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Mikasuki", + Comment = null, }, new() { Id = "mil", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Peñoles Mixtec", + Comment = null, }, new() { Id = "mim", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Alacatlatzala Mixtec", + Comment = null, }, new() { Id = "min", Part2B = "min", Part2T = "min", + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Minangkabau", + Comment = null, }, new() { Id = "mio", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Pinotepa Nacional Mixtec", + Comment = null, }, new() { Id = "mip", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Apasco-Apoala Mixtec", + Comment = null, }, new() { Id = "miq", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Mískito", + Comment = null, }, new() { Id = "mir", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Isthmus Mixe", + Comment = null, }, new() { Id = "mis", Part2B = "mis", Part2T = "mis", + Part1 = null, Scope = "S", LanguageType = "S", RefName = "Uncoded languages", + Comment = null, }, new() { Id = "mit", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Southern Puebla Mixtec", + Comment = null, }, new() { Id = "miu", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Cacaloxtepec Mixtec", + Comment = null, }, new() { Id = "miw", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Akoye", + Comment = null, }, new() { Id = "mix", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Mixtepec Mixtec", + Comment = null, }, new() { Id = "miy", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Ayutla Mixtec", + Comment = null, }, new() { Id = "miz", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Coatzospan Mixtec", + Comment = null, }, new() { Id = "mjb", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Makalero", + Comment = null, }, new() { Id = "mjc", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "San Juan Colorado Mixtec", + Comment = null, }, new() { Id = "mjd", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Northwest Maidu", + Comment = null, }, new() { Id = "mje", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Muskum", + Comment = null, }, new() { Id = "mjg", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Tu", + Comment = null, }, new() { Id = "mjh", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Mwera (Nyasa)", + Comment = null, }, new() { Id = "mji", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kim Mun", + Comment = null, }, new() { Id = "mjj", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Mawak", + Comment = null, }, new() { Id = "mjk", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Matukar", + Comment = null, }, new() { Id = "mjl", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Mandeali", + Comment = null, }, new() { Id = "mjm", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Medebur", + Comment = null, }, new() { Id = "mjn", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Ma (Papua New Guinea)", + Comment = null, }, new() { Id = "mjo", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Malankuravan", + Comment = null, }, new() { Id = "mjp", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Malapandaram", + Comment = null, }, new() { Id = "mjq", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Malaryan", + Comment = null, }, new() { Id = "mjr", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Malavedan", + Comment = null, }, new() { Id = "mjs", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Miship", + Comment = null, }, new() { Id = "mjt", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Sauria Paharia", + Comment = null, }, new() { Id = "mju", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Manna-Dora", + Comment = null, }, new() { Id = "mjv", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Mannan", + Comment = null, }, new() { Id = "mjw", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Karbi", + Comment = null, }, new() { Id = "mjx", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Mahali", + Comment = null, }, new() { Id = "mjy", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Mahican", + Comment = null, }, new() { Id = "mjz", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Majhi", + Comment = null, }, new() { Id = "mka", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Mbre", + Comment = null, }, new() { Id = "mkb", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Mal Paharia", + Comment = null, }, new() { Id = "mkc", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Siliput", + Comment = null, }, new() { @@ -29138,188 +44854,293 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Macedonian", + Comment = null, }, new() { Id = "mke", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Mawchi", + Comment = null, }, new() { Id = "mkf", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Miya", + Comment = null, }, new() { Id = "mkg", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Mak (China)", + Comment = null, }, new() { Id = "mki", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Dhatki", + Comment = null, }, new() { Id = "mkj", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Mokilese", + Comment = null, }, new() { Id = "mkk", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Byep", + Comment = null, }, new() { Id = "mkl", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Mokole", + Comment = null, }, new() { Id = "mkm", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Moklen", + Comment = null, }, new() { Id = "mkn", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kupang Malay", + Comment = null, }, new() { Id = "mko", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Mingang Doso", + Comment = null, }, new() { Id = "mkp", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Moikodi", + Comment = null, }, new() { Id = "mkq", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Bay Miwok", + Comment = null, }, new() { Id = "mkr", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Malas", + Comment = null, }, new() { Id = "mks", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Silacayoapan Mixtec", + Comment = null, }, new() { Id = "mkt", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Vamale", + Comment = null, }, new() { Id = "mku", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Konyanka Maninka", + Comment = null, }, new() { Id = "mkv", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Mafea", + Comment = null, }, new() { Id = "mkw", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kituba (Congo)", + Comment = null, }, new() { Id = "mkx", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kinamiging Manobo", + Comment = null, }, new() { Id = "mky", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "East Makian", + Comment = null, }, new() { Id = "mkz", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Makasae", + Comment = null, }, new() { Id = "mla", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Malo", + Comment = null, }, new() { Id = "mlb", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Mbule", + Comment = null, }, new() { Id = "mlc", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Cao Lan", + Comment = null, }, new() { Id = "mle", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Manambu", + Comment = null, }, new() { Id = "mlf", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Mal", + Comment = null, }, new() { @@ -29330,90 +45151,139 @@ public static Iso6393Data Create() => Scope = "M", LanguageType = "L", RefName = "Malagasy", + Comment = null, }, new() { Id = "mlh", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Mape", + Comment = null, }, new() { Id = "mli", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Malimpung", + Comment = null, }, new() { Id = "mlj", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Miltu", + Comment = null, }, new() { Id = "mlk", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Ilwana", + Comment = null, }, new() { Id = "mll", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Malua Bay", + Comment = null, }, new() { Id = "mlm", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Mulam", + Comment = null, }, new() { Id = "mln", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Malango", + Comment = null, }, new() { Id = "mlo", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Mlomp", + Comment = null, }, new() { Id = "mlp", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Bargam", + Comment = null, }, new() { Id = "mlq", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Western Maninkakan", + Comment = null, }, new() { Id = "mlr", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Vame", + Comment = null, }, new() { Id = "mls", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Masalit", + Comment = null, }, new() { @@ -29424,460 +45294,711 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Maltese", + Comment = null, }, new() { Id = "mlu", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "To'abaita", + Comment = null, }, new() { Id = "mlv", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Motlav", + Comment = null, }, new() { Id = "mlw", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Moloko", + Comment = null, }, new() { Id = "mlx", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Malfaxal", + Comment = null, }, new() { Id = "mlz", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Malaynon", + Comment = null, }, new() { Id = "mma", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Mama", + Comment = null, }, new() { Id = "mmb", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Momina", + Comment = null, }, new() { Id = "mmc", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Michoacán Mazahua", + Comment = null, }, new() { Id = "mmd", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Maonan", + Comment = null, }, new() { Id = "mme", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Mae", + Comment = null, }, new() { Id = "mmf", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Mundat", + Comment = null, }, new() { Id = "mmg", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "North Ambrym", + Comment = null, }, new() { Id = "mmh", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Mehináku", + Comment = null, }, new() { Id = "mmi", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Hember Avu", + Comment = null, }, new() { Id = "mmj", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Majhwar", + Comment = null, }, new() { Id = "mmk", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Mukha-Dora", + Comment = null, }, new() { Id = "mml", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Man Met", + Comment = null, }, new() { Id = "mmm", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Maii", + Comment = null, }, new() { Id = "mmn", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Mamanwa", + Comment = null, }, new() { Id = "mmo", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Mangga Buang", + Comment = null, }, new() { Id = "mmp", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Siawi", + Comment = null, }, new() { Id = "mmq", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Musak", + Comment = null, }, new() { Id = "mmr", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Western Xiangxi Miao", + Comment = null, }, new() { Id = "mmt", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Malalamai", + Comment = null, }, new() { Id = "mmu", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Mmaala", + Comment = null, }, new() { Id = "mmv", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Miriti", + Comment = null, }, new() { Id = "mmw", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Emae", + Comment = null, }, new() { Id = "mmx", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Madak", + Comment = null, }, new() { Id = "mmy", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Migaama", + Comment = null, }, new() { Id = "mmz", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Mabaale", + Comment = null, }, new() { Id = "mna", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Mbula", + Comment = null, }, new() { Id = "mnb", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Muna", + Comment = null, }, new() { Id = "mnc", Part2B = "mnc", Part2T = "mnc", + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Manchu", + Comment = null, }, new() { Id = "mnd", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Mondé", + Comment = null, }, new() { Id = "mne", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Naba", + Comment = null, }, new() { Id = "mnf", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Mundani", + Comment = null, }, new() { Id = "mng", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Eastern Mnong", + Comment = null, }, new() { Id = "mnh", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Mono (Democratic Republic of Congo)", + Comment = null, }, new() { Id = "mni", Part2B = "mni", Part2T = "mni", + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Manipuri", + Comment = null, }, new() { Id = "mnj", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Munji", + Comment = null, }, new() { Id = "mnk", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Mandinka", + Comment = null, }, new() { Id = "mnl", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Tiale", + Comment = null, }, new() { Id = "mnm", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Mapena", + Comment = null, }, new() { Id = "mnn", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Southern Mnong", + Comment = null, }, new() { Id = "mnp", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Min Bei Chinese", + Comment = null, }, new() { Id = "mnq", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Minriq", + Comment = null, }, new() { Id = "mnr", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Mono (USA)", + Comment = null, }, new() { Id = "mns", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Mansi", + Comment = null, }, new() { Id = "mnu", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Mer", + Comment = null, }, new() { Id = "mnv", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Rennell-Bellona", + Comment = null, }, new() { Id = "mnw", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Mon", + Comment = null, }, new() { Id = "mnx", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Manikion", + Comment = null, }, new() { Id = "mny", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Manyawa", + Comment = null, }, new() { Id = "mnz", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Moni", + Comment = null, }, new() { Id = "moa", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Mwan", + Comment = null, }, new() { Id = "moc", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Mocoví", + Comment = null, }, new() { Id = "mod", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Mobilian", + Comment = null, }, new() { Id = "moe", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Innu", + Comment = null, }, new() { Id = "mog", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Mongondow", + Comment = null, }, new() { Id = "moh", Part2B = "moh", Part2T = "moh", + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Mohawk", + Comment = null, }, new() { Id = "moi", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Mboi", + Comment = null, }, new() { Id = "moj", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Monzombo", + Comment = null, }, new() { Id = "mok", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Morori", + Comment = null, }, new() { Id = "mom", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Mangue", + Comment = null, }, new() { @@ -29888,498 +46009,777 @@ public static Iso6393Data Create() => Scope = "M", LanguageType = "L", RefName = "Mongolian", + Comment = null, }, new() { Id = "moo", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Monom", + Comment = null, }, new() { Id = "mop", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Mopán Maya", + Comment = null, }, new() { Id = "moq", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Mor (Bomberai Peninsula)", + Comment = null, }, new() { Id = "mor", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Moro", + Comment = null, }, new() { Id = "mos", Part2B = "mos", Part2T = "mos", + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Mossi", + Comment = null, }, new() { Id = "mot", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Barí", + Comment = null, }, new() { Id = "mou", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Mogum", + Comment = null, }, new() { Id = "mov", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Mohave", + Comment = null, }, new() { Id = "mow", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Moi (Congo)", + Comment = null, }, new() { Id = "mox", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Molima", + Comment = null, }, new() { Id = "moy", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Shekkacho", + Comment = null, }, new() { Id = "moz", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Mukulu", + Comment = null, }, new() { Id = "mpa", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Mpoto", + Comment = null, }, new() { Id = "mpb", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Malak Malak", + Comment = null, }, new() { Id = "mpc", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Mangarrayi", + Comment = null, }, new() { Id = "mpd", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Machinere", + Comment = null, }, new() { Id = "mpe", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Majang", + Comment = null, }, new() { Id = "mpg", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Marba", + Comment = null, }, new() { Id = "mph", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Maung", + Comment = null, }, new() { Id = "mpi", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Mpade", + Comment = null, }, new() { Id = "mpj", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Martu Wangka", + Comment = null, }, new() { Id = "mpk", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Mbara (Chad)", + Comment = null, }, new() { Id = "mpl", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Middle Watut", + Comment = null, }, new() { Id = "mpm", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Yosondúa Mixtec", + Comment = null, }, new() { Id = "mpn", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Mindiri", + Comment = null, }, new() { Id = "mpo", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Miu", + Comment = null, }, new() { Id = "mpp", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Migabac", + Comment = null, }, new() { Id = "mpq", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Matís", + Comment = null, }, new() { Id = "mpr", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Vangunu", + Comment = null, }, new() { Id = "mps", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Dadibi", + Comment = null, }, new() { Id = "mpt", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Mian", + Comment = null, }, new() { Id = "mpu", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Makuráp", + Comment = null, }, new() { Id = "mpv", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Mungkip", + Comment = null, }, new() { Id = "mpw", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Mapidian", + Comment = null, }, new() { Id = "mpx", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Misima-Panaeati", + Comment = null, }, new() { Id = "mpy", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Mapia", + Comment = null, }, new() { Id = "mpz", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Mpi", + Comment = null, }, new() { Id = "mqa", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Maba (Indonesia)", + Comment = null, }, new() { Id = "mqb", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Mbuko", + Comment = null, }, new() { Id = "mqc", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Mangole", + Comment = null, }, new() { Id = "mqe", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Matepi", + Comment = null, }, new() { Id = "mqf", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Momuna", + Comment = null, }, new() { Id = "mqg", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kota Bangun Kutai Malay", + Comment = null, }, new() { Id = "mqh", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Tlazoyaltepec Mixtec", + Comment = null, }, new() { Id = "mqi", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Mariri", + Comment = null, }, new() { Id = "mqj", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Mamasa", + Comment = null, }, new() { Id = "mqk", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Rajah Kabunsuwan Manobo", + Comment = null, }, new() { Id = "mql", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Mbelime", + Comment = null, }, new() { Id = "mqm", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "South Marquesan", + Comment = null, }, new() { Id = "mqn", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Moronene", + Comment = null, }, new() { Id = "mqo", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Modole", + Comment = null, }, new() { Id = "mqp", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Manipa", + Comment = null, }, new() { Id = "mqq", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Minokok", + Comment = null, }, new() { Id = "mqr", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Mander", + Comment = null, }, new() { Id = "mqs", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "West Makian", + Comment = null, }, new() { Id = "mqt", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Mok", + Comment = null, }, new() { Id = "mqu", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Mandari", + Comment = null, }, new() { Id = "mqv", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Mosimo", + Comment = null, }, new() { Id = "mqw", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Murupi", + Comment = null, }, new() { Id = "mqx", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Mamuju", + Comment = null, }, new() { Id = "mqy", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Manggarai", + Comment = null, }, new() { Id = "mqz", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Pano", + Comment = null, }, new() { Id = "mra", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Mlabri", + Comment = null, }, new() { Id = "mrb", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Marino", + Comment = null, }, new() { Id = "mrc", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Maricopa", + Comment = null, }, new() { Id = "mrd", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Western Magar", + Comment = null, }, new() { Id = "mre", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Martha's Vineyard Sign Language", + Comment = null, }, new() { Id = "mrf", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Elseng", + Comment = null, }, new() { Id = "mrg", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Mising", + Comment = null, }, new() { Id = "mrh", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Mara Chin", + Comment = null, }, new() { @@ -30390,125 +46790,194 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Maori", + Comment = null, }, new() { Id = "mrj", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Western Mari", + Comment = null, }, new() { Id = "mrk", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Hmwaveke", + Comment = null, }, new() { Id = "mrl", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Mortlockese", + Comment = null, }, new() { Id = "mrm", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Merlav", + Comment = null, }, new() { Id = "mrn", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Cheke Holo", + Comment = null, }, new() { Id = "mro", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Mru", + Comment = null, }, new() { Id = "mrp", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Morouas", + Comment = null, }, new() { Id = "mrq", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "North Marquesan", + Comment = null, }, new() { Id = "mrr", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Maria (India)", + Comment = null, }, new() { Id = "mrs", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Maragus", + Comment = null, }, new() { Id = "mrt", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Marghi Central", + Comment = null, }, new() { Id = "mru", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Mono (Cameroon)", + Comment = null, }, new() { Id = "mrv", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Mangareva", + Comment = null, }, new() { Id = "mrw", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Maranao", + Comment = null, }, new() { Id = "mrx", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Maremgi", + Comment = null, }, new() { Id = "mry", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Mandaya", + Comment = null, }, new() { Id = "mrz", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Marind", + Comment = null, }, new() { @@ -30519,1015 +46988,1580 @@ public static Iso6393Data Create() => Scope = "M", LanguageType = "L", RefName = "Malay (macrolanguage)", + Comment = null, }, new() { Id = "msb", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Masbatenyo", + Comment = null, }, new() { Id = "msc", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Sankaran Maninka", + Comment = null, }, new() { Id = "msd", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Yucatec Maya Sign Language", + Comment = null, }, new() { Id = "mse", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Musey", + Comment = null, }, new() { Id = "msf", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Mekwei", + Comment = null, }, new() { Id = "msg", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Moraid", + Comment = null, }, new() { Id = "msh", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Masikoro Malagasy", + Comment = null, }, new() { Id = "msi", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Sabah Malay", + Comment = null, }, new() { Id = "msj", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Ma (Democratic Republic of Congo)", + Comment = null, }, new() { Id = "msk", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Mansaka", + Comment = null, }, new() { Id = "msl", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Molof", + Comment = null, }, new() { Id = "msm", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Agusan Manobo", + Comment = null, }, new() { Id = "msn", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Vurës", + Comment = null, }, new() { Id = "mso", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Mombum", + Comment = null, }, new() { Id = "msp", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Maritsauá", + Comment = null, }, new() { Id = "msq", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Caac", + Comment = null, }, new() { Id = "msr", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Mongolian Sign Language", + Comment = null, }, new() { Id = "mss", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "West Masela", + Comment = null, }, new() { Id = "msu", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Musom", + Comment = null, }, new() { Id = "msv", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Maslam", + Comment = null, }, new() { Id = "msw", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Mansoanka", + Comment = null, }, new() { Id = "msx", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Moresada", + Comment = null, }, new() { Id = "msy", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Aruamu", + Comment = null, }, new() { Id = "msz", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Momare", + Comment = null, }, new() { Id = "mta", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Cotabato Manobo", + Comment = null, }, new() { Id = "mtb", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Anyin Morofo", + Comment = null, }, new() { Id = "mtc", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Munit", + Comment = null, }, new() { Id = "mtd", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Mualang", + Comment = null, }, new() { Id = "mte", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Mono (Solomon Islands)", + Comment = null, }, new() { Id = "mtf", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Murik (Papua New Guinea)", + Comment = null, }, new() { Id = "mtg", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Una", + Comment = null, }, new() { Id = "mth", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Munggui", + Comment = null, }, new() { Id = "mti", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Maiwa (Papua New Guinea)", + Comment = null, }, new() { Id = "mtj", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Moskona", + Comment = null, }, new() { Id = "mtk", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Mbe'", + Comment = null, }, new() { Id = "mtl", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Montol", + Comment = null, }, new() { Id = "mtm", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Mator", + Comment = null, }, new() { Id = "mtn", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Matagalpa", + Comment = null, }, new() { Id = "mto", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Totontepec Mixe", + Comment = null, }, new() { Id = "mtp", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Wichí Lhamtés Nocten", + Comment = null, }, new() { Id = "mtq", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Muong", + Comment = null, }, new() { Id = "mtr", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Mewari", + Comment = null, }, new() { Id = "mts", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Yora", + Comment = null, }, new() { Id = "mtt", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Mota", + Comment = null, }, new() { Id = "mtu", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Tututepec Mixtec", + Comment = null, }, new() { Id = "mtv", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Asaro'o", + Comment = null, }, new() { Id = "mtw", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Southern Binukidnon", + Comment = null, }, new() { Id = "mtx", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Tidaá Mixtec", + Comment = null, }, new() { Id = "mty", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Nabi", + Comment = null, }, new() { Id = "mua", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Mundang", + Comment = null, }, new() { Id = "mub", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Mubi", + Comment = null, }, new() { Id = "muc", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Ajumbu", + Comment = null, }, new() { Id = "mud", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Mednyj Aleut", + Comment = null, }, new() { Id = "mue", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Media Lengua", + Comment = null, }, new() { Id = "mug", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Musgu", + Comment = null, }, new() { Id = "muh", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Mündü", + Comment = null, }, new() { Id = "mui", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Musi", + Comment = null, }, new() { Id = "muj", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Mabire", + Comment = null, }, new() { Id = "muk", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Mugom", + Comment = null, }, new() { Id = "mul", Part2B = "mul", Part2T = "mul", + Part1 = null, Scope = "S", LanguageType = "S", RefName = "Multiple languages", + Comment = null, }, new() { Id = "mum", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Maiwala", + Comment = null, }, new() { Id = "muo", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Nyong", + Comment = null, }, new() { Id = "mup", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Malvi", + Comment = null, }, new() { Id = "muq", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Eastern Xiangxi Miao", + Comment = null, }, new() { Id = "mur", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Murle", + Comment = null, }, new() { Id = "mus", Part2B = "mus", Part2T = "mus", + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Creek", + Comment = null, }, new() { Id = "mut", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Western Muria", + Comment = null, }, new() { Id = "muu", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Yaaku", + Comment = null, }, new() { Id = "muv", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Muthuvan", + Comment = null, }, new() { Id = "mux", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Bo-Ung", + Comment = null, }, new() { Id = "muy", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Muyang", + Comment = null, }, new() { Id = "muz", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Mursi", + Comment = null, }, new() { Id = "mva", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Manam", + Comment = null, }, new() { Id = "mvb", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Mattole", + Comment = null, }, new() { Id = "mvd", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Mamboru", + Comment = null, }, new() { Id = "mve", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Marwari (Pakistan)", + Comment = null, }, new() { Id = "mvf", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Peripheral Mongolian", + Comment = null, }, new() { Id = "mvg", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Yucuañe Mixtec", + Comment = null, }, new() { Id = "mvh", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Mulgi", + Comment = null, }, new() { Id = "mvi", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Miyako", + Comment = null, }, new() { Id = "mvk", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Mekmek", + Comment = null, }, new() { Id = "mvl", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Mbara (Australia)", + Comment = null, }, new() { Id = "mvn", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Minaveha", + Comment = null, }, new() { Id = "mvo", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Marovo", + Comment = null, }, new() { Id = "mvp", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Duri", + Comment = null, }, new() { Id = "mvq", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Moere", + Comment = null, }, new() { Id = "mvr", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Marau", + Comment = null, }, new() { Id = "mvs", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Massep", + Comment = null, }, new() { Id = "mvt", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Mpotovoro", + Comment = null, }, new() { Id = "mvu", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Marfa", + Comment = null, }, new() { Id = "mvv", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Tagal Murut", + Comment = null, }, new() { Id = "mvw", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Machinga", + Comment = null, }, new() { Id = "mvx", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Meoswar", + Comment = null, }, new() { Id = "mvy", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Indus Kohistani", + Comment = null, }, new() { Id = "mvz", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Mesqan", + Comment = null, }, new() { Id = "mwa", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Mwatebu", + Comment = null, }, new() { Id = "mwb", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Juwal", + Comment = null, }, new() { Id = "mwc", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Are", + Comment = null, }, new() { Id = "mwe", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Mwera (Chimwera)", + Comment = null, }, new() { Id = "mwf", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Murrinh-Patha", + Comment = null, }, new() { Id = "mwg", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Aiklep", + Comment = null, }, new() { Id = "mwh", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Mouk-Aria", + Comment = null, }, new() { Id = "mwi", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Labo", + Comment = null, }, new() { Id = "mwk", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kita Maninkakan", + Comment = null, }, new() { Id = "mwl", Part2B = "mwl", Part2T = "mwl", + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Mirandese", + Comment = null, }, new() { Id = "mwm", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Sar", + Comment = null, }, new() { Id = "mwn", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Nyamwanga", + Comment = null, }, new() { Id = "mwo", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Central Maewo", + Comment = null, }, new() { Id = "mwp", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kala Lagaw Ya", + Comment = null, }, new() { Id = "mwq", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Mün Chin", + Comment = null, }, new() { Id = "mwr", Part2B = "mwr", Part2T = "mwr", + Part1 = null, Scope = "M", LanguageType = "L", RefName = "Marwari", + Comment = null, }, new() { Id = "mws", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Mwimbi-Muthambi", + Comment = null, }, new() { Id = "mwt", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Moken", + Comment = null, }, new() { Id = "mwu", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Mittu", + Comment = null, }, new() { Id = "mwv", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Mentawai", + Comment = null, }, new() { Id = "mww", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Hmong Daw", + Comment = null, }, new() { Id = "mwz", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Moingi", + Comment = null, }, new() { Id = "mxa", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Northwest Oaxaca Mixtec", + Comment = null, }, new() { Id = "mxb", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Tezoatlán Mixtec", + Comment = null, }, new() { Id = "mxc", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Manyika", + Comment = null, }, new() { Id = "mxd", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Modang", + Comment = null, }, new() { Id = "mxe", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Mele-Fila", + Comment = null, }, new() { Id = "mxf", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Malgbe", + Comment = null, }, new() { Id = "mxg", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Mbangala", + Comment = null, }, new() { Id = "mxh", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Mvuba", + Comment = null, }, new() { Id = "mxi", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "H", RefName = "Mozarabic", + Comment = null, }, new() { Id = "mxj", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Miju-Mishmi", + Comment = null, }, new() { Id = "mxk", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Monumbo", + Comment = null, }, new() { Id = "mxl", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Maxi Gbe", + Comment = null, }, new() { Id = "mxm", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Meramera", + Comment = null, }, new() { Id = "mxn", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Moi (Indonesia)", + Comment = null, }, new() { Id = "mxo", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Mbowe", + Comment = null, }, new() { Id = "mxp", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Tlahuitoltepec Mixe", + Comment = null, }, new() { Id = "mxq", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Juquila Mixe", + Comment = null, }, new() { Id = "mxr", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Murik (Malaysia)", + Comment = null, }, new() { Id = "mxs", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Huitepec Mixtec", + Comment = null, }, new() { Id = "mxt", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Jamiltepec Mixtec", + Comment = null, }, new() { Id = "mxu", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Mada (Cameroon)", + Comment = null, }, new() { Id = "mxv", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Metlatónoc Mixtec", + Comment = null, }, new() { Id = "mxw", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Namo", + Comment = null, }, new() { Id = "mxx", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Mahou", + Comment = null, }, new() { Id = "mxy", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Southeastern Nochixtlán Mixtec", + Comment = null, }, new() { Id = "mxz", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Central Masela", + Comment = null, }, new() { @@ -31538,444 +48572,689 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Burmese", + Comment = null, }, new() { Id = "myb", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Mbay", + Comment = null, }, new() { Id = "myc", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Mayeka", + Comment = null, }, new() { Id = "mye", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Myene", + Comment = null, }, new() { Id = "myf", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Bambassi", + Comment = null, }, new() { Id = "myg", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Manta", + Comment = null, }, new() { Id = "myh", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Makah", + Comment = null, }, new() { Id = "myj", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Mangayat", + Comment = null, }, new() { Id = "myk", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Mamara Senoufo", + Comment = null, }, new() { Id = "myl", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Moma", + Comment = null, }, new() { Id = "mym", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Me'en", + Comment = null, }, new() { Id = "myo", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Anfillo", + Comment = null, }, new() { Id = "myp", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Pirahã", + Comment = null, }, new() { Id = "myr", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Muniche", + Comment = null, }, new() { Id = "mys", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Mesmes", + Comment = null, }, new() { Id = "myu", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Mundurukú", + Comment = null, }, new() { Id = "myv", Part2B = "myv", Part2T = "myv", + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Erzya", + Comment = null, }, new() { Id = "myw", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Muyuw", + Comment = null, }, new() { Id = "myx", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Masaaba", + Comment = null, }, new() { Id = "myy", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Macuna", + Comment = null, }, new() { Id = "myz", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "H", RefName = "Classical Mandaic", + Comment = null, }, new() { Id = "mza", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Santa María Zacatepec Mixtec", + Comment = null, }, new() { Id = "mzb", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Tumzabt", + Comment = null, }, new() { Id = "mzc", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Madagascar Sign Language", + Comment = null, }, new() { Id = "mzd", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Malimba", + Comment = null, }, new() { Id = "mze", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Morawa", + Comment = null, }, new() { Id = "mzg", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Monastic Sign Language", + Comment = null, }, new() { Id = "mzh", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Wichí Lhamtés Güisnay", + Comment = null, }, new() { Id = "mzi", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Ixcatlán Mazatec", + Comment = null, }, new() { Id = "mzj", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Manya", + Comment = null, }, new() { Id = "mzk", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Nigeria Mambila", + Comment = null, }, new() { Id = "mzl", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Mazatlán Mixe", + Comment = null, }, new() { Id = "mzm", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Mumuye", + Comment = null, }, new() { Id = "mzn", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Mazanderani", + Comment = null, }, new() { Id = "mzo", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Matipuhy", + Comment = null, }, new() { Id = "mzp", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Movima", + Comment = null, }, new() { Id = "mzq", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Mori Atas", + Comment = null, }, new() { Id = "mzr", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Marúbo", + Comment = null, }, new() { Id = "mzs", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Macanese", + Comment = null, }, new() { Id = "mzt", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Mintil", + Comment = null, }, new() { Id = "mzu", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Inapang", + Comment = null, }, new() { Id = "mzv", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Manza", + Comment = null, }, new() { Id = "mzw", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Deg", + Comment = null, }, new() { Id = "mzx", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Mawayana", + Comment = null, }, new() { Id = "mzy", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Mozambican Sign Language", + Comment = null, }, new() { Id = "mzz", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Maiadomu", + Comment = null, }, new() { Id = "naa", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Namla", + Comment = null, }, new() { Id = "nab", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Southern Nambikuára", + Comment = null, }, new() { Id = "nac", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Narak", + Comment = null, }, new() { Id = "nae", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Naka'ela", + Comment = null, }, new() { Id = "naf", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Nabak", + Comment = null, }, new() { Id = "nag", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Naga Pidgin", + Comment = null, }, new() { Id = "naj", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Nalu", + Comment = null, }, new() { Id = "nak", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Nakanai", + Comment = null, }, new() { Id = "nal", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Nalik", + Comment = null, }, new() { Id = "nam", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Ngan'gityemerri", + Comment = null, }, new() { Id = "nan", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Min Nan Chinese", + Comment = null, }, new() { Id = "nao", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Naaba", + Comment = null, }, new() { Id = "nap", Part2B = "nap", Part2T = "nap", + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Neapolitan", + Comment = null, }, new() { Id = "naq", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Khoekhoe", + Comment = null, }, new() { Id = "nar", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Iguta", + Comment = null, }, new() { Id = "nas", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Naasioi", + Comment = null, }, new() { Id = "nat", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Ca̱hungwa̱rya̱", + Comment = null, }, new() { @@ -31986,6 +49265,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Nauru", + Comment = null, }, new() { @@ -31996,104 +49276,161 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Navajo", + Comment = null, }, new() { Id = "naw", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Nawuri", + Comment = null, }, new() { Id = "nax", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Nakwi", + Comment = null, }, new() { Id = "nay", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Ngarrindjeri", + Comment = null, }, new() { Id = "naz", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Coatepec Nahuatl", + Comment = null, }, new() { Id = "nba", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Nyemba", + Comment = null, }, new() { Id = "nbb", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Ndoe", + Comment = null, }, new() { Id = "nbc", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Chang Naga", + Comment = null, }, new() { Id = "nbd", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Ngbinda", + Comment = null, }, new() { Id = "nbe", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Konyak Naga", + Comment = null, }, new() { Id = "nbg", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Nagarchal", + Comment = null, }, new() { Id = "nbh", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Ngamo", + Comment = null, }, new() { Id = "nbi", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Mao Naga", + Comment = null, }, new() { Id = "nbj", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Ngarinyman", + Comment = null, }, new() { Id = "nbk", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Nake", + Comment = null, }, new() { @@ -32104,272 +49441,425 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "South Ndebele", + Comment = null, }, new() { Id = "nbm", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Ngbaka Ma'bo", + Comment = null, }, new() { Id = "nbn", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kuri", + Comment = null, }, new() { Id = "nbo", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Nkukoli", + Comment = null, }, new() { Id = "nbp", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Nnam", + Comment = null, }, new() { Id = "nbq", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Nggem", + Comment = null, }, new() { Id = "nbr", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Numana", + Comment = null, }, new() { Id = "nbs", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Namibian Sign Language", + Comment = null, }, new() { Id = "nbt", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Na", + Comment = null, }, new() { Id = "nbu", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Rongmei Naga", + Comment = null, }, new() { Id = "nbv", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Ngamambo", + Comment = null, }, new() { Id = "nbw", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Southern Ngbandi", + Comment = null, }, new() { Id = "nby", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Ningera", + Comment = null, }, new() { Id = "nca", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Iyo", + Comment = null, }, new() { Id = "ncb", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Central Nicobarese", + Comment = null, }, new() { Id = "ncc", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Ponam", + Comment = null, }, new() { Id = "ncd", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Nachering", + Comment = null, }, new() { Id = "nce", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Yale", + Comment = null, }, new() { Id = "ncf", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Notsi", + Comment = null, }, new() { Id = "ncg", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Nisga'a", + Comment = null, }, new() { Id = "nch", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Central Huasteca Nahuatl", + Comment = null, }, new() { Id = "nci", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "H", RefName = "Classical Nahuatl", + Comment = null, }, new() { Id = "ncj", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Northern Puebla Nahuatl", + Comment = null, }, new() { Id = "nck", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Na-kara", + Comment = null, }, new() { Id = "ncl", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Michoacán Nahuatl", + Comment = null, }, new() { Id = "ncm", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Nambo", + Comment = null, }, new() { Id = "ncn", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Nauna", + Comment = null, }, new() { Id = "nco", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Sibe", + Comment = null, }, new() { Id = "ncq", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Northern Katang", + Comment = null, }, new() { Id = "ncr", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Ncane", + Comment = null, }, new() { Id = "ncs", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Nicaraguan Sign Language", + Comment = null, }, new() { Id = "nct", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Chothe Naga", + Comment = null, }, new() { Id = "ncu", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Chumburung", + Comment = null, }, new() { Id = "ncx", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Central Puebla Nahuatl", + Comment = null, }, new() { Id = "ncz", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Natchez", + Comment = null, }, new() { Id = "nda", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Ndasa", + Comment = null, }, new() { Id = "ndb", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kenswei Nsei", + Comment = null, }, new() { Id = "ndc", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Ndau", + Comment = null, }, new() { Id = "ndd", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Nde-Nsele-Nta", + Comment = null, }, new() { @@ -32380,69 +49870,106 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "North Ndebele", + Comment = null, }, new() { Id = "ndf", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "H", RefName = "Nadruvian", + Comment = null, }, new() { Id = "ndg", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Ndengereko", + Comment = null, }, new() { Id = "ndh", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Ndali", + Comment = null, }, new() { Id = "ndi", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Samba Leko", + Comment = null, }, new() { Id = "ndj", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Ndamba", + Comment = null, }, new() { Id = "ndk", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Ndaka", + Comment = null, }, new() { Id = "ndl", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Ndolo", + Comment = null, }, new() { Id = "ndm", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Ndam", + Comment = null, }, new() { Id = "ndn", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Ngundi", + Comment = null, }, new() { @@ -32453,183 +49980,282 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ndonga", + Comment = null, }, new() { Id = "ndp", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Ndo", + Comment = null, }, new() { Id = "ndq", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Ndombe", + Comment = null, }, new() { Id = "ndr", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Ndoola", + Comment = null, }, new() { Id = "nds", Part2B = "nds", Part2T = "nds", + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Low German", + Comment = null, }, new() { Id = "ndt", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Ndunga", + Comment = null, }, new() { Id = "ndu", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Dugun", + Comment = null, }, new() { Id = "ndv", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Ndut", + Comment = null, }, new() { Id = "ndw", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Ndobo", + Comment = null, }, new() { Id = "ndx", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Nduga", + Comment = null, }, new() { Id = "ndy", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Lutos", + Comment = null, }, new() { Id = "ndz", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Ndogo", + Comment = null, }, new() { Id = "nea", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Eastern Ngad'a", + Comment = null, }, new() { Id = "neb", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Toura (Côte d'Ivoire)", + Comment = null, }, new() { Id = "nec", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Nedebang", + Comment = null, }, new() { Id = "ned", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Nde-Gbite", + Comment = null, }, new() { Id = "nee", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Nêlêmwa-Nixumwak", + Comment = null, }, new() { Id = "nef", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Nefamese", + Comment = null, }, new() { Id = "neg", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Negidal", + Comment = null, }, new() { Id = "neh", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Nyenkha", + Comment = null, }, new() { Id = "nei", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "H", RefName = "Neo-Hittite", + Comment = null, }, new() { Id = "nej", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Neko", + Comment = null, }, new() { Id = "nek", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Neku", + Comment = null, }, new() { Id = "nem", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Nemi", + Comment = null, }, new() { Id = "nen", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Nengone", + Comment = null, }, new() { Id = "neo", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Ná-Meo", + Comment = null, }, new() { @@ -32640,915 +50266,1426 @@ public static Iso6393Data Create() => Scope = "M", LanguageType = "L", RefName = "Nepali (macrolanguage)", + Comment = null, }, new() { Id = "neq", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "North Central Mixe", + Comment = null, }, new() { Id = "ner", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Yahadian", + Comment = null, }, new() { Id = "nes", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Bhoti Kinnauri", + Comment = null, }, new() { Id = "net", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Nete", + Comment = null, }, new() { Id = "neu", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "C", RefName = "Neo", + Comment = null, }, new() { Id = "nev", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Nyaheun", + Comment = null, }, new() { Id = "new", Part2B = "new", Part2T = "new", + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Nepal Bhasa", + Comment = null, }, new() { Id = "nex", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Neme", + Comment = null, }, new() { Id = "ney", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Neyo", + Comment = null, }, new() { Id = "nez", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Nez Perce", + Comment = null, }, new() { Id = "nfa", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Dhao", + Comment = null, }, new() { Id = "nfd", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Ahwai", + Comment = null, }, new() { Id = "nfl", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Ayiwo", + Comment = null, }, new() { Id = "nfr", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Nafaanra", + Comment = null, }, new() { Id = "nfu", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Mfumte", + Comment = null, }, new() { Id = "nga", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Ngbaka", + Comment = null, }, new() { Id = "ngb", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Northern Ngbandi", + Comment = null, }, new() { Id = "ngc", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Ngombe (Democratic Republic of Congo)", + Comment = null, }, new() { Id = "ngd", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Ngando (Central African Republic)", + Comment = null, }, new() { Id = "nge", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Ngemba", + Comment = null, }, new() { Id = "ngg", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Ngbaka Manza", + Comment = null, }, new() { Id = "ngh", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Nǁng", + Comment = null, }, new() { Id = "ngi", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Ngizim", + Comment = null, }, new() { Id = "ngj", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Ngie", + Comment = null, }, new() { Id = "ngk", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Dalabon", + Comment = null, }, new() { Id = "ngl", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Lomwe", + Comment = null, }, new() { Id = "ngm", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Ngatik Men's Creole", + Comment = null, }, new() { Id = "ngn", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Ngwo", + Comment = null, }, new() { Id = "ngp", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Ngulu", + Comment = null, }, new() { Id = "ngq", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Ngurimi", + Comment = null, }, new() { Id = "ngr", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Engdewu", + Comment = null, }, new() { Id = "ngs", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Gvoko", + Comment = null, }, new() { Id = "ngt", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kriang", + Comment = null, }, new() { Id = "ngu", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Guerrero Nahuatl", + Comment = null, }, new() { Id = "ngv", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Nagumi", + Comment = null, }, new() { Id = "ngw", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Ngwaba", + Comment = null, }, new() { Id = "ngx", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Nggwahyi", + Comment = null, }, new() { Id = "ngy", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Tibea", + Comment = null, }, new() { Id = "ngz", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Ngungwel", + Comment = null, }, new() { Id = "nha", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Nhanda", + Comment = null, }, new() { Id = "nhb", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Beng", + Comment = null, }, new() { Id = "nhc", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Tabasco Nahuatl", + Comment = null, }, new() { Id = "nhd", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Chiripá", + Comment = null, }, new() { Id = "nhe", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Eastern Huasteca Nahuatl", + Comment = null, }, new() { Id = "nhf", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Nhuwala", + Comment = null, }, new() { Id = "nhg", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Tetelcingo Nahuatl", + Comment = null, }, new() { Id = "nhh", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Nahari", + Comment = null, }, new() { Id = "nhi", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Zacatlán-Ahuacatlán-Tepetzintla Nahuatl", + Comment = null, }, new() { Id = "nhk", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Isthmus-Cosoleacaque Nahuatl", + Comment = null, }, new() { Id = "nhm", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Morelos Nahuatl", + Comment = null, }, new() { Id = "nhn", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Central Nahuatl", + Comment = null, }, new() { Id = "nho", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Takuu", + Comment = null, }, new() { Id = "nhp", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Isthmus-Pajapan Nahuatl", + Comment = null, }, new() { Id = "nhq", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Huaxcaleca Nahuatl", + Comment = null, }, new() { Id = "nhr", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Naro", + Comment = null, }, new() { Id = "nht", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Ometepec Nahuatl", + Comment = null, }, new() { Id = "nhu", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Noone", + Comment = null, }, new() { Id = "nhv", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Temascaltepec Nahuatl", + Comment = null, }, new() { Id = "nhw", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Western Huasteca Nahuatl", + Comment = null, }, new() { Id = "nhx", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Isthmus-Mecayapan Nahuatl", + Comment = null, }, new() { Id = "nhy", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Northern Oaxaca Nahuatl", + Comment = null, }, new() { Id = "nhz", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Santa María La Alta Nahuatl", + Comment = null, }, new() { Id = "nia", Part2B = "nia", Part2T = "nia", + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Nias", + Comment = null, }, new() { Id = "nib", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Nakame", + Comment = null, }, new() { Id = "nid", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Ngandi", + Comment = null, }, new() { Id = "nie", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Niellim", + Comment = null, }, new() { Id = "nif", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Nek", + Comment = null, }, new() { Id = "nig", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Ngalakgan", + Comment = null, }, new() { Id = "nih", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Nyiha (Tanzania)", + Comment = null, }, new() { Id = "nii", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Nii", + Comment = null, }, new() { Id = "nij", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Ngaju", + Comment = null, }, new() { Id = "nik", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Southern Nicobarese", + Comment = null, }, new() { Id = "nil", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Nila", + Comment = null, }, new() { Id = "nim", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Nilamba", + Comment = null, }, new() { Id = "nin", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Ninzo", + Comment = null, }, new() { Id = "nio", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Nganasan", + Comment = null, }, new() { Id = "niq", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Nandi", + Comment = null, }, new() { Id = "nir", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Nimboran", + Comment = null, }, new() { Id = "nis", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Nimi", + Comment = null, }, new() { Id = "nit", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Southeastern Kolami", + Comment = null, }, new() { Id = "niu", Part2B = "niu", Part2T = "niu", + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Niuean", + Comment = null, }, new() { Id = "niv", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Gilyak", + Comment = null, }, new() { Id = "niw", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Nimo", + Comment = null, }, new() { Id = "nix", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Hema", + Comment = null, }, new() { Id = "niy", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Ngiti", + Comment = null, }, new() { Id = "niz", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Ningil", + Comment = null, }, new() { Id = "nja", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Nzanyi", + Comment = null, }, new() { Id = "njb", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Nocte Naga", + Comment = null, }, new() { Id = "njd", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Ndonde Hamba", + Comment = null, }, new() { Id = "njh", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Lotha Naga", + Comment = null, }, new() { Id = "nji", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Gudanji", + Comment = null, }, new() { Id = "njj", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Njen", + Comment = null, }, new() { Id = "njl", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Njalgulgule", + Comment = null, }, new() { Id = "njm", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Angami Naga", + Comment = null, }, new() { Id = "njn", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Liangmai Naga", + Comment = null, }, new() { Id = "njo", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Ao Naga", + Comment = null, }, new() { Id = "njr", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Njerep", + Comment = null, }, new() { Id = "njs", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Nisa", + Comment = null, }, new() { Id = "njt", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Ndyuka-Trio Pidgin", + Comment = null, }, new() { Id = "nju", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Ngadjunmaya", + Comment = null, }, new() { Id = "njx", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kunyi", + Comment = null, }, new() { Id = "njy", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Njyem", + Comment = null, }, new() { Id = "njz", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Nyishi", + Comment = null, }, new() { Id = "nka", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Nkoya", + Comment = null, }, new() { Id = "nkb", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Khoibu Naga", + Comment = null, }, new() { Id = "nkc", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Nkongho", + Comment = null, }, new() { Id = "nkd", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Koireng", + Comment = null, }, new() { Id = "nke", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Duke", + Comment = null, }, new() { Id = "nkf", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Inpui Naga", + Comment = null, }, new() { Id = "nkg", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Nekgini", + Comment = null, }, new() { Id = "nkh", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Khezha Naga", + Comment = null, }, new() { Id = "nki", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Thangal Naga", + Comment = null, }, new() { Id = "nkj", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Nakai", + Comment = null, }, new() { Id = "nkk", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Nokuku", + Comment = null, }, new() { Id = "nkm", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Namat", + Comment = null, }, new() { Id = "nkn", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Nkangala", + Comment = null, }, new() { Id = "nko", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Nkonya", + Comment = null, }, new() { Id = "nkp", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Niuatoputapu", + Comment = null, }, new() { Id = "nkq", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Nkami", + Comment = null, }, new() { Id = "nkr", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Nukuoro", + Comment = null, }, new() { Id = "nks", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "North Asmat", + Comment = null, }, new() { Id = "nkt", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Nyika (Tanzania)", + Comment = null, }, new() { Id = "nku", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Bouna Kulango", + Comment = null, }, new() { Id = "nkv", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Nyika (Malawi and Zambia)", + Comment = null, }, new() { Id = "nkw", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Nkutu", + Comment = null, }, new() { Id = "nkx", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Nkoroo", + Comment = null, }, new() { Id = "nkz", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Nkari", + Comment = null, }, new() { Id = "nla", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Ngombale", + Comment = null, }, new() { Id = "nlc", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Nalca", + Comment = null, }, new() { @@ -33559,391 +51696,612 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Dutch", + Comment = null, }, new() { Id = "nle", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "East Nyala", + Comment = null, }, new() { Id = "nlg", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Gela", + Comment = null, }, new() { Id = "nli", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Grangali", + Comment = null, }, new() { Id = "nlj", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Nyali", + Comment = null, }, new() { Id = "nlk", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Ninia Yali", + Comment = null, }, new() { Id = "nll", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Nihali", + Comment = null, }, new() { Id = "nlm", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Mankiyali", + Comment = null, }, new() { Id = "nlo", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Ngul", + Comment = null, }, new() { Id = "nlq", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Lao Naga", + Comment = null, }, new() { Id = "nlu", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Nchumbulu", + Comment = null, }, new() { Id = "nlv", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Orizaba Nahuatl", + Comment = null, }, new() { Id = "nlw", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Walangama", + Comment = null, }, new() { Id = "nlx", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Nahali", + Comment = null, }, new() { Id = "nly", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Nyamal", + Comment = null, }, new() { Id = "nlz", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Nalögo", + Comment = null, }, new() { Id = "nma", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Maram Naga", + Comment = null, }, new() { Id = "nmb", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Big Nambas", + Comment = null, }, new() { Id = "nmc", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Ngam", + Comment = null, }, new() { Id = "nmd", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Ndumu", + Comment = null, }, new() { Id = "nme", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Mzieme Naga", + Comment = null, }, new() { Id = "nmf", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Tangkhul Naga (India)", + Comment = null, }, new() { Id = "nmg", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kwasio", + Comment = null, }, new() { Id = "nmh", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Monsang Naga", + Comment = null, }, new() { Id = "nmi", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Nyam", + Comment = null, }, new() { Id = "nmj", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Ngombe (Central African Republic)", + Comment = null, }, new() { Id = "nmk", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Namakura", + Comment = null, }, new() { Id = "nml", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Ndemli", + Comment = null, }, new() { Id = "nmm", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Manangba", + Comment = null, }, new() { Id = "nmn", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "ǃXóõ", + Comment = null, }, new() { Id = "nmo", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Moyon Naga", + Comment = null, }, new() { Id = "nmp", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Nimanbur", + Comment = null, }, new() { Id = "nmq", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Nambya", + Comment = null, }, new() { Id = "nmr", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Nimbari", + Comment = null, }, new() { Id = "nms", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Letemboi", + Comment = null, }, new() { Id = "nmt", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Namonuito", + Comment = null, }, new() { Id = "nmu", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Northeast Maidu", + Comment = null, }, new() { Id = "nmv", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Ngamini", + Comment = null, }, new() { Id = "nmw", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Nimoa", + Comment = null, }, new() { Id = "nmx", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Nama (Papua New Guinea)", + Comment = null, }, new() { Id = "nmy", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Namuyi", + Comment = null, }, new() { Id = "nmz", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Nawdm", + Comment = null, }, new() { Id = "nna", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Nyangumarta", + Comment = null, }, new() { Id = "nnb", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Nande", + Comment = null, }, new() { Id = "nnc", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Nancere", + Comment = null, }, new() { Id = "nnd", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "West Ambae", + Comment = null, }, new() { Id = "nne", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Ngandyera", + Comment = null, }, new() { Id = "nnf", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Ngaing", + Comment = null, }, new() { Id = "nng", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Maring Naga", + Comment = null, }, new() { Id = "nnh", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Ngiemboon", + Comment = null, }, new() { Id = "nni", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "North Nuaulu", + Comment = null, }, new() { Id = "nnj", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Nyangatom", + Comment = null, }, new() { Id = "nnk", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Nankina", + Comment = null, }, new() { Id = "nnl", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Northern Rengma Naga", + Comment = null, }, new() { Id = "nnm", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Namia", + Comment = null, }, new() { Id = "nnn", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Ngete", + Comment = null, }, new() { @@ -33954,76 +52312,117 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Norwegian Nynorsk", + Comment = null, }, new() { Id = "nnp", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Wancho Naga", + Comment = null, }, new() { Id = "nnq", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Ngindo", + Comment = null, }, new() { Id = "nnr", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Narungga", + Comment = null, }, new() { Id = "nnt", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Nanticoke", + Comment = null, }, new() { Id = "nnu", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Dwang", + Comment = null, }, new() { Id = "nnv", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Nugunu (Australia)", + Comment = null, }, new() { Id = "nnw", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Southern Nuni", + Comment = null, }, new() { Id = "nny", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Nyangga", + Comment = null, }, new() { Id = "nnz", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Nda'nda'", + Comment = null, }, new() { Id = "noa", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Woun Meu", + Comment = null, }, new() { @@ -34034,101 +52433,150 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Norwegian Bokmål", + Comment = null, }, new() { Id = "noc", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Nuk", + Comment = null, }, new() { Id = "nod", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Northern Thai", + Comment = null, }, new() { Id = "noe", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Nimadi", + Comment = null, }, new() { Id = "nof", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Nomane", + Comment = null, }, new() { Id = "nog", Part2B = "nog", Part2T = "nog", + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Nogai", + Comment = null, }, new() { Id = "noh", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Nomu", + Comment = null, }, new() { Id = "noi", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Noiri", + Comment = null, }, new() { Id = "noj", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Nonuya", + Comment = null, }, new() { Id = "nok", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Nooksack", + Comment = null, }, new() { Id = "nol", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Nomlaki", + Comment = null, }, new() { Id = "non", Part2B = "non", Part2T = "non", + Part1 = null, Scope = "I", LanguageType = "H", RefName = "Old Norse", + Comment = null, }, new() { Id = "nop", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Numanggang", + Comment = null, }, new() { Id = "noq", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Ngongo", + Comment = null, }, new() { @@ -34139,971 +52587,1514 @@ public static Iso6393Data Create() => Scope = "M", LanguageType = "L", RefName = "Norwegian", + Comment = null, }, new() { Id = "nos", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Eastern Nisu", + Comment = null, }, new() { Id = "not", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Nomatsiguenga", + Comment = null, }, new() { Id = "nou", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Ewage-Notu", + Comment = null, }, new() { Id = "nov", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "C", RefName = "Novial", + Comment = null, }, new() { Id = "now", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Nyambo", + Comment = null, }, new() { Id = "noy", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Noy", + Comment = null, }, new() { Id = "noz", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Nayi", + Comment = null, }, new() { Id = "npa", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Nar Phu", + Comment = null, }, new() { Id = "npb", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Nupbikha", + Comment = null, }, new() { Id = "npg", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Ponyo-Gongwang Naga", + Comment = null, }, new() { Id = "nph", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Phom Naga", + Comment = null, }, new() { Id = "npi", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Nepali (individual language)", + Comment = null, }, new() { Id = "npl", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Southeastern Puebla Nahuatl", + Comment = null, }, new() { Id = "npn", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Mondropolon", + Comment = null, }, new() { Id = "npo", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Pochuri Naga", + Comment = null, }, new() { Id = "nps", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Nipsan", + Comment = null, }, new() { Id = "npu", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Puimei Naga", + Comment = null, }, new() { Id = "npx", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Noipx", + Comment = null, }, new() { Id = "npy", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Napu", + Comment = null, }, new() { Id = "nqg", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Southern Nago", + Comment = null, }, new() { Id = "nqk", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kura Ede Nago", + Comment = null, }, new() { Id = "nql", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Ngendelengo", + Comment = null, }, new() { Id = "nqm", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Ndom", + Comment = null, }, new() { Id = "nqn", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Nen", + Comment = null, }, new() { Id = "nqo", Part2B = "nqo", Part2T = "nqo", + Part1 = null, Scope = "I", LanguageType = "L", RefName = "N'Ko", + Comment = null, }, new() { Id = "nqq", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kyan-Karyaw Naga", + Comment = null, }, new() { Id = "nqt", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Nteng", + Comment = null, }, new() { Id = "nqy", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Akyaung Ari Naga", + Comment = null, }, new() { Id = "nra", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Ngom", + Comment = null, }, new() { Id = "nrb", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Nara", + Comment = null, }, new() { Id = "nrc", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "H", RefName = "Noric", + Comment = null, }, new() { Id = "nre", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Southern Rengma Naga", + Comment = null, }, new() { Id = "nrf", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Jèrriais", + Comment = null, }, new() { Id = "nrg", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Narango", + Comment = null, }, new() { Id = "nri", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Chokri Naga", + Comment = null, }, new() { Id = "nrk", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Ngarla", + Comment = null, }, new() { Id = "nrl", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Ngarluma", + Comment = null, }, new() { Id = "nrm", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Narom", + Comment = null, }, new() { Id = "nrn", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Norn", + Comment = null, }, new() { Id = "nrp", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "H", RefName = "North Picene", + Comment = null, }, new() { Id = "nrr", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Norra", + Comment = null, }, new() { Id = "nrt", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Northern Kalapuya", + Comment = null, }, new() { Id = "nru", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Narua", + Comment = null, }, new() { Id = "nrx", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Ngurmbur", + Comment = null, }, new() { Id = "nrz", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Lala", + Comment = null, }, new() { Id = "nsa", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Sangtam Naga", + Comment = null, }, new() { Id = "nsb", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Lower Nossob", + Comment = null, }, new() { Id = "nsc", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Nshi", + Comment = null, }, new() { Id = "nsd", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Southern Nisu", + Comment = null, }, new() { Id = "nse", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Nsenga", + Comment = null, }, new() { Id = "nsf", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Northwestern Nisu", + Comment = null, }, new() { Id = "nsg", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Ngasa", + Comment = null, }, new() { Id = "nsh", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Ngoshie", + Comment = null, }, new() { Id = "nsi", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Nigerian Sign Language", + Comment = null, }, new() { Id = "nsk", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Naskapi", + Comment = null, }, new() { Id = "nsl", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Norwegian Sign Language", + Comment = null, }, new() { Id = "nsm", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Sumi Naga", + Comment = null, }, new() { Id = "nsn", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Nehan", + Comment = null, }, new() { Id = "nso", Part2B = "nso", Part2T = "nso", + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Pedi", + Comment = null, }, new() { Id = "nsp", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Nepalese Sign Language", + Comment = null, }, new() { Id = "nsq", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Northern Sierra Miwok", + Comment = null, }, new() { Id = "nsr", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Maritime Sign Language", + Comment = null, }, new() { Id = "nss", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Nali", + Comment = null, }, new() { Id = "nst", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Tase Naga", + Comment = null, }, new() { Id = "nsu", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Sierra Negra Nahuatl", + Comment = null, }, new() { Id = "nsv", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Southwestern Nisu", + Comment = null, }, new() { Id = "nsw", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Navut", + Comment = null, }, new() { Id = "nsx", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Nsongo", + Comment = null, }, new() { Id = "nsy", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Nasal", + Comment = null, }, new() { Id = "nsz", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Nisenan", + Comment = null, }, new() { Id = "ntd", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Northern Tidung", + Comment = null, }, new() { Id = "ntg", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Ngantangarra", + Comment = null, }, new() { Id = "nti", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Natioro", + Comment = null, }, new() { Id = "ntj", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Ngaanyatjarra", + Comment = null, }, new() { Id = "ntk", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Ikoma-Nata-Isenye", + Comment = null, }, new() { Id = "ntm", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Nateni", + Comment = null, }, new() { Id = "nto", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Ntomba", + Comment = null, }, new() { Id = "ntp", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Northern Tepehuan", + Comment = null, }, new() { Id = "ntr", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Delo", + Comment = null, }, new() { Id = "ntu", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Natügu", + Comment = null, }, new() { Id = "ntw", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Nottoway", + Comment = null, }, new() { Id = "ntx", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Tangkhul Naga (Myanmar)", + Comment = null, }, new() { Id = "nty", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Mantsi", + Comment = null, }, new() { Id = "ntz", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Natanzi", + Comment = null, }, new() { Id = "nua", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Yuanga", + Comment = null, }, new() { Id = "nuc", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Nukuini", + Comment = null, }, new() { Id = "nud", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Ngala", + Comment = null, }, new() { Id = "nue", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Ngundu", + Comment = null, }, new() { Id = "nuf", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Nusu", + Comment = null, }, new() { Id = "nug", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Nungali", + Comment = null, }, new() { Id = "nuh", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Ndunda", + Comment = null, }, new() { Id = "nui", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Ngumbi", + Comment = null, }, new() { Id = "nuj", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Nyole", + Comment = null, }, new() { Id = "nuk", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Nuu-chah-nulth", + Comment = null, }, new() { Id = "nul", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Nusa Laut", + Comment = null, }, new() { Id = "num", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Niuafo'ou", + Comment = null, }, new() { Id = "nun", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Anong", + Comment = null, }, new() { Id = "nuo", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Nguôn", + Comment = null, }, new() { Id = "nup", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Nupe-Nupe-Tako", + Comment = null, }, new() { Id = "nuq", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Nukumanu", + Comment = null, }, new() { Id = "nur", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Nukuria", + Comment = null, }, new() { Id = "nus", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Nuer", + Comment = null, }, new() { Id = "nut", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Nung (Viet Nam)", + Comment = null, }, new() { Id = "nuu", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Ngbundu", + Comment = null, }, new() { Id = "nuv", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Northern Nuni", + Comment = null, }, new() { Id = "nuw", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Nguluwan", + Comment = null, }, new() { Id = "nux", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Mehek", + Comment = null, }, new() { Id = "nuy", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Nunggubuyu", + Comment = null, }, new() { Id = "nuz", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Tlamacazapa Nahuatl", + Comment = null, }, new() { Id = "nvh", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Nasarian", + Comment = null, }, new() { Id = "nvm", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Namiae", + Comment = null, }, new() { Id = "nvo", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Nyokon", + Comment = null, }, new() { Id = "nwa", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Nawathinehena", + Comment = null, }, new() { Id = "nwb", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Nyabwa", + Comment = null, }, new() { Id = "nwc", Part2B = "nwc", Part2T = "nwc", + Part1 = null, Scope = "I", LanguageType = "H", RefName = "Classical Newari", + Comment = null, }, new() { Id = "nwe", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Ngwe", + Comment = null, }, new() { Id = "nwg", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Ngayawung", + Comment = null, }, new() { Id = "nwi", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Southwest Tanna", + Comment = null, }, new() { Id = "nwm", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Nyamusa-Molo", + Comment = null, }, new() { Id = "nwo", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Nauo", + Comment = null, }, new() { Id = "nwr", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Nawaru", + Comment = null, }, new() { Id = "nww", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Ndwewe", + Comment = null, }, new() { Id = "nwx", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "H", RefName = "Middle Newar", + Comment = null, }, new() { Id = "nwy", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Nottoway-Meherrin", + Comment = null, }, new() { Id = "nxa", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Nauete", + Comment = null, }, new() { Id = "nxd", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Ngando (Democratic Republic of Congo)", + Comment = null, }, new() { Id = "nxe", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Nage", + Comment = null, }, new() { Id = "nxg", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Ngad'a", + Comment = null, }, new() { Id = "nxi", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Nindi", + Comment = null, }, new() { Id = "nxk", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Koki Naga", + Comment = null, }, new() { Id = "nxl", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "South Nuaulu", + Comment = null, }, new() { Id = "nxm", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "H", RefName = "Numidian", + Comment = null, }, new() { Id = "nxn", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Ngawun", + Comment = null, }, new() { Id = "nxo", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Ndambomo", + Comment = null, }, new() { Id = "nxq", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Naxi", + Comment = null, }, new() { Id = "nxr", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Ninggerum", + Comment = null, }, new() { Id = "nxx", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Nafri", + Comment = null, }, new() { @@ -35114,364 +54105,557 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Chichewa", + Comment = null, }, new() { Id = "nyb", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Nyangbo", + Comment = null, }, new() { Id = "nyc", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Nyanga-li", + Comment = null, }, new() { Id = "nyd", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Nyore", + Comment = null, }, new() { Id = "nye", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Nyengo", + Comment = null, }, new() { Id = "nyf", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Giryama", + Comment = null, }, new() { Id = "nyg", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Nyindu", + Comment = null, }, new() { Id = "nyh", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Nyikina", + Comment = null, }, new() { Id = "nyi", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Ama (Sudan)", + Comment = null, }, new() { Id = "nyj", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Nyanga", + Comment = null, }, new() { Id = "nyk", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Nyaneka", + Comment = null, }, new() { Id = "nyl", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Nyeu", + Comment = null, }, new() { Id = "nym", Part2B = "nym", Part2T = "nym", + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Nyamwezi", + Comment = null, }, new() { Id = "nyn", Part2B = "nyn", Part2T = "nyn", + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Nyankole", + Comment = null, }, new() { Id = "nyo", Part2B = "nyo", Part2T = "nyo", + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Nyoro", + Comment = null, }, new() { Id = "nyp", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Nyang'i", + Comment = null, }, new() { Id = "nyq", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Nayini", + Comment = null, }, new() { Id = "nyr", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Nyiha (Malawi)", + Comment = null, }, new() { Id = "nys", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Nyungar", + Comment = null, }, new() { Id = "nyt", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Nyawaygi", + Comment = null, }, new() { Id = "nyu", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Nyungwe", + Comment = null, }, new() { Id = "nyv", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Nyulnyul", + Comment = null, }, new() { Id = "nyw", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Nyaw", + Comment = null, }, new() { Id = "nyx", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Nganyaywana", + Comment = null, }, new() { Id = "nyy", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Nyakyusa-Ngonde", + Comment = null, }, new() { Id = "nza", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Tigon Mbembe", + Comment = null, }, new() { Id = "nzb", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Njebi", + Comment = null, }, new() { Id = "nzd", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Nzadi", + Comment = null, }, new() { Id = "nzi", Part2B = "nzi", Part2T = "nzi", + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Nzima", + Comment = null, }, new() { Id = "nzk", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Nzakara", + Comment = null, }, new() { Id = "nzm", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Zeme Naga", + Comment = null, }, new() { Id = "nzr", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Dir-Nyamzak-Mbarimi", + Comment = null, }, new() { Id = "nzs", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "New Zealand Sign Language", + Comment = null, }, new() { Id = "nzu", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Teke-Nzikou", + Comment = null, }, new() { Id = "nzy", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Nzakambay", + Comment = null, }, new() { Id = "nzz", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Nanga Dama Dogon", + Comment = null, }, new() { Id = "oaa", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Orok", + Comment = null, }, new() { Id = "oac", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Oroch", + Comment = null, }, new() { Id = "oak", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Noakhali", + Comment = null, }, new() { Id = "oar", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "H", RefName = "Old Aramaic (up to 700 BCE)", + Comment = null, }, new() { Id = "oav", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "H", RefName = "Old Avar", + Comment = null, }, new() { Id = "obi", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Obispeño", + Comment = null, }, new() { Id = "obk", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Southern Bontok", + Comment = null, }, new() { Id = "obl", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Oblo", + Comment = null, }, new() { Id = "obm", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "H", RefName = "Moabite", + Comment = null, }, new() { Id = "obo", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Obo Manobo", + Comment = null, }, new() { Id = "obr", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "H", RefName = "Old Burmese", + Comment = null, }, new() { Id = "obt", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "H", RefName = "Old Breton", + Comment = null, }, new() { Id = "obu", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Obulom", + Comment = null, }, new() { Id = "oca", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Ocaina", + Comment = null, }, new() { Id = "och", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "H", RefName = "Old Chinese", + Comment = null, }, new() { @@ -35482,174 +54666,271 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Occitan (post 1500)", + Comment = null, }, new() { Id = "ocm", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "H", RefName = "Old Cham", + Comment = null, }, new() { Id = "oco", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "H", RefName = "Old Cornish", + Comment = null, }, new() { Id = "ocu", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Atzingo Matlatzinca", + Comment = null, }, new() { Id = "oda", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Odut", + Comment = null, }, new() { Id = "odk", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Od", + Comment = null, }, new() { Id = "odt", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "H", RefName = "Old Dutch", + Comment = null, }, new() { Id = "odu", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Odual", + Comment = null, }, new() { Id = "ofo", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Ofo", + Comment = null, }, new() { Id = "ofs", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "H", RefName = "Old Frisian", + Comment = null, }, new() { Id = "ofu", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Efutop", + Comment = null, }, new() { Id = "ogb", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Ogbia", + Comment = null, }, new() { Id = "ogc", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Ogbah", + Comment = null, }, new() { Id = "oge", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "H", RefName = "Old Georgian", + Comment = null, }, new() { Id = "ogg", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Ogbogolo", + Comment = null, }, new() { Id = "ogo", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Khana", + Comment = null, }, new() { Id = "ogu", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Ogbronuagum", + Comment = null, }, new() { Id = "oht", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "H", RefName = "Old Hittite", + Comment = null, }, new() { Id = "ohu", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "H", RefName = "Old Hungarian", + Comment = null, }, new() { Id = "oia", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Oirata", + Comment = null, }, new() { Id = "oie", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Okolie", + Comment = null, }, new() { Id = "oin", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Inebu One", + Comment = null, }, new() { Id = "ojb", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Northwestern Ojibwa", + Comment = null, }, new() { Id = "ojc", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Central Ojibwa", + Comment = null, }, new() { Id = "ojg", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Eastern Ojibwa", + Comment = null, }, new() { @@ -35660,580 +54941,909 @@ public static Iso6393Data Create() => Scope = "M", LanguageType = "L", RefName = "Ojibwa", + Comment = null, }, new() { Id = "ojp", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "H", RefName = "Old Japanese", + Comment = null, }, new() { Id = "ojs", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Severn Ojibwa", + Comment = null, }, new() { Id = "ojv", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Ontong Java", + Comment = null, }, new() { Id = "ojw", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Western Ojibwa", + Comment = null, }, new() { Id = "oka", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Okanagan", + Comment = null, }, new() { Id = "okb", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Okobo", + Comment = null, }, new() { Id = "okc", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kobo", + Comment = null, }, new() { Id = "okd", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Okodia", + Comment = null, }, new() { Id = "oke", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Okpe (Southwestern Edo)", + Comment = null, }, new() { Id = "okg", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Koko Babangk", + Comment = null, }, new() { Id = "okh", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Koresh-e Rostam", + Comment = null, }, new() { Id = "oki", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Okiek", + Comment = null, }, new() { Id = "okj", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Oko-Juwoi", + Comment = null, }, new() { Id = "okk", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kwamtim One", + Comment = null, }, new() { Id = "okl", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Old Kentish Sign Language", + Comment = null, }, new() { Id = "okm", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "H", RefName = "Middle Korean (10th-16th cent.)", + Comment = null, }, new() { Id = "okn", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Oki-No-Erabu", + Comment = null, }, new() { Id = "oko", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "H", RefName = "Old Korean (3rd-9th cent.)", + Comment = null, }, new() { Id = "okr", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kirike", + Comment = null, }, new() { Id = "oks", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Oko-Eni-Osayen", + Comment = null, }, new() { Id = "oku", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Oku", + Comment = null, }, new() { Id = "okv", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Orokaiva", + Comment = null, }, new() { Id = "okx", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Okpe (Northwestern Edo)", + Comment = null, }, new() { Id = "okz", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "H", RefName = "Old Khmer", + Comment = null, }, new() { Id = "ola", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Walungge", + Comment = null, }, new() { Id = "olb", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Oli-Bodiman", + Comment = null, }, new() { Id = "old", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Mochi", + Comment = null, }, new() { Id = "ole", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Olekha", + Comment = null, }, new() { Id = "olk", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Olkol", + Comment = null, }, new() { Id = "olm", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Oloma", + Comment = null, }, new() { Id = "olo", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Livvi", + Comment = null, }, new() { Id = "olr", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Olrat", + Comment = null, }, new() { Id = "olt", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "H", RefName = "Old Lithuanian", + Comment = null, }, new() { Id = "olu", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kuvale", + Comment = null, }, new() { Id = "oma", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Omaha-Ponca", + Comment = null, }, new() { Id = "omb", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "East Ambae", + Comment = null, }, new() { Id = "omc", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Mochica", + Comment = null, }, new() { Id = "omg", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Omagua", + Comment = null, }, new() { Id = "omi", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Omi", + Comment = null, }, new() { Id = "omk", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Omok", + Comment = null, }, new() { Id = "oml", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Ombo", + Comment = null, }, new() { Id = "omn", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "H", RefName = "Minoan", + Comment = null, }, new() { Id = "omo", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Utarmbung", + Comment = null, }, new() { Id = "omp", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "H", RefName = "Old Manipuri", + Comment = null, }, new() { Id = "omr", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "H", RefName = "Old Marathi", + Comment = null, }, new() { Id = "omt", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Omotik", + Comment = null, }, new() { Id = "omu", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Omurano", + Comment = null, }, new() { Id = "omw", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "South Tairora", + Comment = null, }, new() { Id = "omx", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "H", RefName = "Old Mon", + Comment = null, }, new() { Id = "omy", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "H", RefName = "Old Malay", + Comment = null, }, new() { Id = "ona", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Ona", + Comment = null, }, new() { Id = "onb", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Lingao", + Comment = null, }, new() { Id = "one", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Oneida", + Comment = null, }, new() { Id = "ong", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Olo", + Comment = null, }, new() { Id = "oni", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Onin", + Comment = null, }, new() { Id = "onj", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Onjob", + Comment = null, }, new() { Id = "onk", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kabore One", + Comment = null, }, new() { Id = "onn", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Onobasulu", + Comment = null, }, new() { Id = "ono", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Onondaga", + Comment = null, }, new() { Id = "onp", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Sartang", + Comment = null, }, new() { Id = "onr", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Northern One", + Comment = null, }, new() { Id = "ons", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Ono", + Comment = null, }, new() { Id = "ont", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Ontenu", + Comment = null, }, new() { Id = "onu", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Unua", + Comment = null, }, new() { Id = "onw", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "H", RefName = "Old Nubian", + Comment = null, }, new() { Id = "onx", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Onin Based Pidgin", + Comment = null, }, new() { Id = "ood", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Tohono O'odham", + Comment = null, }, new() { Id = "oog", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Ong", + Comment = null, }, new() { Id = "oon", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Önge", + Comment = null, }, new() { Id = "oor", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Oorlams", + Comment = null, }, new() { Id = "oos", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "H", RefName = "Old Ossetic", + Comment = null, }, new() { Id = "opa", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Okpamheri", + Comment = null, }, new() { Id = "opk", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kopkaka", + Comment = null, }, new() { Id = "opm", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Oksapmin", + Comment = null, }, new() { Id = "opo", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Opao", + Comment = null, }, new() { Id = "opt", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Opata", + Comment = null, }, new() { Id = "opy", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Ofayé", + Comment = null, }, new() { Id = "ora", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Oroha", + Comment = null, }, new() { Id = "orc", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Orma", + Comment = null, }, new() { Id = "ore", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Orejón", + Comment = null, }, new() { Id = "org", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Oring", + Comment = null, }, new() { Id = "orh", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Oroqen", + Comment = null, }, new() { @@ -36244,6 +55854,7 @@ public static Iso6393Data Create() => Scope = "M", LanguageType = "L", RefName = "Oriya (macrolanguage)", + Comment = null, }, new() { @@ -36254,134 +55865,205 @@ public static Iso6393Data Create() => Scope = "M", LanguageType = "L", RefName = "Oromo", + Comment = null, }, new() { Id = "orn", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Orang Kanaq", + Comment = null, }, new() { Id = "oro", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Orokolo", + Comment = null, }, new() { Id = "orr", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Oruma", + Comment = null, }, new() { Id = "ors", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Orang Seletar", + Comment = null, }, new() { Id = "ort", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Adivasi Oriya", + Comment = null, }, new() { Id = "oru", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Ormuri", + Comment = null, }, new() { Id = "orv", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "H", RefName = "Old Russian", + Comment = null, }, new() { Id = "orw", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Oro Win", + Comment = null, }, new() { Id = "orx", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Oro", + Comment = null, }, new() { Id = "ory", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Odia", + Comment = null, }, new() { Id = "orz", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Ormu", + Comment = null, }, new() { Id = "osa", Part2B = "osa", Part2T = "osa", + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Osage", + Comment = null, }, new() { Id = "osc", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "H", RefName = "Oscan", + Comment = null, }, new() { Id = "osd", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Digor Ossetic", + Comment = null, }, new() { Id = "osi", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Osing", + Comment = null, }, new() { Id = "osn", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "H", RefName = "Old Sundanese", + Comment = null, }, new() { Id = "oso", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Ososo", + Comment = null, }, new() { Id = "osp", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "H", RefName = "Old Spanish", + Comment = null, }, new() { @@ -36392,329 +56074,502 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Iron Ossetic", + Comment = null, }, new() { Id = "ost", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Osatu", + Comment = null, }, new() { Id = "osu", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Southern One", + Comment = null, }, new() { Id = "osx", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "H", RefName = "Old Saxon", + Comment = null, }, new() { Id = "ota", Part2B = "ota", Part2T = "ota", + Part1 = null, Scope = "I", LanguageType = "H", RefName = "Ottoman Turkish (1500-1928)", + Comment = null, }, new() { Id = "otb", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "H", RefName = "Old Tibetan", + Comment = null, }, new() { Id = "otd", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Ot Danum", + Comment = null, }, new() { Id = "ote", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Mezquital Otomi", + Comment = null, }, new() { Id = "oti", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Oti", + Comment = null, }, new() { Id = "otk", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "H", RefName = "Old Turkish", + Comment = null, }, new() { Id = "otl", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Tilapa Otomi", + Comment = null, }, new() { Id = "otm", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Eastern Highland Otomi", + Comment = null, }, new() { Id = "otn", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Tenango Otomi", + Comment = null, }, new() { Id = "otq", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Querétaro Otomi", + Comment = null, }, new() { Id = "otr", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Otoro", + Comment = null, }, new() { Id = "ots", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Estado de México Otomi", + Comment = null, }, new() { Id = "ott", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Temoaya Otomi", + Comment = null, }, new() { Id = "otu", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Otuke", + Comment = null, }, new() { Id = "otw", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Ottawa", + Comment = null, }, new() { Id = "otx", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Texcatepec Otomi", + Comment = null, }, new() { Id = "oty", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "H", RefName = "Old Tamil", + Comment = null, }, new() { Id = "otz", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Ixtenco Otomi", + Comment = null, }, new() { Id = "oua", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Tagargrent", + Comment = null, }, new() { Id = "oub", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Glio-Oubi", + Comment = null, }, new() { Id = "oue", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Oune", + Comment = null, }, new() { Id = "oui", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "H", RefName = "Old Uighur", + Comment = null, }, new() { Id = "oum", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Ouma", + Comment = null, }, new() { Id = "ovd", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Elfdalian", + Comment = null, }, new() { Id = "owi", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Owiniga", + Comment = null, }, new() { Id = "owl", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "H", RefName = "Old Welsh", + Comment = null, }, new() { Id = "oyb", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Oy", + Comment = null, }, new() { Id = "oyd", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Oyda", + Comment = null, }, new() { Id = "oym", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Wayampi", + Comment = null, }, new() { Id = "oyy", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Oya'oya", + Comment = null, }, new() { Id = "ozm", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Koonzime", + Comment = null, }, new() { Id = "pab", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Parecís", + Comment = null, }, new() { Id = "pac", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Pacoh", + Comment = null, }, new() { Id = "pad", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Paumarí", + Comment = null, }, new() { Id = "pae", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Pagibete", + Comment = null, }, new() { Id = "paf", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Paranawát", + Comment = null, }, new() { Id = "pag", Part2B = "pag", Part2T = "pag", + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Pangasinan", + Comment = null, }, new() { Id = "pah", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Tenharim", + Comment = null, }, new() { Id = "pai", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Pe", + Comment = null, }, new() { Id = "pak", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Parakanã", + Comment = null, }, new() { Id = "pal", Part2B = "pal", Part2T = "pal", + Part1 = null, Scope = "I", LanguageType = "H", RefName = "Pahlavi", + Comment = null, }, new() { Id = "pam", Part2B = "pam", Part2T = "pam", + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Pampanga", + Comment = null, }, new() { @@ -36725,1022 +56580,1591 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Panjabi", + Comment = null, }, new() { Id = "pao", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Northern Paiute", + Comment = null, }, new() { Id = "pap", Part2B = "pap", Part2T = "pap", + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Papiamento", + Comment = null, }, new() { Id = "paq", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Parya", + Comment = null, }, new() { Id = "par", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Panamint", + Comment = null, }, new() { Id = "pas", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Papasena", + Comment = null, }, new() { Id = "pau", Part2B = "pau", Part2T = "pau", + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Palauan", + Comment = null, }, new() { Id = "pav", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Pakaásnovos", + Comment = null, }, new() { Id = "paw", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Pawnee", + Comment = null, }, new() { Id = "pax", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Pankararé", + Comment = null, }, new() { Id = "pay", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Pech", + Comment = null, }, new() { Id = "paz", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Pankararú", + Comment = null, }, new() { Id = "pbb", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Páez", + Comment = null, }, new() { Id = "pbc", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Patamona", + Comment = null, }, new() { Id = "pbe", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Mezontla Popoloca", + Comment = null, }, new() { Id = "pbf", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Coyotepec Popoloca", + Comment = null, }, new() { Id = "pbg", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Paraujano", + Comment = null, }, new() { Id = "pbh", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "E'ñapa Woromaipu", + Comment = null, }, new() { Id = "pbi", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Parkwa", + Comment = null, }, new() { Id = "pbl", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Mak (Nigeria)", + Comment = null, }, new() { Id = "pbm", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Puebla Mazatec", + Comment = null, }, new() { Id = "pbn", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kpasam", + Comment = null, }, new() { Id = "pbo", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Papel", + Comment = null, }, new() { Id = "pbp", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Badyara", + Comment = null, }, new() { Id = "pbr", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Pangwa", + Comment = null, }, new() { Id = "pbs", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Central Pame", + Comment = null, }, new() { Id = "pbt", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Southern Pashto", + Comment = null, }, new() { Id = "pbu", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Northern Pashto", + Comment = null, }, new() { Id = "pbv", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Pnar", + Comment = null, }, new() { Id = "pby", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Pyu (Papua New Guinea)", + Comment = null, }, new() { Id = "pca", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Santa Inés Ahuatempan Popoloca", + Comment = null, }, new() { Id = "pcb", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Pear", + Comment = null, }, new() { Id = "pcc", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Bouyei", + Comment = null, }, new() { Id = "pcd", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Picard", + Comment = null, }, new() { Id = "pce", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Ruching Palaung", + Comment = null, }, new() { Id = "pcf", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Paliyan", + Comment = null, }, new() { Id = "pcg", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Paniya", + Comment = null, }, new() { Id = "pch", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Pardhan", + Comment = null, }, new() { Id = "pci", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Duruwa", + Comment = null, }, new() { Id = "pcj", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Parenga", + Comment = null, }, new() { Id = "pck", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Paite Chin", + Comment = null, }, new() { Id = "pcl", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Pardhi", + Comment = null, }, new() { Id = "pcm", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Nigerian Pidgin", + Comment = null, }, new() { Id = "pcn", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Piti", + Comment = null, }, new() { Id = "pcp", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Pacahuara", + Comment = null, }, new() { Id = "pcw", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Pyapun", + Comment = null, }, new() { Id = "pda", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Anam", + Comment = null, }, new() { Id = "pdc", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Pennsylvania German", + Comment = null, }, new() { Id = "pdi", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Pa Di", + Comment = null, }, new() { Id = "pdn", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Podena", + Comment = null, }, new() { Id = "pdo", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Padoe", + Comment = null, }, new() { Id = "pdt", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Plautdietsch", + Comment = null, }, new() { Id = "pdu", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kayan", + Comment = null, }, new() { Id = "pea", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Peranakan Indonesian", + Comment = null, }, new() { Id = "peb", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Eastern Pomo", + Comment = null, }, new() { Id = "ped", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Mala (Papua New Guinea)", + Comment = null, }, new() { Id = "pee", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Taje", + Comment = null, }, new() { Id = "pef", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Northeastern Pomo", + Comment = null, }, new() { Id = "peg", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Pengo", + Comment = null, }, new() { Id = "peh", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Bonan", + Comment = null, }, new() { Id = "pei", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Chichimeca-Jonaz", + Comment = null, }, new() { Id = "pej", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Northern Pomo", + Comment = null, }, new() { Id = "pek", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Penchal", + Comment = null, }, new() { Id = "pel", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Pekal", + Comment = null, }, new() { Id = "pem", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Phende", + Comment = null, }, new() { Id = "peo", Part2B = "peo", Part2T = "peo", + Part1 = null, Scope = "I", LanguageType = "H", RefName = "Old Persian (ca. 600-400 B.C.)", + Comment = null, }, new() { Id = "pep", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kunja", + Comment = null, }, new() { Id = "peq", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Southern Pomo", + Comment = null, }, new() { Id = "pes", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Iranian Persian", + Comment = null, }, new() { Id = "pev", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Pémono", + Comment = null, }, new() { Id = "pex", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Petats", + Comment = null, }, new() { Id = "pey", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Petjo", + Comment = null, }, new() { Id = "pez", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Eastern Penan", + Comment = null, }, new() { Id = "pfa", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Pááfang", + Comment = null, }, new() { Id = "pfe", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Pere", + Comment = null, }, new() { Id = "pfl", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Pfaelzisch", + Comment = null, }, new() { Id = "pga", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Sudanese Creole Arabic", + Comment = null, }, new() { Id = "pgd", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "H", RefName = "Gāndhārī", + Comment = null, }, new() { Id = "pgg", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Pangwali", + Comment = null, }, new() { Id = "pgi", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Pagi", + Comment = null, }, new() { Id = "pgk", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Rerep", + Comment = null, }, new() { Id = "pgl", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "H", RefName = "Primitive Irish", + Comment = null, }, new() { Id = "pgn", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "H", RefName = "Paelignian", + Comment = null, }, new() { Id = "pgs", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Pangseng", + Comment = null, }, new() { Id = "pgu", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Pagu", + Comment = null, }, new() { Id = "pgz", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Papua New Guinean Sign Language", + Comment = null, }, new() { Id = "pha", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Pa-Hng", + Comment = null, }, new() { Id = "phd", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Phudagi", + Comment = null, }, new() { Id = "phg", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Phuong", + Comment = null, }, new() { Id = "phh", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Phukha", + Comment = null, }, new() { Id = "phj", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Pahari", + Comment = null, }, new() { Id = "phk", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Phake", + Comment = null, }, new() { Id = "phl", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Phalura", + Comment = null, }, new() { Id = "phm", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Phimbi", + Comment = null, }, new() { Id = "phn", Part2B = "phn", Part2T = "phn", + Part1 = null, Scope = "I", LanguageType = "H", RefName = "Phoenician", + Comment = null, }, new() { Id = "pho", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Phunoi", + Comment = null, }, new() { Id = "phq", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Phana'", + Comment = null, }, new() { Id = "phr", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Pahari-Potwari", + Comment = null, }, new() { Id = "pht", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Phu Thai", + Comment = null, }, new() { Id = "phu", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Phuan", + Comment = null, }, new() { Id = "phv", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Pahlavani", + Comment = null, }, new() { Id = "phw", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Phangduwali", + Comment = null, }, new() { Id = "pia", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Pima Bajo", + Comment = null, }, new() { Id = "pib", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Yine", + Comment = null, }, new() { Id = "pic", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Pinji", + Comment = null, }, new() { Id = "pid", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Piaroa", + Comment = null, }, new() { Id = "pie", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Piro", + Comment = null, }, new() { Id = "pif", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Pingelapese", + Comment = null, }, new() { Id = "pig", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Pisabo", + Comment = null, }, new() { Id = "pih", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Pitcairn-Norfolk", + Comment = null, }, new() { Id = "pij", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Pijao", + Comment = null, }, new() { Id = "pil", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Yom", + Comment = null, }, new() { Id = "pim", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Powhatan", + Comment = null, }, new() { Id = "pin", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Piame", + Comment = null, }, new() { Id = "pio", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Piapoco", + Comment = null, }, new() { Id = "pip", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Pero", + Comment = null, }, new() { Id = "pir", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Piratapuyo", + Comment = null, }, new() { Id = "pis", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Pijin", + Comment = null, }, new() { Id = "pit", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Pitta Pitta", + Comment = null, }, new() { Id = "piu", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Pintupi-Luritja", + Comment = null, }, new() { Id = "piv", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Pileni", + Comment = null, }, new() { Id = "piw", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Pimbwe", + Comment = null, }, new() { Id = "pix", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Piu", + Comment = null, }, new() { Id = "piy", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Piya-Kwonci", + Comment = null, }, new() { Id = "piz", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Pije", + Comment = null, }, new() { Id = "pjt", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Pitjantjatjara", + Comment = null, }, new() { Id = "pka", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "H", RefName = "Ardhamāgadhī Prākrit", + Comment = null, }, new() { Id = "pkb", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Pokomo", + Comment = null, }, new() { Id = "pkc", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "H", RefName = "Paekche", + Comment = null, }, new() { Id = "pkg", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Pak-Tong", + Comment = null, }, new() { Id = "pkh", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Pankhu", + Comment = null, }, new() { Id = "pkn", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Pakanha", + Comment = null, }, new() { Id = "pko", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Pökoot", + Comment = null, }, new() { Id = "pkp", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Pukapuka", + Comment = null, }, new() { Id = "pkr", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Attapady Kurumba", + Comment = null, }, new() { Id = "pks", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Pakistan Sign Language", + Comment = null, }, new() { Id = "pkt", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Maleng", + Comment = null, }, new() { Id = "pku", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Paku", + Comment = null, }, new() { Id = "pla", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Miani", + Comment = null, }, new() { Id = "plb", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Polonombauk", + Comment = null, }, new() { Id = "plc", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Central Palawano", + Comment = null, }, new() { Id = "pld", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Polari", + Comment = null, }, new() { Id = "ple", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Palu'e", + Comment = null, }, new() { Id = "plg", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Pilagá", + Comment = null, }, new() { Id = "plh", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Paulohi", + Comment = null, }, new() { @@ -37751,461 +58175,722 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Pali", + Comment = null, }, new() { Id = "plk", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kohistani Shina", + Comment = null, }, new() { Id = "pll", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Shwe Palaung", + Comment = null, }, new() { Id = "pln", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Palenquero", + Comment = null, }, new() { Id = "plo", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Oluta Popoluca", + Comment = null, }, new() { Id = "plq", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "H", RefName = "Palaic", + Comment = null, }, new() { Id = "plr", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Palaka Senoufo", + Comment = null, }, new() { Id = "pls", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "San Marcos Tlacoyalco Popoloca", + Comment = null, }, new() { Id = "plt", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Plateau Malagasy", + Comment = null, }, new() { Id = "plu", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Palikúr", + Comment = null, }, new() { Id = "plv", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Southwest Palawano", + Comment = null, }, new() { Id = "plw", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Brooke's Point Palawano", + Comment = null, }, new() { Id = "ply", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Bolyu", + Comment = null, }, new() { Id = "plz", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Paluan", + Comment = null, }, new() { Id = "pma", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Paama", + Comment = null, }, new() { Id = "pmb", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Pambia", + Comment = null, }, new() { Id = "pmd", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Pallanganmiddang", + Comment = null, }, new() { Id = "pme", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Pwaamei", + Comment = null, }, new() { Id = "pmf", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Pamona", + Comment = null, }, new() { Id = "pmh", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "H", RefName = "Māhārāṣṭri Prākrit", + Comment = null, }, new() { Id = "pmi", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Northern Pumi", + Comment = null, }, new() { Id = "pmj", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Southern Pumi", + Comment = null, }, new() { Id = "pml", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Lingua Franca", + Comment = null, }, new() { Id = "pmm", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Pomo", + Comment = null, }, new() { Id = "pmn", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Pam", + Comment = null, }, new() { Id = "pmo", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Pom", + Comment = null, }, new() { Id = "pmq", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Northern Pame", + Comment = null, }, new() { Id = "pmr", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Paynamar", + Comment = null, }, new() { Id = "pms", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Piemontese", + Comment = null, }, new() { Id = "pmt", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Tuamotuan", + Comment = null, }, new() { Id = "pmw", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Plains Miwok", + Comment = null, }, new() { Id = "pmx", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Poumei Naga", + Comment = null, }, new() { Id = "pmy", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Papuan Malay", + Comment = null, }, new() { Id = "pmz", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Southern Pame", + Comment = null, }, new() { Id = "pna", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Punan Bah-Biau", + Comment = null, }, new() { Id = "pnb", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Western Panjabi", + Comment = null, }, new() { Id = "pnc", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Pannei", + Comment = null, }, new() { Id = "pnd", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Mpinda", + Comment = null, }, new() { Id = "pne", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Western Penan", + Comment = null, }, new() { Id = "png", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Pangu", + Comment = null, }, new() { Id = "pnh", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Penrhyn", + Comment = null, }, new() { Id = "pni", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Aoheng", + Comment = null, }, new() { Id = "pnj", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Pinjarup", + Comment = null, }, new() { Id = "pnk", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Paunaka", + Comment = null, }, new() { Id = "pnl", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Paleni", + Comment = null, }, new() { Id = "pnm", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Punan Batu 1", + Comment = null, }, new() { Id = "pnn", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Pinai-Hagahai", + Comment = null, }, new() { Id = "pno", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Panobo", + Comment = null, }, new() { Id = "pnp", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Pancana", + Comment = null, }, new() { Id = "pnq", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Pana (Burkina Faso)", + Comment = null, }, new() { Id = "pnr", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Panim", + Comment = null, }, new() { Id = "pns", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Ponosakan", + Comment = null, }, new() { Id = "pnt", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Pontic", + Comment = null, }, new() { Id = "pnu", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Jiongnai Bunu", + Comment = null, }, new() { Id = "pnv", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Pinigura", + Comment = null, }, new() { Id = "pnw", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Banyjima", + Comment = null, }, new() { Id = "pnx", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Phong-Kniang", + Comment = null, }, new() { Id = "pny", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Pinyin", + Comment = null, }, new() { Id = "pnz", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Pana (Central African Republic)", + Comment = null, }, new() { Id = "poc", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Poqomam", + Comment = null, }, new() { Id = "poe", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "San Juan Atzingo Popoloca", + Comment = null, }, new() { Id = "pof", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Poke", + Comment = null, }, new() { Id = "pog", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Potiguára", + Comment = null, }, new() { Id = "poh", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Poqomchi'", + Comment = null, }, new() { Id = "poi", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Highland Popoluca", + Comment = null, }, new() { Id = "pok", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Pokangá", + Comment = null, }, new() { @@ -38216,43 +58901,62 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Polish", + Comment = null, }, new() { Id = "pom", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Southeastern Pomo", + Comment = null, }, new() { Id = "pon", Part2B = "pon", Part2T = "pon", + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Pohnpeian", + Comment = null, }, new() { Id = "poo", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Central Pomo", + Comment = null, }, new() { Id = "pop", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Pwapwâ", + Comment = null, }, new() { Id = "poq", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Texistepec Popoluca", + Comment = null, }, new() { @@ -38263,610 +58967,953 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Portuguese", + Comment = null, }, new() { Id = "pos", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Sayula Popoluca", + Comment = null, }, new() { Id = "pot", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Potawatomi", + Comment = null, }, new() { Id = "pov", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Upper Guinea Crioulo", + Comment = null, }, new() { Id = "pow", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "San Felipe Otlaltepec Popoloca", + Comment = null, }, new() { Id = "pox", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Polabian", + Comment = null, }, new() { Id = "poy", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Pogolo", + Comment = null, }, new() { Id = "ppe", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Papi", + Comment = null, }, new() { Id = "ppi", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Paipai", + Comment = null, }, new() { Id = "ppk", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Uma", + Comment = null, }, new() { Id = "ppl", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Pipil", + Comment = null, }, new() { Id = "ppm", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Papuma", + Comment = null, }, new() { Id = "ppn", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Papapana", + Comment = null, }, new() { Id = "ppo", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Folopa", + Comment = null, }, new() { Id = "ppp", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Pelende", + Comment = null, }, new() { Id = "ppq", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Pei", + Comment = null, }, new() { Id = "pps", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "San Luís Temalacayuca Popoloca", + Comment = null, }, new() { Id = "ppt", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Pare", + Comment = null, }, new() { Id = "ppu", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Papora", + Comment = null, }, new() { Id = "pqa", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Pa'a", + Comment = null, }, new() { Id = "pqm", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Malecite-Passamaquoddy", + Comment = null, }, new() { Id = "prc", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Parachi", + Comment = null, }, new() { Id = "prd", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Parsi-Dari", + Comment = null, }, new() { Id = "pre", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Principense", + Comment = null, }, new() { Id = "prf", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Paranan", + Comment = null, }, new() { Id = "prg", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Prussian", + Comment = null, }, new() { Id = "prh", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Porohanon", + Comment = null, }, new() { Id = "pri", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Paicî", + Comment = null, }, new() { Id = "prk", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Parauk", + Comment = null, }, new() { Id = "prl", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Peruvian Sign Language", + Comment = null, }, new() { Id = "prm", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kibiri", + Comment = null, }, new() { Id = "prn", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Prasuni", + Comment = null, }, new() { Id = "pro", Part2B = "pro", Part2T = "pro", + Part1 = null, Scope = "I", LanguageType = "H", RefName = "Old Provençal (to 1500)", + Comment = null, }, new() { Id = "prq", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Ashéninka Perené", + Comment = null, }, new() { Id = "prr", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Puri", + Comment = null, }, new() { Id = "prs", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Dari", + Comment = null, }, new() { Id = "prt", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Phai", + Comment = null, }, new() { Id = "pru", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Puragi", + Comment = null, }, new() { Id = "prw", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Parawen", + Comment = null, }, new() { Id = "prx", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Purik", + Comment = null, }, new() { Id = "prz", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Providencia Sign Language", + Comment = null, }, new() { Id = "psa", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Asue Awyu", + Comment = null, }, new() { Id = "psc", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Iranian Sign Language", + Comment = null, }, new() { Id = "psd", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Plains Indian Sign Language", + Comment = null, }, new() { Id = "pse", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Central Malay", + Comment = null, }, new() { Id = "psg", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Penang Sign Language", + Comment = null, }, new() { Id = "psh", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Southwest Pashai", + Comment = null, }, new() { Id = "psi", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Southeast Pashai", + Comment = null, }, new() { Id = "psl", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Puerto Rican Sign Language", + Comment = null, }, new() { Id = "psm", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Pauserna", + Comment = null, }, new() { Id = "psn", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Panasuan", + Comment = null, }, new() { Id = "pso", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Polish Sign Language", + Comment = null, }, new() { Id = "psp", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Philippine Sign Language", + Comment = null, }, new() { Id = "psq", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Pasi", + Comment = null, }, new() { Id = "psr", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Portuguese Sign Language", + Comment = null, }, new() { Id = "pss", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kaulong", + Comment = null, }, new() { Id = "pst", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Central Pashto", + Comment = null, }, new() { Id = "psu", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "H", RefName = "Sauraseni Prākrit", + Comment = null, }, new() { Id = "psw", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Port Sandwich", + Comment = null, }, new() { Id = "psy", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Piscataway", + Comment = null, }, new() { Id = "pta", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Pai Tavytera", + Comment = null, }, new() { Id = "pth", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Pataxó Hã-Ha-Hãe", + Comment = null, }, new() { Id = "pti", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Pindiini", + Comment = null, }, new() { Id = "ptn", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Patani", + Comment = null, }, new() { Id = "pto", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Zo'é", + Comment = null, }, new() { Id = "ptp", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Patep", + Comment = null, }, new() { Id = "ptq", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Pattapu", + Comment = null, }, new() { Id = "ptr", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Piamatsina", + Comment = null, }, new() { Id = "ptt", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Enrekang", + Comment = null, }, new() { Id = "ptu", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Bambam", + Comment = null, }, new() { Id = "ptv", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Port Vato", + Comment = null, }, new() { Id = "ptw", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Pentlatch", + Comment = null, }, new() { Id = "pty", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Pathiya", + Comment = null, }, new() { Id = "pua", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Western Highland Purepecha", + Comment = null, }, new() { Id = "pub", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Purum", + Comment = null, }, new() { Id = "puc", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Punan Merap", + Comment = null, }, new() { Id = "pud", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Punan Aput", + Comment = null, }, new() { Id = "pue", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Puelche", + Comment = null, }, new() { Id = "puf", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Punan Merah", + Comment = null, }, new() { Id = "pug", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Phuie", + Comment = null, }, new() { Id = "pui", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Puinave", + Comment = null, }, new() { Id = "puj", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Punan Tubu", + Comment = null, }, new() { Id = "pum", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Puma", + Comment = null, }, new() { Id = "puo", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Puoc", + Comment = null, }, new() { Id = "pup", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Pulabu", + Comment = null, }, new() { Id = "puq", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Puquina", + Comment = null, }, new() { Id = "pur", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Puruborá", + Comment = null, }, new() { @@ -38877,209 +59924,326 @@ public static Iso6393Data Create() => Scope = "M", LanguageType = "L", RefName = "Pushto", + Comment = null, }, new() { Id = "put", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Putoh", + Comment = null, }, new() { Id = "puu", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Punu", + Comment = null, }, new() { Id = "puw", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Puluwatese", + Comment = null, }, new() { Id = "pux", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Puare", + Comment = null, }, new() { Id = "puy", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Purisimeño", + Comment = null, }, new() { Id = "pwa", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Pawaia", + Comment = null, }, new() { Id = "pwb", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Panawa", + Comment = null, }, new() { Id = "pwg", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Gapapaiwa", + Comment = null, }, new() { Id = "pwi", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Patwin", + Comment = null, }, new() { Id = "pwm", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Molbog", + Comment = null, }, new() { Id = "pwn", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Paiwan", + Comment = null, }, new() { Id = "pwo", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Pwo Western Karen", + Comment = null, }, new() { Id = "pwr", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Powari", + Comment = null, }, new() { Id = "pww", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Pwo Northern Karen", + Comment = null, }, new() { Id = "pxm", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Quetzaltepec Mixe", + Comment = null, }, new() { Id = "pye", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Pye Krumen", + Comment = null, }, new() { Id = "pym", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Fyam", + Comment = null, }, new() { Id = "pyn", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Poyanáwa", + Comment = null, }, new() { Id = "pys", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Paraguayan Sign Language", + Comment = null, }, new() { Id = "pyu", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Puyuma", + Comment = null, }, new() { Id = "pyx", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "H", RefName = "Pyu (Myanmar)", + Comment = null, }, new() { Id = "pyy", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Pyen", + Comment = null, }, new() { Id = "pze", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Pesse", + Comment = null, }, new() { Id = "pzh", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Pazeh", + Comment = null, }, new() { Id = "pzn", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Jejara Naga", + Comment = null, }, new() { Id = "qua", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Quapaw", + Comment = null, }, new() { Id = "qub", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Huallaga Huánuco Quechua", + Comment = null, }, new() { Id = "quc", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "K'iche'", + Comment = null, }, new() { Id = "qud", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Calderón Highland Quichua", + Comment = null, }, new() { @@ -39090,1153 +60254,1800 @@ public static Iso6393Data Create() => Scope = "M", LanguageType = "L", RefName = "Quechua", + Comment = null, }, new() { Id = "quf", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Lambayeque Quechua", + Comment = null, }, new() { Id = "qug", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Chimborazo Highland Quichua", + Comment = null, }, new() { Id = "quh", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "South Bolivian Quechua", + Comment = null, }, new() { Id = "qui", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Quileute", + Comment = null, }, new() { Id = "quk", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Chachapoyas Quechua", + Comment = null, }, new() { Id = "qul", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "North Bolivian Quechua", + Comment = null, }, new() { Id = "qum", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Sipacapense", + Comment = null, }, new() { Id = "qun", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Quinault", + Comment = null, }, new() { Id = "qup", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Southern Pastaza Quechua", + Comment = null, }, new() { Id = "quq", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Quinqui", + Comment = null, }, new() { Id = "qur", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Yanahuanca Pasco Quechua", + Comment = null, }, new() { Id = "qus", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Santiago del Estero Quichua", + Comment = null, }, new() { Id = "quv", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Sacapulteco", + Comment = null, }, new() { Id = "quw", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Tena Lowland Quichua", + Comment = null, }, new() { Id = "qux", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Yauyos Quechua", + Comment = null, }, new() { Id = "quy", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Ayacucho Quechua", + Comment = null, }, new() { Id = "quz", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Cusco Quechua", + Comment = null, }, new() { Id = "qva", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Ambo-Pasco Quechua", + Comment = null, }, new() { Id = "qvc", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Cajamarca Quechua", + Comment = null, }, new() { Id = "qve", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Eastern Apurímac Quechua", + Comment = null, }, new() { Id = "qvh", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Huamalíes-Dos de Mayo Huánuco Quechua", + Comment = null, }, new() { Id = "qvi", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Imbabura Highland Quichua", + Comment = null, }, new() { Id = "qvj", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Loja Highland Quichua", + Comment = null, }, new() { Id = "qvl", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Cajatambo North Lima Quechua", + Comment = null, }, new() { Id = "qvm", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Margos-Yarowilca-Lauricocha Quechua", + Comment = null, }, new() { Id = "qvn", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "North Junín Quechua", + Comment = null, }, new() { Id = "qvo", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Napo Lowland Quechua", + Comment = null, }, new() { Id = "qvp", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Pacaraos Quechua", + Comment = null, }, new() { Id = "qvs", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "San Martín Quechua", + Comment = null, }, new() { Id = "qvw", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Huaylla Wanca Quechua", + Comment = null, }, new() { Id = "qvy", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Queyu", + Comment = null, }, new() { Id = "qvz", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Northern Pastaza Quichua", + Comment = null, }, new() { Id = "qwa", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Corongo Ancash Quechua", + Comment = null, }, new() { Id = "qwc", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "H", RefName = "Classical Quechua", + Comment = null, }, new() { Id = "qwh", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Huaylas Ancash Quechua", + Comment = null, }, new() { Id = "qwm", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Kuman (Russia)", + Comment = null, }, new() { Id = "qws", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Sihuas Ancash Quechua", + Comment = null, }, new() { Id = "qwt", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Kwalhioqua-Tlatskanai", + Comment = null, }, new() { Id = "qxa", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Chiquián Ancash Quechua", + Comment = null, }, new() { Id = "qxc", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Chincha Quechua", + Comment = null, }, new() { Id = "qxh", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Panao Huánuco Quechua", + Comment = null, }, new() { Id = "qxl", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Salasaca Highland Quichua", + Comment = null, }, new() { Id = "qxn", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Northern Conchucos Ancash Quechua", + Comment = null, }, new() { Id = "qxo", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Southern Conchucos Ancash Quechua", + Comment = null, }, new() { Id = "qxp", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Puno Quechua", + Comment = null, }, new() { Id = "qxq", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Qashqa'i", + Comment = null, }, new() { Id = "qxr", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Cañar Highland Quichua", + Comment = null, }, new() { Id = "qxs", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Southern Qiang", + Comment = null, }, new() { Id = "qxt", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Santa Ana de Tusi Pasco Quechua", + Comment = null, }, new() { Id = "qxu", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Arequipa-La Unión Quechua", + Comment = null, }, new() { Id = "qxw", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Jauja Wanca Quechua", + Comment = null, }, new() { Id = "qya", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "C", RefName = "Quenya", + Comment = null, }, new() { Id = "qyp", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Quiripi", + Comment = null, }, new() { Id = "raa", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Dungmali", + Comment = null, }, new() { Id = "rab", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Camling", + Comment = null, }, new() { Id = "rac", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Rasawa", + Comment = null, }, new() { Id = "rad", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Rade", + Comment = null, }, new() { Id = "raf", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Western Meohang", + Comment = null, }, new() { Id = "rag", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Logooli", + Comment = null, }, new() { Id = "rah", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Rabha", + Comment = null, }, new() { Id = "rai", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Ramoaaina", + Comment = null, }, new() { Id = "raj", Part2B = "raj", Part2T = "raj", + Part1 = null, Scope = "M", LanguageType = "L", RefName = "Rajasthani", + Comment = null, }, new() { Id = "rak", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Tulu-Bohuai", + Comment = null, }, new() { Id = "ral", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Ralte", + Comment = null, }, new() { Id = "ram", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Canela", + Comment = null, }, new() { Id = "ran", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Riantana", + Comment = null, }, new() { Id = "rao", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Rao", + Comment = null, }, new() { Id = "rap", Part2B = "rap", Part2T = "rap", + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Rapanui", + Comment = null, }, new() { Id = "raq", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Saam", + Comment = null, }, new() { Id = "rar", Part2B = "rar", Part2T = "rar", + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Rarotongan", + Comment = null, }, new() { Id = "ras", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Tegali", + Comment = null, }, new() { Id = "rat", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Razajerdi", + Comment = null, }, new() { Id = "rau", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Raute", + Comment = null, }, new() { Id = "rav", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Sampang", + Comment = null, }, new() { Id = "raw", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Rawang", + Comment = null, }, new() { Id = "rax", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Rang", + Comment = null, }, new() { Id = "ray", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Rapa", + Comment = null, }, new() { Id = "raz", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Rahambuu", + Comment = null, }, new() { Id = "rbb", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Rumai Palaung", + Comment = null, }, new() { Id = "rbk", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Northern Bontok", + Comment = null, }, new() { Id = "rbl", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Miraya Bikol", + Comment = null, }, new() { Id = "rbp", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Barababaraba", + Comment = null, }, new() { Id = "rcf", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Réunion Creole French", + Comment = null, }, new() { Id = "rdb", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Rudbari", + Comment = null, }, new() { Id = "rea", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Rerau", + Comment = null, }, new() { Id = "reb", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Rembong", + Comment = null, }, new() { Id = "ree", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Rejang Kayan", + Comment = null, }, new() { Id = "reg", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kara (Tanzania)", + Comment = null, }, new() { Id = "rei", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Reli", + Comment = null, }, new() { Id = "rej", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Rejang", + Comment = null, }, new() { Id = "rel", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Rendille", + Comment = null, }, new() { Id = "rem", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Remo", + Comment = null, }, new() { Id = "ren", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Rengao", + Comment = null, }, new() { Id = "rer", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Rer Bare", + Comment = null, }, new() { Id = "res", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Reshe", + Comment = null, }, new() { Id = "ret", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Retta", + Comment = null, }, new() { Id = "rey", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Reyesano", + Comment = null, }, new() { Id = "rga", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Roria", + Comment = null, }, new() { Id = "rge", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Romano-Greek", + Comment = null, }, new() { Id = "rgk", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Rangkas", + Comment = null, }, new() { Id = "rgn", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Romagnol", + Comment = null, }, new() { Id = "rgr", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Resígaro", + Comment = null, }, new() { Id = "rgs", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Southern Roglai", + Comment = null, }, new() { Id = "rgu", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Ringgou", + Comment = null, }, new() { Id = "rhg", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Rohingya", + Comment = null, }, new() { Id = "rhp", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Yahang", + Comment = null, }, new() { Id = "ria", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Riang (India)", + Comment = null, }, new() { Id = "rib", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Bribri Sign Language", + Comment = null, }, new() { Id = "rif", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Tarifit", + Comment = null, }, new() { Id = "ril", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Riang Lang", + Comment = null, }, new() { Id = "rim", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Nyaturu", + Comment = null, }, new() { Id = "rin", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Nungu", + Comment = null, }, new() { Id = "rir", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Ribun", + Comment = null, }, new() { Id = "rit", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Ritharrngu", + Comment = null, }, new() { Id = "riu", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Riung", + Comment = null, }, new() { Id = "rjg", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Rajong", + Comment = null, }, new() { Id = "rji", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Raji", + Comment = null, }, new() { Id = "rjs", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Rajbanshi", + Comment = null, }, new() { Id = "rka", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kraol", + Comment = null, }, new() { Id = "rkb", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Rikbaktsa", + Comment = null, }, new() { Id = "rkh", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Rakahanga-Manihiki", + Comment = null, }, new() { Id = "rki", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Rakhine", + Comment = null, }, new() { Id = "rkm", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Marka", + Comment = null, }, new() { Id = "rkt", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Rangpuri", + Comment = null, }, new() { Id = "rkw", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Arakwal", + Comment = null, }, new() { Id = "rma", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Rama", + Comment = null, }, new() { Id = "rmb", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Rembarrnga", + Comment = null, }, new() { Id = "rmc", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Carpathian Romani", + Comment = null, }, new() { Id = "rmd", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Traveller Danish", + Comment = null, }, new() { Id = "rme", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Angloromani", + Comment = null, }, new() { Id = "rmf", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kalo Finnish Romani", + Comment = null, }, new() { Id = "rmg", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Traveller Norwegian", + Comment = null, }, new() { Id = "rmh", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Murkim", + Comment = null, }, new() { Id = "rmi", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Lomavren", + Comment = null, }, new() { Id = "rmk", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Romkun", + Comment = null, }, new() { Id = "rml", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Baltic Romani", + Comment = null, }, new() { Id = "rmm", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Roma", + Comment = null, }, new() { Id = "rmn", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Balkan Romani", + Comment = null, }, new() { Id = "rmo", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Sinte Romani", + Comment = null, }, new() { Id = "rmp", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Rempi", + Comment = null, }, new() { Id = "rmq", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Caló", + Comment = null, }, new() { Id = "rms", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Romanian Sign Language", + Comment = null, }, new() { Id = "rmt", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Domari", + Comment = null, }, new() { Id = "rmu", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Tavringer Romani", + Comment = null, }, new() { Id = "rmv", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "C", RefName = "Romanova", + Comment = null, }, new() { Id = "rmw", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Welsh Romani", + Comment = null, }, new() { Id = "rmx", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Romam", + Comment = null, }, new() { Id = "rmy", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Vlax Romani", + Comment = null, }, new() { Id = "rmz", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Marma", + Comment = null, }, new() { Id = "rnb", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Brunca Sign Language", + Comment = null, }, new() { Id = "rnd", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Ruund", + Comment = null, }, new() { Id = "rng", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Ronga", + Comment = null, }, new() { Id = "rnl", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Ranglong", + Comment = null, }, new() { Id = "rnn", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Roon", + Comment = null, }, new() { Id = "rnp", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Rongpo", + Comment = null, }, new() { Id = "rnr", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Nari Nari", + Comment = null, }, new() { Id = "rnw", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Rungwa", + Comment = null, }, new() { Id = "rob", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Tae'", + Comment = null, }, new() { Id = "roc", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Cacgia Roglai", + Comment = null, }, new() { Id = "rod", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Rogo", + Comment = null, }, new() { Id = "roe", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Ronji", + Comment = null, }, new() { Id = "rof", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Rombo", + Comment = null, }, new() { Id = "rog", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Northern Roglai", + Comment = null, }, new() { @@ -40247,22 +62058,29 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Romansh", + Comment = null, }, new() { Id = "rol", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Romblomanon", + Comment = null, }, new() { Id = "rom", Part2B = "rom", Part2T = "rom", + Part1 = null, Scope = "M", LanguageType = "L", RefName = "Romany", + Comment = null, }, new() { @@ -40273,216 +62091,337 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Romanian", + Comment = null, }, new() { Id = "roo", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Rotokas", + Comment = null, }, new() { Id = "rop", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kriol", + Comment = null, }, new() { Id = "ror", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Rongga", + Comment = null, }, new() { Id = "rou", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Runga", + Comment = null, }, new() { Id = "row", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Dela-Oenale", + Comment = null, }, new() { Id = "rpn", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Repanbitip", + Comment = null, }, new() { Id = "rpt", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Rapting", + Comment = null, }, new() { Id = "rri", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Ririo", + Comment = null, }, new() { Id = "rrm", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Moriori", + Comment = null, }, new() { Id = "rro", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Waima", + Comment = null, }, new() { Id = "rrt", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Arritinngithigh", + Comment = null, }, new() { Id = "rsb", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Romano-Serbian", + Comment = null, }, new() { Id = "rsk", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Ruthenian", + Comment = null, }, new() { Id = "rsl", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Russian Sign Language", + Comment = null, }, new() { Id = "rsm", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Miriwoong Sign Language", + Comment = null, }, new() { Id = "rsn", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Rwandan Sign Language", + Comment = null, }, new() { Id = "rsw", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Rishiwa", + Comment = null, }, new() { Id = "rtc", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Rungtu Chin", + Comment = null, }, new() { Id = "rth", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Ratahan", + Comment = null, }, new() { Id = "rtm", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Rotuman", + Comment = null, }, new() { Id = "rts", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Yurats", + Comment = null, }, new() { Id = "rtw", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Rathawi", + Comment = null, }, new() { Id = "rub", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Gungu", + Comment = null, }, new() { Id = "ruc", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Ruuli", + Comment = null, }, new() { Id = "rue", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Rusyn", + Comment = null, }, new() { Id = "ruf", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Luguru", + Comment = null, }, new() { Id = "rug", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Roviana", + Comment = null, }, new() { Id = "ruh", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Ruga", + Comment = null, }, new() { Id = "rui", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Rufiji", + Comment = null, }, new() { Id = "ruk", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Che", + Comment = null, }, new() { @@ -40493,29 +62432,40 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Rundi", + Comment = null, }, new() { Id = "ruo", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Istro Romanian", + Comment = null, }, new() { Id = "rup", Part2B = "rup", Part2T = "rup", + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Macedo-Romanian", + Comment = null, }, new() { Id = "ruq", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Megleno Romanian", + Comment = null, }, new() { @@ -40526,162 +62476,249 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Russian", + Comment = null, }, new() { Id = "rut", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Rutul", + Comment = null, }, new() { Id = "ruu", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Lanas Lobu", + Comment = null, }, new() { Id = "ruy", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Mala (Nigeria)", + Comment = null, }, new() { Id = "ruz", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Ruma", + Comment = null, }, new() { Id = "rwa", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Rawo", + Comment = null, }, new() { Id = "rwk", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Rwa", + Comment = null, }, new() { Id = "rwl", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Ruwila", + Comment = null, }, new() { Id = "rwm", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Amba (Uganda)", + Comment = null, }, new() { Id = "rwo", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Rawa", + Comment = null, }, new() { Id = "rwr", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Marwari (India)", + Comment = null, }, new() { Id = "rxd", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Ngardi", + Comment = null, }, new() { Id = "rxw", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Karuwali", + Comment = null, }, new() { Id = "ryn", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Northern Amami-Oshima", + Comment = null, }, new() { Id = "rys", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Yaeyama", + Comment = null, }, new() { Id = "ryu", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Central Okinawan", + Comment = null, }, new() { Id = "rzh", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Rāziḥī", + Comment = null, }, new() { Id = "saa", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Saba", + Comment = null, }, new() { Id = "sab", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Buglere", + Comment = null, }, new() { Id = "sac", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Meskwaki", + Comment = null, }, new() { Id = "sad", Part2B = "sad", Part2T = "sad", + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Sandawe", + Comment = null, }, new() { Id = "sae", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Sabanê", + Comment = null, }, new() { Id = "saf", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Safaliba", + Comment = null, }, new() { @@ -40692,38 +62729,51 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sango", + Comment = null, }, new() { Id = "sah", Part2B = "sah", Part2T = "sah", + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Yakut", + Comment = null, }, new() { Id = "saj", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Sahu", + Comment = null, }, new() { Id = "sak", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Sake", + Comment = null, }, new() { Id = "sam", Part2B = "sam", Part2T = "sam", + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Samaritan Aramaic", + Comment = null, }, new() { @@ -40734,1156 +62784,1789 @@ public static Iso6393Data Create() => Scope = "M", LanguageType = "H", RefName = "Sanskrit", + Comment = null, }, new() { Id = "sao", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Sause", + Comment = null, }, new() { Id = "saq", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Samburu", + Comment = null, }, new() { Id = "sar", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Saraveca", + Comment = null, }, new() { Id = "sas", Part2B = "sas", Part2T = "sas", + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Sasak", + Comment = null, }, new() { Id = "sat", Part2B = "sat", Part2T = "sat", + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Santali", + Comment = null, }, new() { Id = "sau", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Saleman", + Comment = null, }, new() { Id = "sav", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Saafi-Saafi", + Comment = null, }, new() { Id = "saw", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Sawi", + Comment = null, }, new() { Id = "sax", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Sa", + Comment = null, }, new() { Id = "say", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Saya", + Comment = null, }, new() { Id = "saz", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Saurashtra", + Comment = null, }, new() { Id = "sba", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Ngambay", + Comment = null, }, new() { Id = "sbb", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Simbo", + Comment = null, }, new() { Id = "sbc", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kele (Papua New Guinea)", + Comment = null, }, new() { Id = "sbd", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Southern Samo", + Comment = null, }, new() { Id = "sbe", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Saliba", + Comment = null, }, new() { Id = "sbf", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Chabu", + Comment = null, }, new() { Id = "sbg", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Seget", + Comment = null, }, new() { Id = "sbh", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Sori-Harengan", + Comment = null, }, new() { Id = "sbi", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Seti", + Comment = null, }, new() { Id = "sbj", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Surbakhal", + Comment = null, }, new() { Id = "sbk", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Safwa", + Comment = null, }, new() { Id = "sbl", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Botolan Sambal", + Comment = null, }, new() { Id = "sbm", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Sagala", + Comment = null, }, new() { Id = "sbn", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Sindhi Bhil", + Comment = null, }, new() { Id = "sbo", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Sabüm", + Comment = null, }, new() { Id = "sbp", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Sangu (Tanzania)", + Comment = null, }, new() { Id = "sbq", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Sileibi", + Comment = null, }, new() { Id = "sbr", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Sembakung Murut", + Comment = null, }, new() { Id = "sbs", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Subiya", + Comment = null, }, new() { Id = "sbt", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kimki", + Comment = null, }, new() { Id = "sbu", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Stod Bhoti", + Comment = null, }, new() { Id = "sbv", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "H", RefName = "Sabine", + Comment = null, }, new() { Id = "sbw", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Simba", + Comment = null, }, new() { Id = "sbx", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Seberuang", + Comment = null, }, new() { Id = "sby", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Soli", + Comment = null, }, new() { Id = "sbz", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Sara Kaba", + Comment = null, }, new() { Id = "scb", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Chut", + Comment = null, }, new() { Id = "sce", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Dongxiang", + Comment = null, }, new() { Id = "scf", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "San Miguel Creole French", + Comment = null, }, new() { Id = "scg", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Sanggau", + Comment = null, }, new() { Id = "sch", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Sakachep", + Comment = null, }, new() { Id = "sci", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Sri Lankan Creole Malay", + Comment = null, }, new() { Id = "sck", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Sadri", + Comment = null, }, new() { Id = "scl", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Shina", + Comment = null, }, new() { Id = "scn", Part2B = "scn", Part2T = "scn", + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Sicilian", + Comment = null, }, new() { Id = "sco", Part2B = "sco", Part2T = "sco", + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Scots", + Comment = null, }, new() { Id = "scp", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Hyolmo", + Comment = null, }, new() { Id = "scq", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Sa'och", + Comment = null, }, new() { Id = "scs", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "North Slavey", + Comment = null, }, new() { Id = "sct", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Southern Katang", + Comment = null, }, new() { Id = "scu", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Shumcho", + Comment = null, }, new() { Id = "scv", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Sheni", + Comment = null, }, new() { Id = "scw", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Sha", + Comment = null, }, new() { Id = "scx", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "H", RefName = "Sicel", + Comment = null, }, new() { Id = "scz", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Shaetlan", + Comment = null, }, new() { Id = "sda", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Toraja-Sa'dan", + Comment = null, }, new() { Id = "sdb", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Shabak", + Comment = null, }, new() { Id = "sdc", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Sassarese Sardinian", + Comment = null, }, new() { Id = "sde", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Surubu", + Comment = null, }, new() { Id = "sdf", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Sarli", + Comment = null, }, new() { Id = "sdg", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Savi", + Comment = null, }, new() { Id = "sdh", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Southern Kurdish", + Comment = null, }, new() { Id = "sdj", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Suundi", + Comment = null, }, new() { Id = "sdk", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Sos Kundi", + Comment = null, }, new() { Id = "sdl", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Saudi Arabian Sign Language", + Comment = null, }, new() { Id = "sdn", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Gallurese Sardinian", + Comment = null, }, new() { Id = "sdo", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Bukar-Sadung Bidayuh", + Comment = null, }, new() { Id = "sdp", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Sherdukpen", + Comment = null, }, new() { Id = "sdq", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Semandang", + Comment = null, }, new() { Id = "sdr", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Oraon Sadri", + Comment = null, }, new() { Id = "sds", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Sened", + Comment = null, }, new() { Id = "sdt", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Shuadit", + Comment = null, }, new() { Id = "sdu", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Sarudu", + Comment = null, }, new() { Id = "sdx", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Sibu Melanau", + Comment = null, }, new() { Id = "sdz", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Sallands", + Comment = null, }, new() { Id = "sea", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Semai", + Comment = null, }, new() { Id = "seb", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Shempire Senoufo", + Comment = null, }, new() { Id = "sec", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Sechelt", + Comment = null, }, new() { Id = "sed", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Sedang", + Comment = null, }, new() { Id = "see", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Seneca", + Comment = null, }, new() { Id = "sef", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Cebaara Senoufo", + Comment = null, }, new() { Id = "seg", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Segeju", + Comment = null, }, new() { Id = "seh", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Sena", + Comment = null, }, new() { Id = "sei", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Seri", + Comment = null, }, new() { Id = "sej", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Sene", + Comment = null, }, new() { Id = "sek", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Sekani", + Comment = null, }, new() { Id = "sel", Part2B = "sel", Part2T = "sel", + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Selkup", + Comment = null, }, new() { Id = "sen", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Nanerigé Sénoufo", + Comment = null, }, new() { Id = "seo", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Suarmin", + Comment = null, }, new() { Id = "sep", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Sìcìté Sénoufo", + Comment = null, }, new() { Id = "seq", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Senara Sénoufo", + Comment = null, }, new() { Id = "ser", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Serrano", + Comment = null, }, new() { Id = "ses", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Koyraboro Senni Songhai", + Comment = null, }, new() { Id = "set", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Sentani", + Comment = null, }, new() { Id = "seu", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Serui-Laut", + Comment = null, }, new() { Id = "sev", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Nyarafolo Senoufo", + Comment = null, }, new() { Id = "sew", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Sewa Bay", + Comment = null, }, new() { Id = "sey", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Secoya", + Comment = null, }, new() { Id = "sez", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Senthang Chin", + Comment = null, }, new() { Id = "sfb", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Langue des signes de Belgique Francophone", + Comment = null, }, new() { Id = "sfe", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Eastern Subanen", + Comment = null, }, new() { Id = "sfm", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Small Flowery Miao", + Comment = null, }, new() { Id = "sfs", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "South African Sign Language", + Comment = null, }, new() { Id = "sfw", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Sehwi", + Comment = null, }, new() { Id = "sga", Part2B = "sga", Part2T = "sga", + Part1 = null, Scope = "I", LanguageType = "H", RefName = "Old Irish (to 900)", + Comment = null, }, new() { Id = "sgb", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Mag-antsi Ayta", + Comment = null, }, new() { Id = "sgc", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kipsigis", + Comment = null, }, new() { Id = "sgd", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Surigaonon", + Comment = null, }, new() { Id = "sge", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Segai", + Comment = null, }, new() { Id = "sgg", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Swiss-German Sign Language", + Comment = null, }, new() { Id = "sgh", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Shughni", + Comment = null, }, new() { Id = "sgi", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Suga", + Comment = null, }, new() { Id = "sgj", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Surgujia", + Comment = null, }, new() { Id = "sgk", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Sangkong", + Comment = null, }, new() { Id = "sgm", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Singa", + Comment = null, }, new() { Id = "sgp", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Singpho", + Comment = null, }, new() { Id = "sgr", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Sangisari", + Comment = null, }, new() { Id = "sgs", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Samogitian", + Comment = null, }, new() { Id = "sgt", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Brokpake", + Comment = null, }, new() { Id = "sgu", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Salas", + Comment = null, }, new() { Id = "sgw", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Sebat Bet Gurage", + Comment = null, }, new() { Id = "sgx", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Sierra Leone Sign Language", + Comment = null, }, new() { Id = "sgy", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Sanglechi", + Comment = null, }, new() { Id = "sgz", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Sursurunga", + Comment = null, }, new() { Id = "sha", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Shall-Zwall", + Comment = null, }, new() { Id = "shb", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Ninam", + Comment = null, }, new() { Id = "shc", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Sonde", + Comment = null, }, new() { Id = "shd", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kundal Shahi", + Comment = null, }, new() { Id = "she", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Sheko", + Comment = null, }, new() { Id = "shg", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Shua", + Comment = null, }, new() { Id = "shh", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Shoshoni", + Comment = null, }, new() { Id = "shi", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Tachelhit", + Comment = null, }, new() { Id = "shj", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Shatt", + Comment = null, }, new() { Id = "shk", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Shilluk", + Comment = null, }, new() { Id = "shl", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Shendu", + Comment = null, }, new() { Id = "shm", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Shahrudi", + Comment = null, }, new() { Id = "shn", Part2B = "shn", Part2T = "shn", + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Shan", + Comment = null, }, new() { Id = "sho", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Shanga", + Comment = null, }, new() { Id = "shp", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Shipibo-Conibo", + Comment = null, }, new() { Id = "shq", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Sala", + Comment = null, }, new() { Id = "shr", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Shi", + Comment = null, }, new() { Id = "shs", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Shuswap", + Comment = null, }, new() { Id = "sht", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Shasta", + Comment = null, }, new() { Id = "shu", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Chadian Arabic", + Comment = null, }, new() { Id = "shv", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Shehri", + Comment = null, }, new() { Id = "shw", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Shwai", + Comment = null, }, new() { Id = "shx", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "She", + Comment = null, }, new() { Id = "shy", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Tachawit", + Comment = null, }, new() { Id = "shz", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Syenara Senoufo", + Comment = null, }, new() { Id = "sia", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Akkala Sami", + Comment = null, }, new() { Id = "sib", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Sebop", + Comment = null, }, new() { Id = "sid", Part2B = "sid", Part2T = "sid", + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Sidamo", + Comment = null, }, new() { Id = "sie", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Simaa", + Comment = null, }, new() { Id = "sif", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Siamou", + Comment = null, }, new() { Id = "sig", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Paasaal", + Comment = null, }, new() { Id = "sih", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Zire", + Comment = null, }, new() { Id = "sii", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Shom Peng", + Comment = null, }, new() { Id = "sij", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Numbami", + Comment = null, }, new() { Id = "sik", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Sikiana", + Comment = null, }, new() { Id = "sil", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Tumulung Sisaala", + Comment = null, }, new() { Id = "sim", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Mende (Papua New Guinea)", + Comment = null, }, new() { @@ -41894,419 +64577,656 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sinhala", + Comment = null, }, new() { Id = "sip", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Sikkimese", + Comment = null, }, new() { Id = "siq", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Sonia", + Comment = null, }, new() { Id = "sir", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Siri", + Comment = null, }, new() { Id = "sis", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Siuslaw", + Comment = null, }, new() { Id = "siu", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Sinagen", + Comment = null, }, new() { Id = "siv", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Sumariup", + Comment = null, }, new() { Id = "siw", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Siwai", + Comment = null, }, new() { Id = "six", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Sumau", + Comment = null, }, new() { Id = "siy", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Sivandi", + Comment = null, }, new() { Id = "siz", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Siwi", + Comment = null, }, new() { Id = "sja", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Epena", + Comment = null, }, new() { Id = "sjb", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Sajau Basap", + Comment = null, }, new() { Id = "sjc", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Shaojiang Chinese", + Comment = null, }, new() { Id = "sjd", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kildin Sami", + Comment = null, }, new() { Id = "sje", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Pite Sami", + Comment = null, }, new() { Id = "sjg", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Assangori", + Comment = null, }, new() { Id = "sjk", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Kemi Sami", + Comment = null, }, new() { Id = "sjl", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Sajalong", + Comment = null, }, new() { Id = "sjm", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Mapun", + Comment = null, }, new() { Id = "sjn", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "C", RefName = "Sindarin", + Comment = null, }, new() { Id = "sjo", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Xibe", + Comment = null, }, new() { Id = "sjp", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Surjapuri", + Comment = null, }, new() { Id = "sjr", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Siar-Lak", + Comment = null, }, new() { Id = "sjs", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Senhaja De Srair", + Comment = null, }, new() { Id = "sjt", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Ter Sami", + Comment = null, }, new() { Id = "sju", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Ume Sami", + Comment = null, }, new() { Id = "sjw", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Shawnee", + Comment = null, }, new() { Id = "ska", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Skagit", + Comment = null, }, new() { Id = "skb", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Saek", + Comment = null, }, new() { Id = "skc", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Ma Manda", + Comment = null, }, new() { Id = "skd", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Southern Sierra Miwok", + Comment = null, }, new() { Id = "ske", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Seke (Vanuatu)", + Comment = null, }, new() { Id = "skf", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Sakirabiá", + Comment = null, }, new() { Id = "skg", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Sakalava Malagasy", + Comment = null, }, new() { Id = "skh", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Sikule", + Comment = null, }, new() { Id = "ski", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Sika", + Comment = null, }, new() { Id = "skj", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Seke (Nepal)", + Comment = null, }, new() { Id = "skm", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kutong", + Comment = null, }, new() { Id = "skn", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kolibugan Subanon", + Comment = null, }, new() { Id = "sko", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Seko Tengah", + Comment = null, }, new() { Id = "skp", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Sekapan", + Comment = null, }, new() { Id = "skq", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Sininkere", + Comment = null, }, new() { Id = "skr", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Saraiki", + Comment = null, }, new() { Id = "sks", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Maia", + Comment = null, }, new() { Id = "skt", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Sakata", + Comment = null, }, new() { Id = "sku", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Sakao", + Comment = null, }, new() { Id = "skv", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Skou", + Comment = null, }, new() { Id = "skw", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Skepi Creole Dutch", + Comment = null, }, new() { Id = "skx", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Seko Padang", + Comment = null, }, new() { Id = "sky", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Sikaiana", + Comment = null, }, new() { Id = "skz", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Sekar", + Comment = null, }, new() { Id = "slc", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Sáliba", + Comment = null, }, new() { Id = "sld", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Sissala", + Comment = null, }, new() { Id = "sle", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Sholaga", + Comment = null, }, new() { Id = "slf", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Swiss-Italian Sign Language", + Comment = null, }, new() { Id = "slg", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Selungai Murut", + Comment = null, }, new() { Id = "slh", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Southern Puget Sound Salish", + Comment = null, }, new() { Id = "sli", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Lower Silesian", + Comment = null, }, new() { Id = "slj", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Salumá", + Comment = null, }, new() { @@ -42317,62 +65237,95 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Slovak", + Comment = null, }, new() { Id = "sll", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Salt-Yui", + Comment = null, }, new() { Id = "slm", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Pangutaran Sama", + Comment = null, }, new() { Id = "sln", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Salinan", + Comment = null, }, new() { Id = "slp", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Lamaholot", + Comment = null, }, new() { Id = "slr", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Salar", + Comment = null, }, new() { Id = "sls", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Singapore Sign Language", + Comment = null, }, new() { Id = "slt", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Sila", + Comment = null, }, new() { Id = "slu", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Selaru", + Comment = null, }, new() { @@ -42383,57 +65336,84 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Slovenian", + Comment = null, }, new() { Id = "slw", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Sialum", + Comment = null, }, new() { Id = "slx", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Salampasu", + Comment = null, }, new() { Id = "sly", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Selayar", + Comment = null, }, new() { Id = "slz", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Ma'ya", + Comment = null, }, new() { Id = "sma", Part2B = "sma", Part2T = "sma", + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Southern Sami", + Comment = null, }, new() { Id = "smb", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Simbari", + Comment = null, }, new() { Id = "smc", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Som", + Comment = null, }, new() { @@ -42444,66 +65424,95 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Northern Sami", + Comment = null, }, new() { Id = "smf", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Auwe", + Comment = null, }, new() { Id = "smg", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Simbali", + Comment = null, }, new() { Id = "smh", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Samei", + Comment = null, }, new() { Id = "smj", Part2B = "smj", Part2T = "smj", + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Lule Sami", + Comment = null, }, new() { Id = "smk", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Bolinao", + Comment = null, }, new() { Id = "sml", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Central Sama", + Comment = null, }, new() { Id = "smm", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Musasa", + Comment = null, }, new() { Id = "smn", Part2B = "smn", Part2T = "smn", + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Inari Sami", + Comment = null, }, new() { @@ -42514,85 +65523,128 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Samoan", + Comment = null, }, new() { Id = "smp", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Samaritan", + Comment = null, }, new() { Id = "smq", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Samo", + Comment = null, }, new() { Id = "smr", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Simeulue", + Comment = null, }, new() { Id = "sms", Part2B = "sms", Part2T = "sms", + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Skolt Sami", + Comment = null, }, new() { Id = "smt", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Simte", + Comment = null, }, new() { Id = "smu", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Somray", + Comment = null, }, new() { Id = "smv", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Samvedi", + Comment = null, }, new() { Id = "smw", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Sumbawa", + Comment = null, }, new() { Id = "smx", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Samba", + Comment = null, }, new() { Id = "smy", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Semnani", + Comment = null, }, new() { Id = "smz", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Simeku", + Comment = null, }, new() { @@ -42603,13 +65655,18 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Shona", + Comment = null, }, new() { Id = "snc", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Sinaugoro", + Comment = null, }, new() { @@ -42620,227 +65677,348 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sindhi", + Comment = null, }, new() { Id = "sne", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Bau Bidayuh", + Comment = null, }, new() { Id = "snf", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Noon", + Comment = null, }, new() { Id = "sng", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Sanga (Democratic Republic of Congo)", + Comment = null, }, new() { Id = "sni", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Sensi", + Comment = null, }, new() { Id = "snj", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Riverain Sango", + Comment = null, }, new() { Id = "snk", Part2B = "snk", Part2T = "snk", + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Soninke", + Comment = null, }, new() { Id = "snl", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Sangil", + Comment = null, }, new() { Id = "snm", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Southern Ma'di", + Comment = null, }, new() { Id = "snn", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Siona", + Comment = null, }, new() { Id = "sno", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Snohomish", + Comment = null, }, new() { Id = "snp", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Siane", + Comment = null, }, new() { Id = "snq", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Sangu (Gabon)", + Comment = null, }, new() { Id = "snr", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Sihan", + Comment = null, }, new() { Id = "sns", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "South West Bay", + Comment = null, }, new() { Id = "snu", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Senggi", + Comment = null, }, new() { Id = "snv", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Sa'ban", + Comment = null, }, new() { Id = "snw", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Selee", + Comment = null, }, new() { Id = "snx", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Sam", + Comment = null, }, new() { Id = "sny", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Saniyo-Hiyewe", + Comment = null, }, new() { Id = "snz", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kou", + Comment = null, }, new() { Id = "soa", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Thai Song", + Comment = null, }, new() { Id = "sob", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Sobei", + Comment = null, }, new() { Id = "soc", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "So (Democratic Republic of Congo)", + Comment = null, }, new() { Id = "sod", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Songoora", + Comment = null, }, new() { Id = "soe", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Songomeno", + Comment = null, }, new() { Id = "sog", Part2B = "sog", Part2T = "sog", + Part1 = null, Scope = "I", LanguageType = "H", RefName = "Sogdian", + Comment = null, }, new() { Id = "soh", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Aka", + Comment = null, }, new() { Id = "soi", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Sonha", + Comment = null, }, new() { Id = "soj", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Soi", + Comment = null, }, new() { Id = "sok", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Sokoro", + Comment = null, }, new() { Id = "sol", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Solos", + Comment = null, }, new() { @@ -42851,41 +66029,62 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Somali", + Comment = null, }, new() { Id = "soo", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Songo", + Comment = null, }, new() { Id = "sop", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Songe", + Comment = null, }, new() { Id = "soq", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kanasi", + Comment = null, }, new() { Id = "sor", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Somrai", + Comment = null, }, new() { Id = "sos", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Seeku", + Comment = null, }, new() { @@ -42896,48 +66095,73 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Southern Sotho", + Comment = null, }, new() { Id = "sou", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Southern Thai", + Comment = null, }, new() { Id = "sov", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Sonsorol", + Comment = null, }, new() { Id = "sow", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Sowanda", + Comment = null, }, new() { Id = "sox", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Swo", + Comment = null, }, new() { Id = "soy", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Miyobe", + Comment = null, }, new() { Id = "soz", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Temi", + Comment = null, }, new() { @@ -42948,160 +66172,249 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Spanish", + Comment = null, }, new() { Id = "spb", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Sepa (Indonesia)", + Comment = null, }, new() { Id = "spc", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Sapé", + Comment = null, }, new() { Id = "spd", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Saep", + Comment = null, }, new() { Id = "spe", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Sepa (Papua New Guinea)", + Comment = null, }, new() { Id = "spg", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Sian", + Comment = null, }, new() { Id = "spi", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Saponi", + Comment = null, }, new() { Id = "spk", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Sengo", + Comment = null, }, new() { Id = "spl", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Selepet", + Comment = null, }, new() { Id = "spm", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Akukem", + Comment = null, }, new() { Id = "spn", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Sanapaná", + Comment = null, }, new() { Id = "spo", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Spokane", + Comment = null, }, new() { Id = "spp", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Supyire Senoufo", + Comment = null, }, new() { Id = "spq", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Loreto-Ucayali Spanish", + Comment = null, }, new() { Id = "spr", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Saparua", + Comment = null, }, new() { Id = "sps", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Saposa", + Comment = null, }, new() { Id = "spt", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Spiti Bhoti", + Comment = null, }, new() { Id = "spu", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Sapuan", + Comment = null, }, new() { Id = "spv", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Sambalpuri", + Comment = null, }, new() { Id = "spx", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "H", RefName = "South Picene", + Comment = null, }, new() { Id = "spy", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Sabaot", + Comment = null, }, new() { Id = "sqa", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Shama-Sambuga", + Comment = null, }, new() { Id = "sqh", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Shau", + Comment = null, }, new() { @@ -43112,97 +66425,150 @@ public static Iso6393Data Create() => Scope = "M", LanguageType = "L", RefName = "Albanian", + Comment = null, }, new() { Id = "sqk", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Albanian Sign Language", + Comment = null, }, new() { Id = "sqm", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Suma", + Comment = null, }, new() { Id = "sqn", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Susquehannock", + Comment = null, }, new() { Id = "sqo", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Sorkhei", + Comment = null, }, new() { Id = "sqq", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Sou", + Comment = null, }, new() { Id = "sqr", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "H", RefName = "Siculo Arabic", + Comment = null, }, new() { Id = "sqs", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Sri Lankan Sign Language", + Comment = null, }, new() { Id = "sqt", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Soqotri", + Comment = null, }, new() { Id = "squ", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Squamish", + Comment = null, }, new() { Id = "sqx", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kufr Qassem Sign Language (KQSL)", + Comment = null, }, new() { Id = "sra", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Saruga", + Comment = null, }, new() { Id = "srb", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Sora", + Comment = null, }, new() { Id = "src", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Logudorese Sardinian", + Comment = null, }, new() { @@ -43213,78 +66579,117 @@ public static Iso6393Data Create() => Scope = "M", LanguageType = "L", RefName = "Sardinian", + Comment = null, }, new() { Id = "sre", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Sara", + Comment = null, }, new() { Id = "srf", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Nafi", + Comment = null, }, new() { Id = "srg", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Sulod", + Comment = null, }, new() { Id = "srh", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Sarikoli", + Comment = null, }, new() { Id = "sri", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Siriano", + Comment = null, }, new() { Id = "srk", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Serudung Murut", + Comment = null, }, new() { Id = "srl", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Isirawa", + Comment = null, }, new() { Id = "srm", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Saramaccan", + Comment = null, }, new() { Id = "srn", Part2B = "srn", Part2T = "srn", + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Sranan Tongo", + Comment = null, }, new() { Id = "sro", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Campidanese Sardinian", + Comment = null, }, new() { @@ -43295,225 +66700,348 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Serbian", + Comment = null, }, new() { Id = "srq", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Sirionó", + Comment = null, }, new() { Id = "srr", Part2B = "srr", Part2T = "srr", + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Serer", + Comment = null, }, new() { Id = "srs", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Sarsi", + Comment = null, }, new() { Id = "srt", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Sauri", + Comment = null, }, new() { Id = "sru", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Suruí", + Comment = null, }, new() { Id = "srv", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Southern Sorsoganon", + Comment = null, }, new() { Id = "srw", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Serua", + Comment = null, }, new() { Id = "srx", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Sirmauri", + Comment = null, }, new() { Id = "sry", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Sera", + Comment = null, }, new() { Id = "srz", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Shahmirzadi", + Comment = null, }, new() { Id = "ssb", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Southern Sama", + Comment = null, }, new() { Id = "ssc", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Suba-Simbiti", + Comment = null, }, new() { Id = "ssd", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Siroi", + Comment = null, }, new() { Id = "sse", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Balangingi", + Comment = null, }, new() { Id = "ssf", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Thao", + Comment = null, }, new() { Id = "ssg", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Seimat", + Comment = null, }, new() { Id = "ssh", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Shihhi Arabic", + Comment = null, }, new() { Id = "ssi", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Sansi", + Comment = null, }, new() { Id = "ssj", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Sausi", + Comment = null, }, new() { Id = "ssk", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Sunam", + Comment = null, }, new() { Id = "ssl", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Western Sisaala", + Comment = null, }, new() { Id = "ssm", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Semnam", + Comment = null, }, new() { Id = "ssn", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Waata", + Comment = null, }, new() { Id = "sso", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Sissano", + Comment = null, }, new() { Id = "ssp", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Spanish Sign Language", + Comment = null, }, new() { Id = "ssq", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "So'a", + Comment = null, }, new() { Id = "ssr", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Swiss-French Sign Language", + Comment = null, }, new() { Id = "sss", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Sô", + Comment = null, }, new() { Id = "sst", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Sinasina", + Comment = null, }, new() { Id = "ssu", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Susuami", + Comment = null, }, new() { Id = "ssv", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Shark Bay", + Comment = null, }, new() { @@ -43524,246 +67052,381 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Swati", + Comment = null, }, new() { Id = "ssx", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Samberigi", + Comment = null, }, new() { Id = "ssy", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Saho", + Comment = null, }, new() { Id = "ssz", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Sengseng", + Comment = null, }, new() { Id = "sta", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Settla", + Comment = null, }, new() { Id = "stb", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Northern Subanen", + Comment = null, }, new() { Id = "std", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Sentinel", + Comment = null, }, new() { Id = "ste", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Liana-Seti", + Comment = null, }, new() { Id = "stf", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Seta", + Comment = null, }, new() { Id = "stg", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Trieng", + Comment = null, }, new() { Id = "sth", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Shelta", + Comment = null, }, new() { Id = "sti", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Bulo Stieng", + Comment = null, }, new() { Id = "stj", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Matya Samo", + Comment = null, }, new() { Id = "stk", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Arammba", + Comment = null, }, new() { Id = "stl", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Stellingwerfs", + Comment = null, }, new() { Id = "stm", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Setaman", + Comment = null, }, new() { Id = "stn", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Owa", + Comment = null, }, new() { Id = "sto", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Stoney", + Comment = null, }, new() { Id = "stp", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Southeastern Tepehuan", + Comment = null, }, new() { Id = "stq", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Saterfriesisch", + Comment = null, }, new() { Id = "str", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Straits Salish", + Comment = null, }, new() { Id = "sts", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Shumashti", + Comment = null, }, new() { Id = "stt", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Budeh Stieng", + Comment = null, }, new() { Id = "stu", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Samtao", + Comment = null, }, new() { Id = "stv", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Silt'e", + Comment = null, }, new() { Id = "stw", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Satawalese", + Comment = null, }, new() { Id = "sty", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Siberian Tatar", + Comment = null, }, new() { Id = "sua", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Sulka", + Comment = null, }, new() { Id = "sub", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Suku", + Comment = null, }, new() { Id = "suc", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Western Subanon", + Comment = null, }, new() { Id = "sue", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Suena", + Comment = null, }, new() { Id = "sug", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Suganga", + Comment = null, }, new() { Id = "sui", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Suki", + Comment = null, }, new() { Id = "suj", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Shubi", + Comment = null, }, new() { Id = "suk", Part2B = "suk", Part2T = "suk", + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Sukuma", + Comment = null, }, new() { @@ -43774,136 +67437,205 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sundanese", + Comment = null, }, new() { Id = "suo", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Bouni", + Comment = null, }, new() { Id = "suq", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Tirmaga-Chai Suri", + Comment = null, }, new() { Id = "sur", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Mwaghavul", + Comment = null, }, new() { Id = "sus", Part2B = "sus", Part2T = "sus", + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Susu", + Comment = null, }, new() { Id = "sut", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Subtiaba", + Comment = null, }, new() { Id = "suv", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Puroik", + Comment = null, }, new() { Id = "suw", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Sumbwa", + Comment = null, }, new() { Id = "sux", Part2B = "sux", Part2T = "sux", + Part1 = null, Scope = "I", LanguageType = "H", RefName = "Sumerian", + Comment = null, }, new() { Id = "suy", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Suyá", + Comment = null, }, new() { Id = "suz", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Sunwar", + Comment = null, }, new() { Id = "sva", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Svan", + Comment = null, }, new() { Id = "svb", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Ulau-Suain", + Comment = null, }, new() { Id = "svc", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Vincentian Creole English", + Comment = null, }, new() { Id = "sve", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Serili", + Comment = null, }, new() { Id = "svk", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Slovakian Sign Language", + Comment = null, }, new() { Id = "svm", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Slavomolisano", + Comment = null, }, new() { Id = "svs", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Savosavo", + Comment = null, }, new() { Id = "svx", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "H", RefName = "Skalvian", + Comment = null, }, new() { @@ -43914,20 +67646,29 @@ public static Iso6393Data Create() => Scope = "M", LanguageType = "L", RefName = "Swahili (macrolanguage)", + Comment = null, }, new() { Id = "swb", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Maore Comorian", + Comment = null, }, new() { Id = "swc", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Congo Swahili", + Comment = null, }, new() { @@ -43938,472 +67679,733 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Swedish", + Comment = null, }, new() { Id = "swf", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Sere", + Comment = null, }, new() { Id = "swg", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Swabian", + Comment = null, }, new() { Id = "swh", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Swahili (individual language)", + Comment = null, }, new() { Id = "swi", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Sui", + Comment = null, }, new() { Id = "swj", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Sira", + Comment = null, }, new() { Id = "swk", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Malawi Sena", + Comment = null, }, new() { Id = "swl", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Swedish Sign Language", + Comment = null, }, new() { Id = "swm", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Samosa", + Comment = null, }, new() { Id = "swn", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Sawknah", + Comment = null, }, new() { Id = "swo", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Shanenawa", + Comment = null, }, new() { Id = "swp", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Suau", + Comment = null, }, new() { Id = "swq", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Sharwa", + Comment = null, }, new() { Id = "swr", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Saweru", + Comment = null, }, new() { Id = "sws", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Seluwasan", + Comment = null, }, new() { Id = "swt", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Sawila", + Comment = null, }, new() { Id = "swu", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Suwawa", + Comment = null, }, new() { Id = "swv", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Shekhawati", + Comment = null, }, new() { Id = "sww", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Sowa", + Comment = null, }, new() { Id = "swx", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Suruahá", + Comment = null, }, new() { Id = "swy", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Sarua", + Comment = null, }, new() { Id = "sxb", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Suba", + Comment = null, }, new() { Id = "sxc", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "H", RefName = "Sicanian", + Comment = null, }, new() { Id = "sxe", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Sighu", + Comment = null, }, new() { Id = "sxg", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Shuhi", + Comment = null, }, new() { Id = "sxk", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Southern Kalapuya", + Comment = null, }, new() { Id = "sxl", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Selian", + Comment = null, }, new() { Id = "sxm", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Samre", + Comment = null, }, new() { Id = "sxn", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Sangir", + Comment = null, }, new() { Id = "sxo", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "H", RefName = "Sorothaptic", + Comment = null, }, new() { Id = "sxr", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Saaroa", + Comment = null, }, new() { Id = "sxs", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Sasaru", + Comment = null, }, new() { Id = "sxu", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Upper Saxon", + Comment = null, }, new() { Id = "sxw", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Saxwe Gbe", + Comment = null, }, new() { Id = "sya", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Siang", + Comment = null, }, new() { Id = "syb", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Central Subanen", + Comment = null, }, new() { Id = "syc", Part2B = "syc", Part2T = "syc", + Part1 = null, Scope = "I", LanguageType = "H", RefName = "Classical Syriac", + Comment = null, }, new() { Id = "syi", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Seki", + Comment = null, }, new() { Id = "syk", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Sukur", + Comment = null, }, new() { Id = "syl", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Sylheti", + Comment = null, }, new() { Id = "sym", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Maya Samo", + Comment = null, }, new() { Id = "syn", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Senaya", + Comment = null, }, new() { Id = "syo", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Suoy", + Comment = null, }, new() { Id = "syr", Part2B = "syr", Part2T = "syr", + Part1 = null, Scope = "M", LanguageType = "L", RefName = "Syriac", + Comment = null, }, new() { Id = "sys", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Sinyar", + Comment = null, }, new() { Id = "syw", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kagate", + Comment = null, }, new() { Id = "syx", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Samay", + Comment = null, }, new() { Id = "syy", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Al-Sayyid Bedouin Sign Language", + Comment = null, }, new() { Id = "sza", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Semelai", + Comment = null, }, new() { Id = "szb", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Ngalum", + Comment = null, }, new() { Id = "szc", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Semaq Beri", + Comment = null, }, new() { Id = "sze", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Seze", + Comment = null, }, new() { Id = "szg", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Sengele", + Comment = null, }, new() { Id = "szl", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Silesian", + Comment = null, }, new() { Id = "szn", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Sula", + Comment = null, }, new() { Id = "szp", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Suabo", + Comment = null, }, new() { Id = "szs", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Solomon Islands Sign Language", + Comment = null, }, new() { Id = "szv", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Isu (Fako Division)", + Comment = null, }, new() { Id = "szw", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Sawai", + Comment = null, }, new() { Id = "szy", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Sakizaya", + Comment = null, }, new() { Id = "taa", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Lower Tanana", + Comment = null, }, new() { Id = "tab", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Tabassaran", + Comment = null, }, new() { Id = "tac", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Lowland Tarahumara", + Comment = null, }, new() { Id = "tad", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Tause", + Comment = null, }, new() { Id = "tae", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Tariana", + Comment = null, }, new() { Id = "taf", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Tapirapé", + Comment = null, }, new() { Id = "tag", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Tagoi", + Comment = null, }, new() { @@ -44414,27 +68416,40 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tahitian", + Comment = null, }, new() { Id = "taj", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Eastern Tamang", + Comment = null, }, new() { Id = "tak", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Tala", + Comment = null, }, new() { Id = "tal", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Tal", + Comment = null, }, new() { @@ -44445,48 +68460,73 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tamil", + Comment = null, }, new() { Id = "tan", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Tangale", + Comment = null, }, new() { Id = "tao", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Yami", + Comment = null, }, new() { Id = "tap", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Taabwa", + Comment = null, }, new() { Id = "taq", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Tamasheq", + Comment = null, }, new() { Id = "tar", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Central Tarahumara", + Comment = null, }, new() { Id = "tas", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Tay Boi", + Comment = null, }, new() { @@ -44497,601 +68537,942 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tatar", + Comment = null, }, new() { Id = "tau", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Upper Tanana", + Comment = null, }, new() { Id = "tav", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Tatuyo", + Comment = null, }, new() { Id = "taw", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Tai", + Comment = null, }, new() { Id = "tax", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Tamki", + Comment = null, }, new() { Id = "tay", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Atayal", + Comment = null, }, new() { Id = "taz", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Tocho", + Comment = null, }, new() { Id = "tba", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Aikanã", + Comment = null, }, new() { Id = "tbc", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Takia", + Comment = null, }, new() { Id = "tbd", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kaki Ae", + Comment = null, }, new() { Id = "tbe", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Tanimbili", + Comment = null, }, new() { Id = "tbf", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Mandara", + Comment = null, }, new() { Id = "tbg", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "North Tairora", + Comment = null, }, new() { Id = "tbh", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Dharawal", + Comment = null, }, new() { Id = "tbi", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Gaam", + Comment = null, }, new() { Id = "tbj", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Tiang", + Comment = null, }, new() { Id = "tbk", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Calamian Tagbanwa", + Comment = null, }, new() { Id = "tbl", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Tboli", + Comment = null, }, new() { Id = "tbm", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Tagbu", + Comment = null, }, new() { Id = "tbn", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Barro Negro Tunebo", + Comment = null, }, new() { Id = "tbo", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Tawala", + Comment = null, }, new() { Id = "tbp", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Taworta", + Comment = null, }, new() { Id = "tbr", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Tumtum", + Comment = null, }, new() { Id = "tbs", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Tanguat", + Comment = null, }, new() { Id = "tbt", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Tembo (Kitembo)", + Comment = null, }, new() { Id = "tbu", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Tubar", + Comment = null, }, new() { Id = "tbv", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Tobo", + Comment = null, }, new() { Id = "tbw", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Tagbanwa", + Comment = null, }, new() { Id = "tbx", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kapin", + Comment = null, }, new() { Id = "tby", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Tabaru", + Comment = null, }, new() { Id = "tbz", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Ditammari", + Comment = null, }, new() { Id = "tca", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Ticuna", + Comment = null, }, new() { Id = "tcb", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Tanacross", + Comment = null, }, new() { Id = "tcc", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Datooga", + Comment = null, }, new() { Id = "tcd", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Tafi", + Comment = null, }, new() { Id = "tce", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Southern Tutchone", + Comment = null, }, new() { Id = "tcf", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Malinaltepec Me'phaa", + Comment = null, }, new() { Id = "tcg", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Tamagario", + Comment = null, }, new() { Id = "tch", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Turks And Caicos Creole English", + Comment = null, }, new() { Id = "tci", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Wára", + Comment = null, }, new() { Id = "tck", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Tchitchege", + Comment = null, }, new() { Id = "tcl", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Taman (Myanmar)", + Comment = null, }, new() { Id = "tcm", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Tanahmerah", + Comment = null, }, new() { Id = "tcn", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Tichurong", + Comment = null, }, new() { Id = "tco", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Taungyo", + Comment = null, }, new() { Id = "tcp", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Tawr Chin", + Comment = null, }, new() { Id = "tcq", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kaiy", + Comment = null, }, new() { Id = "tcs", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Torres Strait Creole", + Comment = null, }, new() { Id = "tct", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "T'en", + Comment = null, }, new() { Id = "tcu", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Southeastern Tarahumara", + Comment = null, }, new() { Id = "tcw", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Tecpatlán Totonac", + Comment = null, }, new() { Id = "tcx", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Toda", + Comment = null, }, new() { Id = "tcy", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Tulu", + Comment = null, }, new() { Id = "tcz", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Thado Chin", + Comment = null, }, new() { Id = "tda", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Tagdal", + Comment = null, }, new() { Id = "tdb", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Panchpargania", + Comment = null, }, new() { Id = "tdc", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Emberá-Tadó", + Comment = null, }, new() { Id = "tdd", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Tai Nüa", + Comment = null, }, new() { Id = "tde", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Tiranige Diga Dogon", + Comment = null, }, new() { Id = "tdf", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Talieng", + Comment = null, }, new() { Id = "tdg", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Western Tamang", + Comment = null, }, new() { Id = "tdh", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Thulung", + Comment = null, }, new() { Id = "tdi", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Tomadino", + Comment = null, }, new() { Id = "tdj", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Tajio", + Comment = null, }, new() { Id = "tdk", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Tambas", + Comment = null, }, new() { Id = "tdl", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Sur", + Comment = null, }, new() { Id = "tdm", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Taruma", + Comment = null, }, new() { Id = "tdn", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Tondano", + Comment = null, }, new() { Id = "tdo", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Teme", + Comment = null, }, new() { Id = "tdq", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Tita", + Comment = null, }, new() { Id = "tdr", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Todrah", + Comment = null, }, new() { Id = "tds", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Doutai", + Comment = null, }, new() { Id = "tdt", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Tetun Dili", + Comment = null, }, new() { Id = "tdv", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Toro", + Comment = null, }, new() { Id = "tdx", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Tandroy-Mahafaly Malagasy", + Comment = null, }, new() { Id = "tdy", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Tadyawan", + Comment = null, }, new() { Id = "tea", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Temiar", + Comment = null, }, new() { Id = "teb", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Tetete", + Comment = null, }, new() { Id = "tec", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Terik", + Comment = null, }, new() { Id = "ted", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Tepo Krumen", + Comment = null, }, new() { Id = "tee", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Huehuetla Tepehua", + Comment = null, }, new() { Id = "tef", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Teressa", + Comment = null, }, new() { Id = "teg", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Teke-Tege", + Comment = null, }, new() { Id = "teh", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Tehuelche", + Comment = null, }, new() { Id = "tei", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Torricelli", + Comment = null, }, new() { Id = "tek", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Ibali Teke", + Comment = null, }, new() { @@ -45102,208 +69483,315 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Telugu", + Comment = null, }, new() { Id = "tem", Part2B = "tem", Part2T = "tem", + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Timne", + Comment = null, }, new() { Id = "ten", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Tama (Colombia)", + Comment = null, }, new() { Id = "teo", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Teso", + Comment = null, }, new() { Id = "tep", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Tepecano", + Comment = null, }, new() { Id = "teq", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Temein", + Comment = null, }, new() { Id = "ter", Part2B = "ter", Part2T = "ter", + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Tereno", + Comment = null, }, new() { Id = "tes", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Tengger", + Comment = null, }, new() { Id = "tet", Part2B = "tet", Part2T = "tet", + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Tetum", + Comment = null, }, new() { Id = "teu", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Soo", + Comment = null, }, new() { Id = "tev", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Teor", + Comment = null, }, new() { Id = "tew", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Tewa (USA)", + Comment = null, }, new() { Id = "tex", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Tennet", + Comment = null, }, new() { Id = "tey", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Tulishi", + Comment = null, }, new() { Id = "tez", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Tetserret", + Comment = null, }, new() { Id = "tfi", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Tofin Gbe", + Comment = null, }, new() { Id = "tfn", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Tanaina", + Comment = null, }, new() { Id = "tfo", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Tefaro", + Comment = null, }, new() { Id = "tfr", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Teribe", + Comment = null, }, new() { Id = "tft", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Ternate", + Comment = null, }, new() { Id = "tga", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Sagalla", + Comment = null, }, new() { Id = "tgb", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Tobilung", + Comment = null, }, new() { Id = "tgc", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Tigak", + Comment = null, }, new() { Id = "tgd", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Ciwogai", + Comment = null, }, new() { Id = "tge", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Eastern Gorkha Tamang", + Comment = null, }, new() { Id = "tgf", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Chalikha", + Comment = null, }, new() { Id = "tgh", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Tobagonian Creole English", + Comment = null, }, new() { Id = "tgi", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Lawunuia", + Comment = null, }, new() { Id = "tgj", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Tagin", + Comment = null, }, new() { @@ -45314,6 +69802,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tajik", + Comment = null, }, new() { @@ -45324,97 +69813,150 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tagalog", + Comment = null, }, new() { Id = "tgn", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Tandaganon", + Comment = null, }, new() { Id = "tgo", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Sudest", + Comment = null, }, new() { Id = "tgp", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Tangoa", + Comment = null, }, new() { Id = "tgq", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Tring", + Comment = null, }, new() { Id = "tgr", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Tareng", + Comment = null, }, new() { Id = "tgs", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Nume", + Comment = null, }, new() { Id = "tgt", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Central Tagbanwa", + Comment = null, }, new() { Id = "tgu", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Tanggu", + Comment = null, }, new() { Id = "tgv", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Tingui-Boto", + Comment = null, }, new() { Id = "tgw", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Tagwana Senoufo", + Comment = null, }, new() { Id = "tgx", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Tagish", + Comment = null, }, new() { Id = "tgy", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Togoyo", + Comment = null, }, new() { Id = "tgz", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Tagalaka", + Comment = null, }, new() { @@ -45425,232 +69967,359 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Thai", + Comment = null, }, new() { Id = "thd", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kuuk Thaayorre", + Comment = null, }, new() { Id = "the", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Chitwania Tharu", + Comment = null, }, new() { Id = "thf", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Thangmi", + Comment = null, }, new() { Id = "thh", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Northern Tarahumara", + Comment = null, }, new() { Id = "thi", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Tai Long", + Comment = null, }, new() { Id = "thk", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Tharaka", + Comment = null, }, new() { Id = "thl", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Dangaura Tharu", + Comment = null, }, new() { Id = "thm", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Aheu", + Comment = null, }, new() { Id = "thn", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Thachanadan", + Comment = null, }, new() { Id = "thp", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Thompson", + Comment = null, }, new() { Id = "thq", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kochila Tharu", + Comment = null, }, new() { Id = "thr", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Rana Tharu", + Comment = null, }, new() { Id = "ths", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Thakali", + Comment = null, }, new() { Id = "tht", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Tahltan", + Comment = null, }, new() { Id = "thu", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Thuri", + Comment = null, }, new() { Id = "thv", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Tahaggart Tamahaq", + Comment = null, }, new() { Id = "thy", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Tha", + Comment = null, }, new() { Id = "thz", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Tayart Tamajeq", + Comment = null, }, new() { Id = "tia", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Tidikelt Tamazight", + Comment = null, }, new() { Id = "tic", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Tira", + Comment = null, }, new() { Id = "tif", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Tifal", + Comment = null, }, new() { Id = "tig", Part2B = "tig", Part2T = "tig", + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Tigre", + Comment = null, }, new() { Id = "tih", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Timugon Murut", + Comment = null, }, new() { Id = "tii", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Tiene", + Comment = null, }, new() { Id = "tij", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Tilung", + Comment = null, }, new() { Id = "tik", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Tikar", + Comment = null, }, new() { Id = "til", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Tillamook", + Comment = null, }, new() { Id = "tim", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Timbe", + Comment = null, }, new() { Id = "tin", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Tindi", + Comment = null, }, new() { Id = "tio", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Teop", + Comment = null, }, new() { Id = "tip", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Trimuris", + Comment = null, }, new() { Id = "tiq", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Tiéfo", + Comment = null, }, new() { @@ -45661,851 +70330,1316 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tigrinya", + Comment = null, }, new() { Id = "tis", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Masadiit Itneg", + Comment = null, }, new() { Id = "tit", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Tinigua", + Comment = null, }, new() { Id = "tiu", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Adasen", + Comment = null, }, new() { Id = "tiv", Part2B = "tiv", Part2T = "tiv", + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Tiv", + Comment = null, }, new() { Id = "tiw", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Tiwi", + Comment = null, }, new() { Id = "tix", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Southern Tiwa", + Comment = null, }, new() { Id = "tiy", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Tiruray", + Comment = null, }, new() { Id = "tiz", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Tai Hongjin", + Comment = null, }, new() { Id = "tja", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Tajuasohn", + Comment = null, }, new() { Id = "tjg", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Tunjung", + Comment = null, }, new() { Id = "tji", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Northern Tujia", + Comment = null, }, new() { Id = "tjj", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Tjungundji", + Comment = null, }, new() { Id = "tjl", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Tai Laing", + Comment = null, }, new() { Id = "tjm", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Timucua", + Comment = null, }, new() { Id = "tjn", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Tonjon", + Comment = null, }, new() { Id = "tjo", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Temacine Tamazight", + Comment = null, }, new() { Id = "tjp", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Tjupany", + Comment = null, }, new() { Id = "tjs", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Southern Tujia", + Comment = null, }, new() { Id = "tju", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Tjurruru", + Comment = null, }, new() { Id = "tjw", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Djabwurrung", + Comment = null, }, new() { Id = "tka", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Truká", + Comment = null, }, new() { Id = "tkb", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Buksa", + Comment = null, }, new() { Id = "tkd", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Tukudede", + Comment = null, }, new() { Id = "tke", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Takwane", + Comment = null, }, new() { Id = "tkf", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Tukumanféd", + Comment = null, }, new() { Id = "tkg", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Tesaka Malagasy", + Comment = null, }, new() { Id = "tkl", Part2B = "tkl", Part2T = "tkl", + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Tokelau", + Comment = null, }, new() { Id = "tkm", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Takelma", + Comment = null, }, new() { Id = "tkn", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Toku-No-Shima", + Comment = null, }, new() { Id = "tkp", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Tikopia", + Comment = null, }, new() { Id = "tkq", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Tee", + Comment = null, }, new() { Id = "tkr", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Tsakhur", + Comment = null, }, new() { Id = "tks", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Takestani", + Comment = null, }, new() { Id = "tkt", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kathoriya Tharu", + Comment = null, }, new() { Id = "tku", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Upper Necaxa Totonac", + Comment = null, }, new() { Id = "tkv", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Mur Pano", + Comment = null, }, new() { Id = "tkw", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Teanu", + Comment = null, }, new() { Id = "tkx", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Tangko", + Comment = null, }, new() { Id = "tkz", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Takua", + Comment = null, }, new() { Id = "tla", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Southwestern Tepehuan", + Comment = null, }, new() { Id = "tlb", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Tobelo", + Comment = null, }, new() { Id = "tlc", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Yecuatla Totonac", + Comment = null, }, new() { Id = "tld", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Talaud", + Comment = null, }, new() { Id = "tlf", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Telefol", + Comment = null, }, new() { Id = "tlg", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Tofanma", + Comment = null, }, new() { Id = "tlh", Part2B = "tlh", Part2T = "tlh", + Part1 = null, Scope = "I", LanguageType = "C", RefName = "Klingon", + Comment = null, }, new() { Id = "tli", Part2B = "tli", Part2T = "tli", + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Tlingit", + Comment = null, }, new() { Id = "tlj", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Talinga-Bwisi", + Comment = null, }, new() { Id = "tlk", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Taloki", + Comment = null, }, new() { Id = "tll", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Tetela", + Comment = null, }, new() { Id = "tlm", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Tolomako", + Comment = null, }, new() { Id = "tln", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Talondo'", + Comment = null, }, new() { Id = "tlo", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Talodi", + Comment = null, }, new() { Id = "tlp", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Filomena Mata-Coahuitlán Totonac", + Comment = null, }, new() { Id = "tlq", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Tai Loi", + Comment = null, }, new() { Id = "tlr", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Talise", + Comment = null, }, new() { Id = "tls", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Tambotalo", + Comment = null, }, new() { Id = "tlt", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Sou Nama", + Comment = null, }, new() { Id = "tlu", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Tulehu", + Comment = null, }, new() { Id = "tlv", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Taliabu", + Comment = null, }, new() { Id = "tlx", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Khehek", + Comment = null, }, new() { Id = "tly", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Talysh", + Comment = null, }, new() { Id = "tma", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Tama (Chad)", + Comment = null, }, new() { Id = "tmb", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Katbol", + Comment = null, }, new() { Id = "tmc", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Tumak", + Comment = null, }, new() { Id = "tmd", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Haruai", + Comment = null, }, new() { Id = "tme", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Tremembé", + Comment = null, }, new() { Id = "tmf", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Toba-Maskoy", + Comment = null, }, new() { Id = "tmg", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Ternateño", + Comment = null, }, new() { Id = "tmh", Part2B = "tmh", Part2T = "tmh", + Part1 = null, Scope = "M", LanguageType = "L", RefName = "Tamashek", + Comment = null, }, new() { Id = "tmi", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Tutuba", + Comment = null, }, new() { Id = "tmj", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Samarokena", + Comment = null, }, new() { Id = "tml", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Tamnim Citak", + Comment = null, }, new() { Id = "tmm", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Tai Thanh", + Comment = null, }, new() { Id = "tmn", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Taman (Indonesia)", + Comment = null, }, new() { Id = "tmo", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Temoq", + Comment = null, }, new() { Id = "tmq", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Tumleo", + Comment = null, }, new() { Id = "tmr", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Jewish Babylonian Aramaic (ca. 200-1200 CE)", + Comment = null, }, new() { Id = "tms", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Tima", + Comment = null, }, new() { Id = "tmt", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Tasmate", + Comment = null, }, new() { Id = "tmu", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Iau", + Comment = null, }, new() { Id = "tmv", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Tembo (Motembo)", + Comment = null, }, new() { Id = "tmw", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Temuan", + Comment = null, }, new() { Id = "tmy", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Tami", + Comment = null, }, new() { Id = "tmz", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Tamanaku", + Comment = null, }, new() { Id = "tna", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Tacana", + Comment = null, }, new() { Id = "tnb", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Western Tunebo", + Comment = null, }, new() { Id = "tnc", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Tanimuca-Retuarã", + Comment = null, }, new() { Id = "tnd", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Angosturas Tunebo", + Comment = null, }, new() { Id = "tng", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Tobanga", + Comment = null, }, new() { Id = "tnh", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Maiani", + Comment = null, }, new() { Id = "tni", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Tandia", + Comment = null, }, new() { Id = "tnk", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kwamera", + Comment = null, }, new() { Id = "tnl", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Lenakel", + Comment = null, }, new() { Id = "tnm", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Tabla", + Comment = null, }, new() { Id = "tnn", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "North Tanna", + Comment = null, }, new() { Id = "tno", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Toromono", + Comment = null, }, new() { Id = "tnp", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Whitesands", + Comment = null, }, new() { Id = "tnq", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Taino", + Comment = null, }, new() { Id = "tnr", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Ménik", + Comment = null, }, new() { Id = "tns", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Tenis", + Comment = null, }, new() { Id = "tnt", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Tontemboan", + Comment = null, }, new() { Id = "tnu", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Tay Khang", + Comment = null, }, new() { Id = "tnv", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Tangchangya", + Comment = null, }, new() { Id = "tnw", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Tonsawang", + Comment = null, }, new() { Id = "tnx", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Tanema", + Comment = null, }, new() { Id = "tny", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Tongwe", + Comment = null, }, new() { Id = "tnz", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Ten'edn", + Comment = null, }, new() { Id = "tob", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Toba", + Comment = null, }, new() { Id = "toc", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Coyutla Totonac", + Comment = null, }, new() { Id = "tod", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Toma", + Comment = null, }, new() { Id = "tof", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Gizrra", + Comment = null, }, new() { Id = "tog", Part2B = "tog", Part2T = "tog", + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Tonga (Nyasa)", + Comment = null, }, new() { Id = "toh", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Gitonga", + Comment = null, }, new() { Id = "toi", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Tonga (Zambia)", + Comment = null, }, new() { Id = "toj", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Tojolabal", + Comment = null, }, new() { Id = "tok", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "C", RefName = "Toki Pona", + Comment = null, }, new() { Id = "tol", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Tolowa", + Comment = null, }, new() { Id = "tom", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Tombulu", + Comment = null, }, new() { @@ -46516,570 +71650,887 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tonga (Tonga Islands)", + Comment = null, }, new() { Id = "too", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Xicotepec De Juárez Totonac", + Comment = null, }, new() { Id = "top", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Papantla Totonac", + Comment = null, }, new() { Id = "toq", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Toposa", + Comment = null, }, new() { Id = "tor", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Togbo-Vara Banda", + Comment = null, }, new() { Id = "tos", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Highland Totonac", + Comment = null, }, new() { Id = "tou", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Tho", + Comment = null, }, new() { Id = "tov", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Upper Taromi", + Comment = null, }, new() { Id = "tow", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Jemez", + Comment = null, }, new() { Id = "tox", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Tobian", + Comment = null, }, new() { Id = "toy", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Topoiyo", + Comment = null, }, new() { Id = "toz", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "To", + Comment = null, }, new() { Id = "tpa", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Taupota", + Comment = null, }, new() { Id = "tpc", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Azoyú Me'phaa", + Comment = null, }, new() { Id = "tpe", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Tippera", + Comment = null, }, new() { Id = "tpf", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Tarpia", + Comment = null, }, new() { Id = "tpg", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kula", + Comment = null, }, new() { Id = "tpi", Part2B = "tpi", Part2T = "tpi", + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Tok Pisin", + Comment = null, }, new() { Id = "tpj", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Tapieté", + Comment = null, }, new() { Id = "tpk", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Tupinikin", + Comment = null, }, new() { Id = "tpl", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Tlacoapa Me'phaa", + Comment = null, }, new() { Id = "tpm", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Tampulma", + Comment = null, }, new() { Id = "tpn", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Tupinambá", + Comment = null, }, new() { Id = "tpo", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Tai Pao", + Comment = null, }, new() { Id = "tpp", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Pisaflores Tepehua", + Comment = null, }, new() { Id = "tpq", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Tukpa", + Comment = null, }, new() { Id = "tpr", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Tuparí", + Comment = null, }, new() { Id = "tpt", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Tlachichilco Tepehua", + Comment = null, }, new() { Id = "tpu", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Tampuan", + Comment = null, }, new() { Id = "tpv", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Tanapag", + Comment = null, }, new() { Id = "tpx", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Acatepec Me'phaa", + Comment = null, }, new() { Id = "tpy", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Trumai", + Comment = null, }, new() { Id = "tpz", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Tinputz", + Comment = null, }, new() { Id = "tqb", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Tembé", + Comment = null, }, new() { Id = "tql", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Lehali", + Comment = null, }, new() { Id = "tqm", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Turumsa", + Comment = null, }, new() { Id = "tqn", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Tenino", + Comment = null, }, new() { Id = "tqo", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Toaripi", + Comment = null, }, new() { Id = "tqp", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Tomoip", + Comment = null, }, new() { Id = "tqq", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Tunni", + Comment = null, }, new() { Id = "tqr", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Torona", + Comment = null, }, new() { Id = "tqt", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Western Totonac", + Comment = null, }, new() { Id = "tqu", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Touo", + Comment = null, }, new() { Id = "tqw", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Tonkawa", + Comment = null, }, new() { Id = "tra", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Tirahi", + Comment = null, }, new() { Id = "trb", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Terebu", + Comment = null, }, new() { Id = "trc", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Copala Triqui", + Comment = null, }, new() { Id = "trd", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Turi", + Comment = null, }, new() { Id = "tre", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "East Tarangan", + Comment = null, }, new() { Id = "trf", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Trinidadian Creole English", + Comment = null, }, new() { Id = "trg", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Lishán Didán", + Comment = null, }, new() { Id = "trh", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Turaka", + Comment = null, }, new() { Id = "tri", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Trió", + Comment = null, }, new() { Id = "trj", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Toram", + Comment = null, }, new() { Id = "trl", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Traveller Scottish", + Comment = null, }, new() { Id = "trm", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Tregami", + Comment = null, }, new() { Id = "trn", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Trinitario", + Comment = null, }, new() { Id = "tro", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Tarao Naga", + Comment = null, }, new() { Id = "trp", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kok Borok", + Comment = null, }, new() { Id = "trq", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "San Martín Itunyoso Triqui", + Comment = null, }, new() { Id = "trr", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Taushiro", + Comment = null, }, new() { Id = "trs", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Chicahuaxtla Triqui", + Comment = null, }, new() { Id = "trt", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Tunggare", + Comment = null, }, new() { Id = "tru", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Turoyo", + Comment = null, }, new() { Id = "trv", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Sediq", + Comment = null, }, new() { Id = "trw", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Torwali", + Comment = null, }, new() { Id = "trx", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Tringgus-Sembaan Bidayuh", + Comment = null, }, new() { Id = "try", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Turung", + Comment = null, }, new() { Id = "trz", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Torá", + Comment = null, }, new() { Id = "tsa", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Tsaangi", + Comment = null, }, new() { Id = "tsb", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Tsamai", + Comment = null, }, new() { Id = "tsc", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Tswa", + Comment = null, }, new() { Id = "tsd", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Tsakonian", + Comment = null, }, new() { Id = "tse", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Tunisian Sign Language", + Comment = null, }, new() { Id = "tsg", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Tausug", + Comment = null, }, new() { Id = "tsh", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Tsuvan", + Comment = null, }, new() { Id = "tsi", Part2B = "tsi", Part2T = "tsi", + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Tsimshian", + Comment = null, }, new() { Id = "tsj", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Tshangla", + Comment = null, }, new() { Id = "tsk", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Tseku", + Comment = null, }, new() { Id = "tsl", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Ts'ün-Lao", + Comment = null, }, new() { Id = "tsm", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Turkish Sign Language", + Comment = null, }, new() { @@ -47090,6 +72541,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tswana", + Comment = null, }, new() { @@ -47100,328 +72552,513 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tsonga", + Comment = null, }, new() { Id = "tsp", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Northern Toussian", + Comment = null, }, new() { Id = "tsq", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Thai Sign Language", + Comment = null, }, new() { Id = "tsr", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Akei", + Comment = null, }, new() { Id = "tss", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Taiwan Sign Language", + Comment = null, }, new() { Id = "tst", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Tondi Songway Kiini", + Comment = null, }, new() { Id = "tsu", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Tsou", + Comment = null, }, new() { Id = "tsv", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Tsogo", + Comment = null, }, new() { Id = "tsw", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Tsishingini", + Comment = null, }, new() { Id = "tsx", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Mubami", + Comment = null, }, new() { Id = "tsy", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Tebul Sign Language", + Comment = null, }, new() { Id = "tsz", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Purepecha", + Comment = null, }, new() { Id = "tta", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Tutelo", + Comment = null, }, new() { Id = "ttb", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Gaa", + Comment = null, }, new() { Id = "ttc", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Tektiteko", + Comment = null, }, new() { Id = "ttd", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Tauade", + Comment = null, }, new() { Id = "tte", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Bwanabwana", + Comment = null, }, new() { Id = "ttf", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Tuotomb", + Comment = null, }, new() { Id = "ttg", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Tutong", + Comment = null, }, new() { Id = "tth", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Upper Ta'oih", + Comment = null, }, new() { Id = "tti", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Tobati", + Comment = null, }, new() { Id = "ttj", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Tooro", + Comment = null, }, new() { Id = "ttk", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Totoro", + Comment = null, }, new() { Id = "ttl", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Totela", + Comment = null, }, new() { Id = "ttm", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Northern Tutchone", + Comment = null, }, new() { Id = "ttn", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Towei", + Comment = null, }, new() { Id = "tto", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Lower Ta'oih", + Comment = null, }, new() { Id = "ttp", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Tombelala", + Comment = null, }, new() { Id = "ttq", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Tawallammat Tamajaq", + Comment = null, }, new() { Id = "ttr", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Tera", + Comment = null, }, new() { Id = "tts", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Northeastern Thai", + Comment = null, }, new() { Id = "ttt", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Muslim Tat", + Comment = null, }, new() { Id = "ttu", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Torau", + Comment = null, }, new() { Id = "ttv", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Titan", + Comment = null, }, new() { Id = "ttw", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Long Wat", + Comment = null, }, new() { Id = "tty", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Sikaritai", + Comment = null, }, new() { Id = "ttz", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Tsum", + Comment = null, }, new() { Id = "tua", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Wiarumus", + Comment = null, }, new() { Id = "tub", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Tübatulabal", + Comment = null, }, new() { Id = "tuc", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Mutu", + Comment = null, }, new() { Id = "tud", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Tuxá", + Comment = null, }, new() { Id = "tue", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Tuyuca", + Comment = null, }, new() { Id = "tuf", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Central Tunebo", + Comment = null, }, new() { Id = "tug", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Tunia", + Comment = null, }, new() { Id = "tuh", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Taulil", + Comment = null, }, new() { Id = "tui", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Tupuri", + Comment = null, }, new() { Id = "tuj", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Tugutil", + Comment = null, }, new() { @@ -47432,43 +73069,62 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Turkmen", + Comment = null, }, new() { Id = "tul", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Tula", + Comment = null, }, new() { Id = "tum", Part2B = "tum", Part2T = "tum", + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Tumbuka", + Comment = null, }, new() { Id = "tun", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Tunica", + Comment = null, }, new() { Id = "tuo", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Tucano", + Comment = null, }, new() { Id = "tuq", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Tedaga", + Comment = null, }, new() { @@ -47479,211 +73135,326 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Turkish", + Comment = null, }, new() { Id = "tus", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Tuscarora", + Comment = null, }, new() { Id = "tuu", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Tututni", + Comment = null, }, new() { Id = "tuv", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Turkana", + Comment = null, }, new() { Id = "tux", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Tuxináwa", + Comment = null, }, new() { Id = "tuy", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Tugen", + Comment = null, }, new() { Id = "tuz", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Turka", + Comment = null, }, new() { Id = "tva", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Vaghua", + Comment = null, }, new() { Id = "tvd", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Tsuvadi", + Comment = null, }, new() { Id = "tve", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Te'un", + Comment = null, }, new() { Id = "tvi", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Tulai", + Comment = null, }, new() { Id = "tvk", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Southeast Ambrym", + Comment = null, }, new() { Id = "tvl", Part2B = "tvl", Part2T = "tvl", + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Tuvalu", + Comment = null, }, new() { Id = "tvm", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Tela-Masbuar", + Comment = null, }, new() { Id = "tvn", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Tavoyan", + Comment = null, }, new() { Id = "tvo", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Tidore", + Comment = null, }, new() { Id = "tvs", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Taveta", + Comment = null, }, new() { Id = "tvt", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Tutsa Naga", + Comment = null, }, new() { Id = "tvu", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Tunen", + Comment = null, }, new() { Id = "tvw", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Sedoa", + Comment = null, }, new() { Id = "tvx", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Taivoan", + Comment = null, }, new() { Id = "tvy", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Timor Pidgin", + Comment = null, }, new() { Id = "twa", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Twana", + Comment = null, }, new() { Id = "twb", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Western Tawbuid", + Comment = null, }, new() { Id = "twc", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Teshenawa", + Comment = null, }, new() { Id = "twd", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Twents", + Comment = null, }, new() { Id = "twe", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Tewa (Indonesia)", + Comment = null, }, new() { Id = "twf", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Northern Tiwa", + Comment = null, }, new() { Id = "twg", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Tereweng", + Comment = null, }, new() { Id = "twh", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Tai Dón", + Comment = null, }, new() { @@ -47694,586 +73465,909 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Twi", + Comment = null, }, new() { Id = "twl", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Tawara", + Comment = null, }, new() { Id = "twm", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Tawang Monpa", + Comment = null, }, new() { Id = "twn", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Twendi", + Comment = null, }, new() { Id = "two", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Tswapong", + Comment = null, }, new() { Id = "twp", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Ere", + Comment = null, }, new() { Id = "twq", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Tasawaq", + Comment = null, }, new() { Id = "twr", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Southwestern Tarahumara", + Comment = null, }, new() { Id = "twt", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Turiwára", + Comment = null, }, new() { Id = "twu", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Termanu", + Comment = null, }, new() { Id = "tww", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Tuwari", + Comment = null, }, new() { Id = "twx", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Tewe", + Comment = null, }, new() { Id = "twy", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Tawoyan", + Comment = null, }, new() { Id = "txa", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Tombonuo", + Comment = null, }, new() { Id = "txb", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "H", RefName = "Tokharian B", + Comment = null, }, new() { Id = "txc", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Tsetsaut", + Comment = null, }, new() { Id = "txe", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Totoli", + Comment = null, }, new() { Id = "txg", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "H", RefName = "Tangut", + Comment = null, }, new() { Id = "txh", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "H", RefName = "Thracian", + Comment = null, }, new() { Id = "txi", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Ikpeng", + Comment = null, }, new() { Id = "txj", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Tarjumo", + Comment = null, }, new() { Id = "txm", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Tomini", + Comment = null, }, new() { Id = "txn", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "West Tarangan", + Comment = null, }, new() { Id = "txo", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Toto", + Comment = null, }, new() { Id = "txq", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Tii", + Comment = null, }, new() { Id = "txr", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "H", RefName = "Tartessian", + Comment = null, }, new() { Id = "txs", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Tonsea", + Comment = null, }, new() { Id = "txt", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Citak", + Comment = null, }, new() { Id = "txu", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kayapó", + Comment = null, }, new() { Id = "txx", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Tatana", + Comment = null, }, new() { Id = "txy", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Tanosy Malagasy", + Comment = null, }, new() { Id = "tya", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Tauya", + Comment = null, }, new() { Id = "tye", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kyanga", + Comment = null, }, new() { Id = "tyh", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "O'du", + Comment = null, }, new() { Id = "tyi", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Teke-Tsaayi", + Comment = null, }, new() { Id = "tyj", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Tai Do", + Comment = null, }, new() { Id = "tyl", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Thu Lao", + Comment = null, }, new() { Id = "tyn", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kombai", + Comment = null, }, new() { Id = "typ", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Thaypan", + Comment = null, }, new() { Id = "tyr", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Tai Daeng", + Comment = null, }, new() { Id = "tys", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Tày Sa Pa", + Comment = null, }, new() { Id = "tyt", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Tày Tac", + Comment = null, }, new() { Id = "tyu", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kua", + Comment = null, }, new() { Id = "tyv", Part2B = "tyv", Part2T = "tyv", + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Tuvinian", + Comment = null, }, new() { Id = "tyx", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Teke-Tyee", + Comment = null, }, new() { Id = "tyy", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Tiyaa", + Comment = null, }, new() { Id = "tyz", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Tày", + Comment = null, }, new() { Id = "tza", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Tanzanian Sign Language", + Comment = null, }, new() { Id = "tzh", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Tzeltal", + Comment = null, }, new() { Id = "tzj", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Tz'utujil", + Comment = null, }, new() { Id = "tzl", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "C", RefName = "Talossan", + Comment = null, }, new() { Id = "tzm", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Central Atlas Tamazight", + Comment = null, }, new() { Id = "tzn", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Tugun", + Comment = null, }, new() { Id = "tzo", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Tzotzil", + Comment = null, }, new() { Id = "tzx", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Tabriak", + Comment = null, }, new() { Id = "uam", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Uamué", + Comment = null, }, new() { Id = "uan", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kuan", + Comment = null, }, new() { Id = "uar", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Tairuma", + Comment = null, }, new() { Id = "uba", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Ubang", + Comment = null, }, new() { Id = "ubi", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Ubi", + Comment = null, }, new() { Id = "ubl", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Buhi'non Bikol", + Comment = null, }, new() { Id = "ubr", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Ubir", + Comment = null, }, new() { Id = "ubu", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Umbu-Ungu", + Comment = null, }, new() { Id = "uby", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Ubykh", + Comment = null, }, new() { Id = "uda", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Uda", + Comment = null, }, new() { Id = "ude", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Udihe", + Comment = null, }, new() { Id = "udg", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Muduga", + Comment = null, }, new() { Id = "udi", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Udi", + Comment = null, }, new() { Id = "udj", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Ujir", + Comment = null, }, new() { Id = "udl", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Wuzlam", + Comment = null, }, new() { Id = "udm", Part2B = "udm", Part2T = "udm", + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Udmurt", + Comment = null, }, new() { Id = "udu", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Uduk", + Comment = null, }, new() { Id = "ues", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kioko", + Comment = null, }, new() { Id = "ufi", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Ufim", + Comment = null, }, new() { Id = "uga", Part2B = "uga", Part2T = "uga", + Part1 = null, Scope = "I", LanguageType = "H", RefName = "Ugaritic", + Comment = null, }, new() { Id = "ugb", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Kuku-Ugbanh", + Comment = null, }, new() { Id = "uge", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Ughele", + Comment = null, }, new() { Id = "ugh", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kubachi", + Comment = null, }, new() { Id = "ugn", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Ugandan Sign Language", + Comment = null, }, new() { Id = "ugo", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Ugong", + Comment = null, }, new() { Id = "ugy", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Uruguayan Sign Language", + Comment = null, }, new() { Id = "uha", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Uhami", + Comment = null, }, new() { Id = "uhn", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Damal", + Comment = null, }, new() { @@ -48284,83 +74378,128 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Uighur", + Comment = null, }, new() { Id = "uis", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Uisai", + Comment = null, }, new() { Id = "uiv", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Iyive", + Comment = null, }, new() { Id = "uji", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Tanjijili", + Comment = null, }, new() { Id = "uka", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kaburi", + Comment = null, }, new() { Id = "ukg", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Ukuriguma", + Comment = null, }, new() { Id = "ukh", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Ukhwejo", + Comment = null, }, new() { Id = "uki", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kui (India)", + Comment = null, }, new() { Id = "ukk", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Muak Sa-aak", + Comment = null, }, new() { Id = "ukl", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Ukrainian Sign Language", + Comment = null, }, new() { Id = "ukp", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Ukpe-Bayobiri", + Comment = null, }, new() { Id = "ukq", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Ukwa", + Comment = null, }, new() { @@ -48371,353 +74510,546 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ukrainian", + Comment = null, }, new() { Id = "uks", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Urubú-Kaapor Sign Language", + Comment = null, }, new() { Id = "uku", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Ukue", + Comment = null, }, new() { Id = "ukv", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kuku", + Comment = null, }, new() { Id = "ukw", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Ukwuani-Aboh-Ndoni", + Comment = null, }, new() { Id = "uky", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Kuuk-Yak", + Comment = null, }, new() { Id = "ula", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Fungwa", + Comment = null, }, new() { Id = "ulb", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Ulukwumi", + Comment = null, }, new() { Id = "ulc", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Ulch", + Comment = null, }, new() { Id = "ule", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Lule", + Comment = null, }, new() { Id = "ulf", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Usku", + Comment = null, }, new() { Id = "uli", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Ulithian", + Comment = null, }, new() { Id = "ulk", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Meriam Mir", + Comment = null, }, new() { Id = "ull", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Ullatan", + Comment = null, }, new() { Id = "ulm", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Ulumanda'", + Comment = null, }, new() { Id = "uln", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Unserdeutsch", + Comment = null, }, new() { Id = "ulu", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Uma' Lung", + Comment = null, }, new() { Id = "ulw", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Ulwa", + Comment = null, }, new() { Id = "uly", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Buli", + Comment = null, }, new() { Id = "uma", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Umatilla", + Comment = null, }, new() { Id = "umb", Part2B = "umb", Part2T = "umb", + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Umbundu", + Comment = null, }, new() { Id = "umc", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "H", RefName = "Marrucinian", + Comment = null, }, new() { Id = "umd", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Umbindhamu", + Comment = null, }, new() { Id = "umg", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Morrobalama", + Comment = null, }, new() { Id = "umi", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Ukit", + Comment = null, }, new() { Id = "umm", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Umon", + Comment = null, }, new() { Id = "umn", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Makyan Naga", + Comment = null, }, new() { Id = "umo", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Umotína", + Comment = null, }, new() { Id = "ump", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Umpila", + Comment = null, }, new() { Id = "umr", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Umbugarla", + Comment = null, }, new() { Id = "ums", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Pendau", + Comment = null, }, new() { Id = "umu", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Munsee", + Comment = null, }, new() { Id = "una", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "North Watut", + Comment = null, }, new() { Id = "und", Part2B = "und", Part2T = "und", + Part1 = null, Scope = "S", LanguageType = "S", RefName = "Undetermined", + Comment = null, }, new() { Id = "une", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Uneme", + Comment = null, }, new() { Id = "ung", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Ngarinyin", + Comment = null, }, new() { Id = "uni", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Uni", + Comment = null, }, new() { Id = "unk", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Enawené-Nawé", + Comment = null, }, new() { Id = "unm", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Unami", + Comment = null, }, new() { Id = "unn", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kurnai", + Comment = null, }, new() { Id = "unr", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Mundari", + Comment = null, }, new() { Id = "unu", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Unubahe", + Comment = null, }, new() { Id = "unx", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Munda", + Comment = null, }, new() { Id = "unz", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Unde Kaili", + Comment = null, }, new() { Id = "uon", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Kulon", + Comment = null, }, new() { Id = "upi", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Umeda", + Comment = null, }, new() { Id = "upv", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Uripiv-Wala-Rano-Atchin", + Comment = null, }, new() { Id = "ura", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Urarina", + Comment = null, }, new() { Id = "urb", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Urubú-Kaapor", + Comment = null, }, new() { Id = "urc", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Urningangg", + Comment = null, }, new() { @@ -48728,286 +75060,447 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Urdu", + Comment = null, }, new() { Id = "ure", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Uru", + Comment = null, }, new() { Id = "urf", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Uradhi", + Comment = null, }, new() { Id = "urg", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Urigina", + Comment = null, }, new() { Id = "urh", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Urhobo", + Comment = null, }, new() { Id = "uri", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Urim", + Comment = null, }, new() { Id = "urk", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Urak Lawoi'", + Comment = null, }, new() { Id = "url", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Urali", + Comment = null, }, new() { Id = "urm", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Urapmin", + Comment = null, }, new() { Id = "urn", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Uruangnirin", + Comment = null, }, new() { Id = "uro", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Ura (Papua New Guinea)", + Comment = null, }, new() { Id = "urp", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Uru-Pa-In", + Comment = null, }, new() { Id = "urr", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Lehalurup", + Comment = null, }, new() { Id = "urt", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Urat", + Comment = null, }, new() { Id = "uru", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Urumi", + Comment = null, }, new() { Id = "urv", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Uruava", + Comment = null, }, new() { Id = "urw", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Sop", + Comment = null, }, new() { Id = "urx", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Urimo", + Comment = null, }, new() { Id = "ury", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Orya", + Comment = null, }, new() { Id = "urz", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Uru-Eu-Wau-Wau", + Comment = null, }, new() { Id = "usa", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Usarufa", + Comment = null, }, new() { Id = "ush", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Ushojo", + Comment = null, }, new() { Id = "usi", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Usui", + Comment = null, }, new() { Id = "usk", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Usaghade", + Comment = null, }, new() { Id = "usp", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Uspanteco", + Comment = null, }, new() { Id = "uss", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "us-Saare", + Comment = null, }, new() { Id = "usu", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Uya", + Comment = null, }, new() { Id = "uta", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Otank", + Comment = null, }, new() { Id = "ute", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Ute-Southern Paiute", + Comment = null, }, new() { Id = "uth", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "ut-Hun", + Comment = null, }, new() { Id = "utp", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Amba (Solomon Islands)", + Comment = null, }, new() { Id = "utr", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Etulo", + Comment = null, }, new() { Id = "utu", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Utu", + Comment = null, }, new() { Id = "uum", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Urum", + Comment = null, }, new() { Id = "uur", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Ura (Vanuatu)", + Comment = null, }, new() { Id = "uuu", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "U", + Comment = null, }, new() { Id = "uve", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "West Uvean", + Comment = null, }, new() { Id = "uvh", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Uri", + Comment = null, }, new() { Id = "uvl", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Lote", + Comment = null, }, new() { Id = "uwa", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kuku-Uwanh", + Comment = null, }, new() { Id = "uya", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Doko-Uyanga", + Comment = null, }, new() { @@ -49018,183 +75511,282 @@ public static Iso6393Data Create() => Scope = "M", LanguageType = "L", RefName = "Uzbek", + Comment = null, }, new() { Id = "uzn", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Northern Uzbek", + Comment = null, }, new() { Id = "uzs", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Southern Uzbek", + Comment = null, }, new() { Id = "vaa", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Vaagri Booli", + Comment = null, }, new() { Id = "vae", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Vale", + Comment = null, }, new() { Id = "vaf", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Vafsi", + Comment = null, }, new() { Id = "vag", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Vagla", + Comment = null, }, new() { Id = "vah", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Varhadi-Nagpuri", + Comment = null, }, new() { Id = "vai", Part2B = "vai", Part2T = "vai", + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Vai", + Comment = null, }, new() { Id = "vaj", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Sekele", + Comment = null, }, new() { Id = "val", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Vehes", + Comment = null, }, new() { Id = "vam", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Vanimo", + Comment = null, }, new() { Id = "van", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Valman", + Comment = null, }, new() { Id = "vao", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Vao", + Comment = null, }, new() { Id = "vap", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Vaiphei", + Comment = null, }, new() { Id = "var", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Huarijio", + Comment = null, }, new() { Id = "vas", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Vasavi", + Comment = null, }, new() { Id = "vau", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Vanuma", + Comment = null, }, new() { Id = "vav", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Varli", + Comment = null, }, new() { Id = "vay", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Wayu", + Comment = null, }, new() { Id = "vbb", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Southeast Babar", + Comment = null, }, new() { Id = "vbk", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Southwestern Bontok", + Comment = null, }, new() { Id = "vec", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Venetian", + Comment = null, }, new() { Id = "ved", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Veddah", + Comment = null, }, new() { Id = "vel", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Veluws", + Comment = null, }, new() { Id = "vem", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Vemgo-Mabas", + Comment = null, }, new() { @@ -49205,55 +75797,84 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Venda", + Comment = null, }, new() { Id = "veo", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Ventureño", + Comment = null, }, new() { Id = "vep", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Veps", + Comment = null, }, new() { Id = "ver", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Mom Jango", + Comment = null, }, new() { Id = "vgr", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Vaghri", + Comment = null, }, new() { Id = "vgt", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Vlaamse Gebarentaal", + Comment = null, }, new() { Id = "vic", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Virgin Islands Creole English", + Comment = null, }, new() { Id = "vid", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Vidunda", + Comment = null, }, new() { @@ -49264,335 +75885,524 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Vietnamese", + Comment = null, }, new() { Id = "vif", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Vili", + Comment = null, }, new() { Id = "vig", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Viemo", + Comment = null, }, new() { Id = "vil", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Vilela", + Comment = null, }, new() { Id = "vin", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Vinza", + Comment = null, }, new() { Id = "vis", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Vishavan", + Comment = null, }, new() { Id = "vit", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Viti", + Comment = null, }, new() { Id = "viv", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Iduna", + Comment = null, }, new() { Id = "vjk", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Bajjika", + Comment = null, }, new() { Id = "vka", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Kariyarra", + Comment = null, }, new() { Id = "vkj", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kujarge", + Comment = null, }, new() { Id = "vkk", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kaur", + Comment = null, }, new() { Id = "vkl", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kulisusu", + Comment = null, }, new() { Id = "vkm", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Kamakan", + Comment = null, }, new() { Id = "vkn", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Koro Nulu", + Comment = null, }, new() { Id = "vko", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kodeoha", + Comment = null, }, new() { Id = "vkp", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Korlai Creole Portuguese", + Comment = null, }, new() { Id = "vkt", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Tenggarong Kutai Malay", + Comment = null, }, new() { Id = "vku", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kurrama", + Comment = null, }, new() { Id = "vkz", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Koro Zuba", + Comment = null, }, new() { Id = "vlp", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Valpei", + Comment = null, }, new() { Id = "vls", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Vlaams", + Comment = null, }, new() { Id = "vma", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Martuyhunira", + Comment = null, }, new() { Id = "vmb", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Barbaram", + Comment = null, }, new() { Id = "vmc", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Juxtlahuaca Mixtec", + Comment = null, }, new() { Id = "vmd", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Mudu Koraga", + Comment = null, }, new() { Id = "vme", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "East Masela", + Comment = null, }, new() { Id = "vmf", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Mainfränkisch", + Comment = null, }, new() { Id = "vmg", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Lungalunga", + Comment = null, }, new() { Id = "vmh", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Maraghei", + Comment = null, }, new() { Id = "vmi", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Miwa", + Comment = null, }, new() { Id = "vmj", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Ixtayutla Mixtec", + Comment = null, }, new() { Id = "vmk", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Makhuwa-Shirima", + Comment = null, }, new() { Id = "vml", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Malgana", + Comment = null, }, new() { Id = "vmm", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Mitlatongo Mixtec", + Comment = null, }, new() { Id = "vmp", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Soyaltepec Mazatec", + Comment = null, }, new() { Id = "vmq", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Soyaltepec Mixtec", + Comment = null, }, new() { Id = "vmr", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Marenje", + Comment = null, }, new() { Id = "vms", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Moksela", + Comment = null, }, new() { Id = "vmu", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Muluridyi", + Comment = null, }, new() { Id = "vmv", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Valley Maidu", + Comment = null, }, new() { Id = "vmw", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Makhuwa", + Comment = null, }, new() { Id = "vmx", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Tamazola Mixtec", + Comment = null, }, new() { Id = "vmy", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Ayautla Mazatec", + Comment = null, }, new() { Id = "vmz", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Mazatlán Mazatec", + Comment = null, }, new() { Id = "vnk", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Vano", + Comment = null, }, new() { Id = "vnm", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Vinmavis", + Comment = null, }, new() { Id = "vnp", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Vunapu", + Comment = null, }, new() { @@ -49603,903 +76413,1404 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "C", RefName = "Volapük", + Comment = null, }, new() { Id = "vor", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Voro", + Comment = null, }, new() { Id = "vot", Part2B = "vot", Part2T = "vot", + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Votic", + Comment = null, }, new() { Id = "vra", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Vera'a", + Comment = null, }, new() { Id = "vro", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Võro", + Comment = null, }, new() { Id = "vrs", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Varisi", + Comment = null, }, new() { Id = "vrt", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Burmbar", + Comment = null, }, new() { Id = "vsi", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Moldova Sign Language", + Comment = null, }, new() { Id = "vsl", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Venezuelan Sign Language", + Comment = null, }, new() { Id = "vsn", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "H", RefName = "Vedic Sanskrit", + Comment = null, }, new() { Id = "vsv", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Valencian Sign Language", + Comment = null, }, new() { Id = "vto", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Vitou", + Comment = null, }, new() { Id = "vum", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Vumbu", + Comment = null, }, new() { Id = "vun", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Vunjo", + Comment = null, }, new() { Id = "vut", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Vute", + Comment = null, }, new() { Id = "vwa", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Awa (China)", + Comment = null, }, new() { Id = "waa", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Walla Walla", + Comment = null, }, new() { Id = "wab", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Wab", + Comment = null, }, new() { Id = "wac", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Wasco-Wishram", + Comment = null, }, new() { Id = "wad", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Wamesa", + Comment = null, }, new() { Id = "wae", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Walser", + Comment = null, }, new() { Id = "waf", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Wakoná", + Comment = null, }, new() { Id = "wag", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Wa'ema", + Comment = null, }, new() { Id = "wah", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Watubela", + Comment = null, }, new() { Id = "wai", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Wares", + Comment = null, }, new() { Id = "waj", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Waffa", + Comment = null, }, new() { Id = "wal", Part2B = "wal", Part2T = "wal", + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Wolaytta", + Comment = null, }, new() { Id = "wam", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Wampanoag", + Comment = null, }, new() { Id = "wan", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Wan", + Comment = null, }, new() { Id = "wao", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Wappo", + Comment = null, }, new() { Id = "wap", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Wapishana", + Comment = null, }, new() { Id = "waq", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Wagiman", + Comment = null, }, new() { Id = "war", Part2B = "war", Part2T = "war", + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Waray (Philippines)", + Comment = null, }, new() { Id = "was", Part2B = "was", Part2T = "was", + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Washo", + Comment = null, }, new() { Id = "wat", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kaninuwa", + Comment = null, }, new() { Id = "wau", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Waurá", + Comment = null, }, new() { Id = "wav", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Waka", + Comment = null, }, new() { Id = "waw", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Waiwai", + Comment = null, }, new() { Id = "wax", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Watam", + Comment = null, }, new() { Id = "way", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Wayana", + Comment = null, }, new() { Id = "waz", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Wampur", + Comment = null, }, new() { Id = "wba", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Warao", + Comment = null, }, new() { Id = "wbb", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Wabo", + Comment = null, }, new() { Id = "wbe", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Waritai", + Comment = null, }, new() { Id = "wbf", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Wara", + Comment = null, }, new() { Id = "wbh", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Wanda", + Comment = null, }, new() { Id = "wbi", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Vwanji", + Comment = null, }, new() { Id = "wbj", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Alagwa", + Comment = null, }, new() { Id = "wbk", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Waigali", + Comment = null, }, new() { Id = "wbl", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Wakhi", + Comment = null, }, new() { Id = "wbm", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Wa", + Comment = null, }, new() { Id = "wbp", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Warlpiri", + Comment = null, }, new() { Id = "wbq", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Waddar", + Comment = null, }, new() { Id = "wbr", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Wagdi", + Comment = null, }, new() { Id = "wbs", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "West Bengal Sign Language", + Comment = null, }, new() { Id = "wbt", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Warnman", + Comment = null, }, new() { Id = "wbv", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Wajarri", + Comment = null, }, new() { Id = "wbw", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Woi", + Comment = null, }, new() { Id = "wca", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Yanomámi", + Comment = null, }, new() { Id = "wci", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Waci Gbe", + Comment = null, }, new() { Id = "wdd", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Wandji", + Comment = null, }, new() { Id = "wdg", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Wadaginam", + Comment = null, }, new() { Id = "wdj", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Wadjiginy", + Comment = null, }, new() { Id = "wdk", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Wadikali", + Comment = null, }, new() { Id = "wdt", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Wendat", + Comment = null, }, new() { Id = "wdu", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Wadjigu", + Comment = null, }, new() { Id = "wdy", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Wadjabangayi", + Comment = null, }, new() { Id = "wea", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Wewaw", + Comment = null, }, new() { Id = "wec", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Wè Western", + Comment = null, }, new() { Id = "wed", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Wedau", + Comment = null, }, new() { Id = "weg", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Wergaia", + Comment = null, }, new() { Id = "weh", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Weh", + Comment = null, }, new() { Id = "wei", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kiunum", + Comment = null, }, new() { Id = "wem", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Weme Gbe", + Comment = null, }, new() { Id = "weo", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Wemale", + Comment = null, }, new() { Id = "wep", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Westphalien", + Comment = null, }, new() { Id = "wer", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Weri", + Comment = null, }, new() { Id = "wes", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Cameroon Pidgin", + Comment = null, }, new() { Id = "wet", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Perai", + Comment = null, }, new() { Id = "weu", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Rawngtu Chin", + Comment = null, }, new() { Id = "wew", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Wejewa", + Comment = null, }, new() { Id = "wfg", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Yafi", + Comment = null, }, new() { Id = "wga", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Wagaya", + Comment = null, }, new() { Id = "wgb", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Wagawaga", + Comment = null, }, new() { Id = "wgg", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Wangkangurru", + Comment = null, }, new() { Id = "wgi", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Wahgi", + Comment = null, }, new() { Id = "wgo", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Waigeo", + Comment = null, }, new() { Id = "wgu", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Wirangu", + Comment = null, }, new() { Id = "wgy", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Warrgamay", + Comment = null, }, new() { Id = "wha", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Sou Upaa", + Comment = null, }, new() { Id = "whg", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "North Wahgi", + Comment = null, }, new() { Id = "whk", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Wahau Kenyah", + Comment = null, }, new() { Id = "whu", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Wahau Kayan", + Comment = null, }, new() { Id = "wib", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Southern Toussian", + Comment = null, }, new() { Id = "wic", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Wichita", + Comment = null, }, new() { Id = "wie", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Wik-Epa", + Comment = null, }, new() { Id = "wif", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Wik-Keyangan", + Comment = null, }, new() { Id = "wig", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Wik Ngathan", + Comment = null, }, new() { Id = "wih", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Wik-Me'anha", + Comment = null, }, new() { Id = "wii", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Minidien", + Comment = null, }, new() { Id = "wij", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Wik-Iiyanh", + Comment = null, }, new() { Id = "wik", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Wikalkan", + Comment = null, }, new() { Id = "wil", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Wilawila", + Comment = null, }, new() { Id = "wim", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Wik-Mungkan", + Comment = null, }, new() { Id = "win", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Ho-Chunk", + Comment = null, }, new() { Id = "wir", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Wiraféd", + Comment = null, }, new() { Id = "wiu", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Wiru", + Comment = null, }, new() { Id = "wiv", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Vitu", + Comment = null, }, new() { Id = "wiy", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Wiyot", + Comment = null, }, new() { Id = "wja", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Waja", + Comment = null, }, new() { Id = "wji", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Warji", + Comment = null, }, new() { Id = "wka", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Kw'adza", + Comment = null, }, new() { Id = "wkb", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kumbaran", + Comment = null, }, new() { Id = "wkd", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Wakde", + Comment = null, }, new() { Id = "wkl", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kalanadi", + Comment = null, }, new() { Id = "wkr", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Keerray-Woorroong", + Comment = null, }, new() { Id = "wku", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kunduvadi", + Comment = null, }, new() { Id = "wkw", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Wakawaka", + Comment = null, }, new() { Id = "wky", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Wangkayutyuru", + Comment = null, }, new() { Id = "wla", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Walio", + Comment = null, }, new() { Id = "wlc", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Mwali Comorian", + Comment = null, }, new() { Id = "wle", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Wolane", + Comment = null, }, new() { Id = "wlg", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kunbarlang", + Comment = null, }, new() { Id = "wlh", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Welaun", + Comment = null, }, new() { Id = "wli", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Waioli", + Comment = null, }, new() { Id = "wlk", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Wailaki", + Comment = null, }, new() { Id = "wll", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Wali (Sudan)", + Comment = null, }, new() { Id = "wlm", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "H", RefName = "Middle Welsh", + Comment = null, }, new() { @@ -50510,328 +77821,513 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Walloon", + Comment = null, }, new() { Id = "wlo", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Wolio", + Comment = null, }, new() { Id = "wlr", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Wailapa", + Comment = null, }, new() { Id = "wls", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Wallisian", + Comment = null, }, new() { Id = "wlu", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Wuliwuli", + Comment = null, }, new() { Id = "wlv", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Wichí Lhamtés Vejoz", + Comment = null, }, new() { Id = "wlw", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Walak", + Comment = null, }, new() { Id = "wlx", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Wali (Ghana)", + Comment = null, }, new() { Id = "wly", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Waling", + Comment = null, }, new() { Id = "wma", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Mawa (Nigeria)", + Comment = null, }, new() { Id = "wmb", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Wambaya", + Comment = null, }, new() { Id = "wmc", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Wamas", + Comment = null, }, new() { Id = "wmd", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Mamaindé", + Comment = null, }, new() { Id = "wme", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Wambule", + Comment = null, }, new() { Id = "wmg", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Western Minyag", + Comment = null, }, new() { Id = "wmh", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Waima'a", + Comment = null, }, new() { Id = "wmi", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Wamin", + Comment = null, }, new() { Id = "wmm", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Maiwa (Indonesia)", + Comment = null, }, new() { Id = "wmn", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Waamwang", + Comment = null, }, new() { Id = "wmo", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Wom (Papua New Guinea)", + Comment = null, }, new() { Id = "wms", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Wambon", + Comment = null, }, new() { Id = "wmt", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Walmajarri", + Comment = null, }, new() { Id = "wmw", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Mwani", + Comment = null, }, new() { Id = "wmx", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Womo", + Comment = null, }, new() { Id = "wnb", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Mokati", + Comment = null, }, new() { Id = "wnc", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Wantoat", + Comment = null, }, new() { Id = "wnd", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Wandarang", + Comment = null, }, new() { Id = "wne", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Waneci", + Comment = null, }, new() { Id = "wng", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Wanggom", + Comment = null, }, new() { Id = "wni", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Ndzwani Comorian", + Comment = null, }, new() { Id = "wnk", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Wanukaka", + Comment = null, }, new() { Id = "wnm", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Wanggamala", + Comment = null, }, new() { Id = "wnn", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Wunumara", + Comment = null, }, new() { Id = "wno", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Wano", + Comment = null, }, new() { Id = "wnp", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Wanap", + Comment = null, }, new() { Id = "wnu", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Usan", + Comment = null, }, new() { Id = "wnw", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Wintu", + Comment = null, }, new() { Id = "wny", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Wanyi", + Comment = null, }, new() { Id = "woa", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kuwema", + Comment = null, }, new() { Id = "wob", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Wè Northern", + Comment = null, }, new() { Id = "woc", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Wogeo", + Comment = null, }, new() { Id = "wod", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Wolani", + Comment = null, }, new() { Id = "woe", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Woleaian", + Comment = null, }, new() { Id = "wof", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Gambian Wolof", + Comment = null, }, new() { Id = "wog", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Wogamusin", + Comment = null, }, new() { Id = "woi", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kamang", + Comment = null, }, new() { Id = "wok", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Longto", + Comment = null, }, new() { @@ -50842,1072 +78338,1679 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Wolof", + Comment = null, }, new() { Id = "wom", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Wom (Nigeria)", + Comment = null, }, new() { Id = "won", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Wongo", + Comment = null, }, new() { Id = "woo", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Manombai", + Comment = null, }, new() { Id = "wor", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Woria", + Comment = null, }, new() { Id = "wos", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Hanga Hundi", + Comment = null, }, new() { Id = "wow", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Wawonii", + Comment = null, }, new() { Id = "woy", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Weyto", + Comment = null, }, new() { Id = "wpc", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Maco", + Comment = null, }, new() { Id = "wrb", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Waluwarra", + Comment = null, }, new() { Id = "wrg", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Warungu", + Comment = null, }, new() { Id = "wrh", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Wiradjuri", + Comment = null, }, new() { Id = "wri", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Wariyangga", + Comment = null, }, new() { Id = "wrk", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Garrwa", + Comment = null, }, new() { Id = "wrl", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Warlmanpa", + Comment = null, }, new() { Id = "wrm", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Warumungu", + Comment = null, }, new() { Id = "wrn", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Warnang", + Comment = null, }, new() { Id = "wro", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Worrorra", + Comment = null, }, new() { Id = "wrp", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Waropen", + Comment = null, }, new() { Id = "wrr", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Wardaman", + Comment = null, }, new() { Id = "wrs", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Waris", + Comment = null, }, new() { Id = "wru", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Waru", + Comment = null, }, new() { Id = "wrv", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Waruna", + Comment = null, }, new() { Id = "wrw", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Gugu Warra", + Comment = null, }, new() { Id = "wrx", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Wae Rana", + Comment = null, }, new() { Id = "wry", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Merwari", + Comment = null, }, new() { Id = "wrz", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Waray (Australia)", + Comment = null, }, new() { Id = "wsa", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Warembori", + Comment = null, }, new() { Id = "wsg", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Adilabad Gondi", + Comment = null, }, new() { Id = "wsi", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Wusi", + Comment = null, }, new() { Id = "wsk", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Waskia", + Comment = null, }, new() { Id = "wsr", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Owenia", + Comment = null, }, new() { Id = "wss", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Wasa", + Comment = null, }, new() { Id = "wsu", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Wasu", + Comment = null, }, new() { Id = "wsv", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Wotapuri-Katarqalai", + Comment = null, }, new() { Id = "wtb", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Matambwe", + Comment = null, }, new() { Id = "wtf", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Watiwa", + Comment = null, }, new() { Id = "wth", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Wathawurrung", + Comment = null, }, new() { Id = "wti", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Berta", + Comment = null, }, new() { Id = "wtk", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Watakataui", + Comment = null, }, new() { Id = "wtm", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Mewati", + Comment = null, }, new() { Id = "wtw", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Wotu", + Comment = null, }, new() { Id = "wua", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Wikngenchera", + Comment = null, }, new() { Id = "wub", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Wunambal", + Comment = null, }, new() { Id = "wud", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Wudu", + Comment = null, }, new() { Id = "wuh", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Wutunhua", + Comment = null, }, new() { Id = "wul", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Silimo", + Comment = null, }, new() { Id = "wum", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Wumbvu", + Comment = null, }, new() { Id = "wun", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Bungu", + Comment = null, }, new() { Id = "wur", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Wurrugu", + Comment = null, }, new() { Id = "wut", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Wutung", + Comment = null, }, new() { Id = "wuu", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Wu Chinese", + Comment = null, }, new() { Id = "wuv", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Wuvulu-Aua", + Comment = null, }, new() { Id = "wux", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Wulna", + Comment = null, }, new() { Id = "wuy", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Wauyai", + Comment = null, }, new() { Id = "wwa", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Waama", + Comment = null, }, new() { Id = "wwb", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Wakabunga", + Comment = null, }, new() { Id = "wwo", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Wetamut", + Comment = null, }, new() { Id = "wwr", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Warrwa", + Comment = null, }, new() { Id = "www", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Wawa", + Comment = null, }, new() { Id = "wxa", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Waxianghua", + Comment = null, }, new() { Id = "wxw", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Wardandi", + Comment = null, }, new() { Id = "wyb", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Wangaaybuwan-Ngiyambaa", + Comment = null, }, new() { Id = "wyi", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Woiwurrung", + Comment = null, }, new() { Id = "wym", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Wymysorys", + Comment = null, }, new() { Id = "wyn", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Wyandot", + Comment = null, }, new() { Id = "wyr", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Wayoró", + Comment = null, }, new() { Id = "wyy", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Western Fijian", + Comment = null, }, new() { Id = "xaa", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "H", RefName = "Andalusian Arabic", + Comment = null, }, new() { Id = "xab", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Sambe", + Comment = null, }, new() { Id = "xac", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kachari", + Comment = null, }, new() { Id = "xad", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Adai", + Comment = null, }, new() { Id = "xae", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "H", RefName = "Aequian", + Comment = null, }, new() { Id = "xag", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "H", RefName = "Aghwan", + Comment = null, }, new() { Id = "xai", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Kaimbé", + Comment = null, }, new() { Id = "xaj", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Ararandewára", + Comment = null, }, new() { Id = "xak", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Máku", + Comment = null, }, new() { Id = "xal", Part2B = "xal", Part2T = "xal", + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kalmyk", + Comment = null, }, new() { Id = "xam", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "ǀXam", + Comment = null, }, new() { Id = "xan", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Xamtanga", + Comment = null, }, new() { Id = "xao", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Khao", + Comment = null, }, new() { Id = "xap", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Apalachee", + Comment = null, }, new() { Id = "xaq", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "H", RefName = "Aquitanian", + Comment = null, }, new() { Id = "xar", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Karami", + Comment = null, }, new() { Id = "xas", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Kamas", + Comment = null, }, new() { Id = "xat", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Katawixi", + Comment = null, }, new() { Id = "xau", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kauwera", + Comment = null, }, new() { Id = "xav", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Xavánte", + Comment = null, }, new() { Id = "xaw", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kawaiisu", + Comment = null, }, new() { Id = "xay", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kayan Mahakam", + Comment = null, }, new() { Id = "xbb", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Lower Burdekin", + Comment = null, }, new() { Id = "xbc", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "H", RefName = "Bactrian", + Comment = null, }, new() { Id = "xbd", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Bindal", + Comment = null, }, new() { Id = "xbe", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Bigambal", + Comment = null, }, new() { Id = "xbg", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Bunganditj", + Comment = null, }, new() { Id = "xbi", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kombio", + Comment = null, }, new() { Id = "xbj", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Birrpayi", + Comment = null, }, new() { Id = "xbm", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "H", RefName = "Middle Breton", + Comment = null, }, new() { Id = "xbn", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Kenaboi", + Comment = null, }, new() { Id = "xbo", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "H", RefName = "Bolgarian", + Comment = null, }, new() { Id = "xbp", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Bibbulman", + Comment = null, }, new() { Id = "xbr", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kambera", + Comment = null, }, new() { Id = "xbw", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Kambiwá", + Comment = null, }, new() { Id = "xby", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Batjala", + Comment = null, }, new() { Id = "xcb", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "H", RefName = "Cumbric", + Comment = null, }, new() { Id = "xcc", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "H", RefName = "Camunic", + Comment = null, }, new() { Id = "xce", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "H", RefName = "Celtiberian", + Comment = null, }, new() { Id = "xcg", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "H", RefName = "Cisalpine Gaulish", + Comment = null, }, new() { Id = "xch", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Chemakum", + Comment = null, }, new() { Id = "xcl", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "H", RefName = "Classical Armenian", + Comment = null, }, new() { Id = "xcm", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Comecrudo", + Comment = null, }, new() { Id = "xcn", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Cotoname", + Comment = null, }, new() { Id = "xco", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "H", RefName = "Chorasmian", + Comment = null, }, new() { Id = "xcr", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "H", RefName = "Carian", + Comment = null, }, new() { Id = "xct", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "H", RefName = "Classical Tibetan", + Comment = null, }, new() { Id = "xcu", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "H", RefName = "Curonian", + Comment = null, }, new() { Id = "xcv", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Chuvantsy", + Comment = null, }, new() { Id = "xcw", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Coahuilteco", + Comment = null, }, new() { Id = "xcy", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Cayuse", + Comment = null, }, new() { Id = "xda", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Darkinyung", + Comment = null, }, new() { Id = "xdc", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "H", RefName = "Dacian", + Comment = null, }, new() { Id = "xdk", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Dharuk", + Comment = null, }, new() { Id = "xdm", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "H", RefName = "Edomite", + Comment = null, }, new() { Id = "xdo", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kwandu", + Comment = null, }, new() { Id = "xdq", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kaitag", + Comment = null, }, new() { Id = "xdy", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Malayic Dayak", + Comment = null, }, new() { Id = "xeb", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "H", RefName = "Eblan", + Comment = null, }, new() { Id = "xed", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Hdi", + Comment = null, }, new() { Id = "xeg", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "ǁXegwi", + Comment = null, }, new() { Id = "xel", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kelo", + Comment = null, }, new() { Id = "xem", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kembayan", + Comment = null, }, new() { Id = "xep", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "H", RefName = "Epi-Olmec", + Comment = null, }, new() { Id = "xer", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Xerénte", + Comment = null, }, new() { Id = "xes", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kesawai", + Comment = null, }, new() { Id = "xet", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Xetá", + Comment = null, }, new() { Id = "xeu", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Keoru-Ahia", + Comment = null, }, new() { Id = "xfa", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "H", RefName = "Faliscan", + Comment = null, }, new() { Id = "xga", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "H", RefName = "Galatian", + Comment = null, }, new() { Id = "xgb", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Gbin", + Comment = null, }, new() { Id = "xgd", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Gudang", + Comment = null, }, new() { Id = "xgf", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Gabrielino-Fernandeño", + Comment = null, }, new() { Id = "xgg", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Goreng", + Comment = null, }, new() { Id = "xgi", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Garingbal", + Comment = null, }, new() { Id = "xgl", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "H", RefName = "Galindan", + Comment = null, }, new() { Id = "xgm", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Dharumbal", + Comment = null, }, new() { Id = "xgr", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Garza", + Comment = null, }, new() { Id = "xgu", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Unggumi", + Comment = null, }, new() { Id = "xgw", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Guwa", + Comment = null, }, new() { Id = "xha", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "H", RefName = "Harami", + Comment = null, }, new() { Id = "xhc", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "H", RefName = "Hunnic", + Comment = null, }, new() { Id = "xhd", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "H", RefName = "Hadrami", + Comment = null, }, new() { Id = "xhe", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Khetrani", + Comment = null, }, new() { Id = "xhm", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "H", RefName = "Middle Khmer (1400 to 1850 CE)", + Comment = null, }, new() { @@ -51918,2138 +80021,3351 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Xhosa", + Comment = null, }, new() { Id = "xhr", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "H", RefName = "Hernican", + Comment = null, }, new() { Id = "xht", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "H", RefName = "Hattic", + Comment = null, }, new() { Id = "xhu", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "H", RefName = "Hurrian", + Comment = null, }, new() { Id = "xhv", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Khua", + Comment = null, }, new() { Id = "xib", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "H", RefName = "Iberian", + Comment = null, }, new() { Id = "xii", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Xiri", + Comment = null, }, new() { Id = "xil", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "H", RefName = "Illyrian", + Comment = null, }, new() { Id = "xin", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Xinca", + Comment = null, }, new() { Id = "xir", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Xiriâna", + Comment = null, }, new() { Id = "xis", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kisan", + Comment = null, }, new() { Id = "xiv", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "H", RefName = "Indus Valley Language", + Comment = null, }, new() { Id = "xiy", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Xipaya", + Comment = null, }, new() { Id = "xjb", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Minjungbal", + Comment = null, }, new() { Id = "xjt", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Jaitmatang", + Comment = null, }, new() { Id = "xka", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kalkoti", + Comment = null, }, new() { Id = "xkb", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Northern Nago", + Comment = null, }, new() { Id = "xkc", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kho'ini", + Comment = null, }, new() { Id = "xkd", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Mendalam Kayan", + Comment = null, }, new() { Id = "xke", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kereho", + Comment = null, }, new() { Id = "xkf", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Khengkha", + Comment = null, }, new() { Id = "xkg", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kagoro", + Comment = null, }, new() { Id = "xki", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kenyan Sign Language", + Comment = null, }, new() { Id = "xkj", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kajali", + Comment = null, }, new() { Id = "xkk", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kachok", + Comment = null, }, new() { Id = "xkl", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Mainstream Kenyah", + Comment = null, }, new() { Id = "xkn", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kayan River Kayan", + Comment = null, }, new() { Id = "xko", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kiorr", + Comment = null, }, new() { Id = "xkp", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kabatei", + Comment = null, }, new() { Id = "xkq", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Koroni", + Comment = null, }, new() { Id = "xkr", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Xakriabá", + Comment = null, }, new() { Id = "xks", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kumbewaha", + Comment = null, }, new() { Id = "xkt", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kantosi", + Comment = null, }, new() { Id = "xku", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kaamba", + Comment = null, }, new() { Id = "xkv", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kgalagadi", + Comment = null, }, new() { Id = "xkw", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kembra", + Comment = null, }, new() { Id = "xkx", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Karore", + Comment = null, }, new() { Id = "xky", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Uma' Lasan", + Comment = null, }, new() { Id = "xkz", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kurtokha", + Comment = null, }, new() { Id = "xla", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kamula", + Comment = null, }, new() { Id = "xlb", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Loup B", + Comment = null, }, new() { Id = "xlc", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "H", RefName = "Lycian", + Comment = null, }, new() { Id = "xld", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "H", RefName = "Lydian", + Comment = null, }, new() { Id = "xle", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "H", RefName = "Lemnian", + Comment = null, }, new() { Id = "xlg", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "H", RefName = "Ligurian (Ancient)", + Comment = null, }, new() { Id = "xli", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "H", RefName = "Liburnian", + Comment = null, }, new() { Id = "xln", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "H", RefName = "Alanic", + Comment = null, }, new() { Id = "xlo", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Loup A", + Comment = null, }, new() { Id = "xlp", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "H", RefName = "Lepontic", + Comment = null, }, new() { Id = "xls", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "H", RefName = "Lusitanian", + Comment = null, }, new() { Id = "xlu", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "H", RefName = "Cuneiform Luwian", + Comment = null, }, new() { Id = "xly", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "H", RefName = "Elymian", + Comment = null, }, new() { Id = "xma", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Mushungulu", + Comment = null, }, new() { Id = "xmb", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Mbonga", + Comment = null, }, new() { Id = "xmc", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Makhuwa-Marrevone", + Comment = null, }, new() { Id = "xmd", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Mbudum", + Comment = null, }, new() { Id = "xme", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "H", RefName = "Median", + Comment = null, }, new() { Id = "xmf", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Mingrelian", + Comment = null, }, new() { Id = "xmg", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Mengaka", + Comment = null, }, new() { Id = "xmh", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kugu-Muminh", + Comment = null, }, new() { Id = "xmj", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Majera", + Comment = null, }, new() { Id = "xmk", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "H", RefName = "Ancient Macedonian", + Comment = null, }, new() { Id = "xml", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Malaysian Sign Language", + Comment = null, }, new() { Id = "xmm", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Manado Malay", + Comment = null, }, new() { Id = "xmn", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "H", RefName = "Manichaean Middle Persian", + Comment = null, }, new() { Id = "xmo", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Morerebi", + Comment = null, }, new() { Id = "xmp", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Kuku-Mu'inh", + Comment = null, }, new() { Id = "xmq", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Kuku-Mangk", + Comment = null, }, new() { Id = "xmr", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "H", RefName = "Meroitic", + Comment = null, }, new() { Id = "xms", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Moroccan Sign Language", + Comment = null, }, new() { Id = "xmt", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Matbat", + Comment = null, }, new() { Id = "xmu", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Kamu", + Comment = null, }, new() { Id = "xmv", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Antankarana Malagasy", + Comment = null, }, new() { Id = "xmw", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Tsimihety Malagasy", + Comment = null, }, new() { Id = "xmx", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Salawati", + Comment = null, }, new() { Id = "xmy", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Mayaguduna", + Comment = null, }, new() { Id = "xmz", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Mori Bawah", + Comment = null, }, new() { Id = "xna", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "H", RefName = "Ancient North Arabian", + Comment = null, }, new() { Id = "xnb", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kanakanabu", + Comment = null, }, new() { Id = "xng", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "H", RefName = "Middle Mongolian", + Comment = null, }, new() { Id = "xnh", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kuanhua", + Comment = null, }, new() { Id = "xni", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Ngarigu", + Comment = null, }, new() { Id = "xnj", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Ngoni (Tanzania)", + Comment = null, }, new() { Id = "xnk", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Nganakarti", + Comment = null, }, new() { Id = "xnm", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Ngumbarl", + Comment = null, }, new() { Id = "xnn", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Northern Kankanay", + Comment = null, }, new() { Id = "xno", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "H", RefName = "Anglo-Norman", + Comment = null, }, new() { Id = "xnq", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Ngoni (Mozambique)", + Comment = null, }, new() { Id = "xnr", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kangri", + Comment = null, }, new() { Id = "xns", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kanashi", + Comment = null, }, new() { Id = "xnt", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Narragansett", + Comment = null, }, new() { Id = "xnu", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Nukunul", + Comment = null, }, new() { Id = "xny", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Nyiyaparli", + Comment = null, }, new() { Id = "xnz", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kenzi", + Comment = null, }, new() { Id = "xoc", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "O'chi'chi'", + Comment = null, }, new() { Id = "xod", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kokoda", + Comment = null, }, new() { Id = "xog", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Soga", + Comment = null, }, new() { Id = "xoi", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kominimung", + Comment = null, }, new() { Id = "xok", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Xokleng", + Comment = null, }, new() { Id = "xom", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Komo (Sudan)", + Comment = null, }, new() { Id = "xon", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Konkomba", + Comment = null, }, new() { Id = "xoo", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Xukurú", + Comment = null, }, new() { Id = "xop", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kopar", + Comment = null, }, new() { Id = "xor", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Korubo", + Comment = null, }, new() { Id = "xow", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kowaki", + Comment = null, }, new() { Id = "xpa", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Pirriya", + Comment = null, }, new() { Id = "xpb", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Northeastern Tasmanian", + Comment = null, }, new() { Id = "xpc", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "H", RefName = "Pecheneg", + Comment = null, }, new() { Id = "xpd", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Oyster Bay Tasmanian", + Comment = null, }, new() { Id = "xpe", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Liberia Kpelle", + Comment = null, }, new() { Id = "xpf", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Southeast Tasmanian", + Comment = null, }, new() { Id = "xpg", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "H", RefName = "Phrygian", + Comment = null, }, new() { Id = "xph", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "North Midlands Tasmanian", + Comment = null, }, new() { Id = "xpi", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "H", RefName = "Pictish", + Comment = null, }, new() { Id = "xpj", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Mpalitjanh", + Comment = null, }, new() { Id = "xpk", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kulina Pano", + Comment = null, }, new() { Id = "xpl", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Port Sorell Tasmanian", + Comment = null, }, new() { Id = "xpm", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Pumpokol", + Comment = null, }, new() { Id = "xpn", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Kapinawá", + Comment = null, }, new() { Id = "xpo", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Pochutec", + Comment = null, }, new() { Id = "xpp", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "H", RefName = "Puyo-Paekche", + Comment = null, }, new() { Id = "xpq", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Mohegan-Pequot", + Comment = null, }, new() { Id = "xpr", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "H", RefName = "Parthian", + Comment = null, }, new() { Id = "xps", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "H", RefName = "Pisidian", + Comment = null, }, new() { Id = "xpt", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Punthamara", + Comment = null, }, new() { Id = "xpu", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "H", RefName = "Punic", + Comment = null, }, new() { Id = "xpv", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Northern Tasmanian", + Comment = null, }, new() { Id = "xpw", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Northwestern Tasmanian", + Comment = null, }, new() { Id = "xpx", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Southwestern Tasmanian", + Comment = null, }, new() { Id = "xpy", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "H", RefName = "Puyo", + Comment = null, }, new() { Id = "xpz", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Bruny Island Tasmanian", + Comment = null, }, new() { Id = "xqa", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "H", RefName = "Karakhanid", + Comment = null, }, new() { Id = "xqt", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "H", RefName = "Qatabanian", + Comment = null, }, new() { Id = "xra", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Krahô", + Comment = null, }, new() { Id = "xrb", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Eastern Karaboro", + Comment = null, }, new() { Id = "xrd", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Gundungurra", + Comment = null, }, new() { Id = "xre", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kreye", + Comment = null, }, new() { Id = "xrg", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Minang", + Comment = null, }, new() { Id = "xri", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Krikati-Timbira", + Comment = null, }, new() { Id = "xrm", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "H", RefName = "Armazic", + Comment = null, }, new() { Id = "xrn", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Arin", + Comment = null, }, new() { Id = "xrr", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "H", RefName = "Raetic", + Comment = null, }, new() { Id = "xrt", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Aranama-Tamique", + Comment = null, }, new() { Id = "xru", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Marriammu", + Comment = null, }, new() { Id = "xrw", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Karawa", + Comment = null, }, new() { Id = "xsa", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "H", RefName = "Sabaean", + Comment = null, }, new() { Id = "xsb", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Sambal", + Comment = null, }, new() { Id = "xsc", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "H", RefName = "Scythian", + Comment = null, }, new() { Id = "xsd", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "H", RefName = "Sidetic", + Comment = null, }, new() { Id = "xse", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Sempan", + Comment = null, }, new() { Id = "xsh", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Shamang", + Comment = null, }, new() { Id = "xsi", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Sio", + Comment = null, }, new() { Id = "xsj", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Subi", + Comment = null, }, new() { Id = "xsl", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "South Slavey", + Comment = null, }, new() { Id = "xsm", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kasem", + Comment = null, }, new() { Id = "xsn", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Sanga (Nigeria)", + Comment = null, }, new() { Id = "xso", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Solano", + Comment = null, }, new() { Id = "xsp", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Silopi", + Comment = null, }, new() { Id = "xsq", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Makhuwa-Saka", + Comment = null, }, new() { Id = "xsr", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Sherpa", + Comment = null, }, new() { Id = "xsu", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Sanumá", + Comment = null, }, new() { Id = "xsv", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Sudovian", + Comment = null, }, new() { Id = "xsy", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Saisiyat", + Comment = null, }, new() { Id = "xta", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Alcozauca Mixtec", + Comment = null, }, new() { Id = "xtb", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Chazumba Mixtec", + Comment = null, }, new() { Id = "xtc", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Katcha-Kadugli-Miri", + Comment = null, }, new() { Id = "xtd", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Diuxi-Tilantongo Mixtec", + Comment = null, }, new() { Id = "xte", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Ketengban", + Comment = null, }, new() { Id = "xtg", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "H", RefName = "Transalpine Gaulish", + Comment = null, }, new() { Id = "xth", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Yitha Yitha", + Comment = null, }, new() { Id = "xti", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Sinicahua Mixtec", + Comment = null, }, new() { Id = "xtj", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "San Juan Teita Mixtec", + Comment = null, }, new() { Id = "xtl", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Tijaltepec Mixtec", + Comment = null, }, new() { Id = "xtm", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Magdalena Peñasco Mixtec", + Comment = null, }, new() { Id = "xtn", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Northern Tlaxiaco Mixtec", + Comment = null, }, new() { Id = "xto", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "H", RefName = "Tokharian A", + Comment = null, }, new() { Id = "xtp", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "San Miguel Piedras Mixtec", + Comment = null, }, new() { Id = "xtq", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "H", RefName = "Tumshuqese", + Comment = null, }, new() { Id = "xtr", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "H", RefName = "Early Tripuri", + Comment = null, }, new() { Id = "xts", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Sindihui Mixtec", + Comment = null, }, new() { Id = "xtt", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Tacahua Mixtec", + Comment = null, }, new() { Id = "xtu", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Cuyamecalco Mixtec", + Comment = null, }, new() { Id = "xtv", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Thawa", + Comment = null, }, new() { Id = "xtw", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Tawandê", + Comment = null, }, new() { Id = "xty", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Yoloxochitl Mixtec", + Comment = null, }, new() { Id = "xua", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Alu Kurumba", + Comment = null, }, new() { Id = "xub", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Betta Kurumba", + Comment = null, }, new() { Id = "xud", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Umiida", + Comment = null, }, new() { Id = "xug", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kunigami", + Comment = null, }, new() { Id = "xuj", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Jennu Kurumba", + Comment = null, }, new() { Id = "xul", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Ngunawal", + Comment = null, }, new() { Id = "xum", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "H", RefName = "Umbrian", + Comment = null, }, new() { Id = "xun", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Unggaranggu", + Comment = null, }, new() { Id = "xuo", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kuo", + Comment = null, }, new() { Id = "xup", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Upper Umpqua", + Comment = null, }, new() { Id = "xur", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "H", RefName = "Urartian", + Comment = null, }, new() { Id = "xut", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Kuthant", + Comment = null, }, new() { Id = "xuu", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kxoe", + Comment = null, }, new() { Id = "xve", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "H", RefName = "Venetic", + Comment = null, }, new() { Id = "xvi", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kamviri", + Comment = null, }, new() { Id = "xvn", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "H", RefName = "Vandalic", + Comment = null, }, new() { Id = "xvo", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "H", RefName = "Volscian", + Comment = null, }, new() { Id = "xvs", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "H", RefName = "Vestinian", + Comment = null, }, new() { Id = "xwa", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kwaza", + Comment = null, }, new() { Id = "xwc", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Woccon", + Comment = null, }, new() { Id = "xwd", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Wadi Wadi", + Comment = null, }, new() { Id = "xwe", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Xwela Gbe", + Comment = null, }, new() { Id = "xwg", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kwegu", + Comment = null, }, new() { Id = "xwj", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Wajuk", + Comment = null, }, new() { Id = "xwk", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Wangkumara", + Comment = null, }, new() { Id = "xwl", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Western Xwla Gbe", + Comment = null, }, new() { Id = "xwo", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Written Oirat", + Comment = null, }, new() { Id = "xwr", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kwerba Mamberamo", + Comment = null, }, new() { Id = "xwt", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Wotjobaluk", + Comment = null, }, new() { Id = "xww", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Wemba Wemba", + Comment = null, }, new() { Id = "xxb", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Boro (Ghana)", + Comment = null, }, new() { Id = "xxk", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Ke'o", + Comment = null, }, new() { Id = "xxm", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Minkin", + Comment = null, }, new() { Id = "xxr", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Koropó", + Comment = null, }, new() { Id = "xxt", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Tambora", + Comment = null, }, new() { Id = "xya", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Yaygir", + Comment = null, }, new() { Id = "xyb", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Yandjibara", + Comment = null, }, new() { Id = "xyj", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Mayi-Yapi", + Comment = null, }, new() { Id = "xyk", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Mayi-Kulan", + Comment = null, }, new() { Id = "xyl", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Yalakalore", + Comment = null, }, new() { Id = "xyt", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Mayi-Thakurti", + Comment = null, }, new() { Id = "xyy", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Yorta Yorta", + Comment = null, }, new() { Id = "xzh", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "H", RefName = "Zhang-Zhung", + Comment = null, }, new() { Id = "xzm", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Zemgalian", + Comment = null, }, new() { Id = "xzp", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "H", RefName = "Ancient Zapotec", + Comment = null, }, new() { Id = "yaa", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Yaminahua", + Comment = null, }, new() { Id = "yab", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Yuhup", + Comment = null, }, new() { Id = "yac", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Pass Valley Yali", + Comment = null, }, new() { Id = "yad", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Yagua", + Comment = null, }, new() { Id = "yae", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Pumé", + Comment = null, }, new() { Id = "yaf", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Yaka (Democratic Republic of Congo)", + Comment = null, }, new() { Id = "yag", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Yámana", + Comment = null, }, new() { Id = "yah", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Yazgulyam", + Comment = null, }, new() { Id = "yai", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Yagnobi", + Comment = null, }, new() { Id = "yaj", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Banda-Yangere", + Comment = null, }, new() { Id = "yak", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Yakama", + Comment = null, }, new() { Id = "yal", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Yalunka", + Comment = null, }, new() { Id = "yam", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Yamba", + Comment = null, }, new() { Id = "yan", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Mayangna", + Comment = null, }, new() { Id = "yao", Part2B = "yao", Part2T = "yao", + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Yao", + Comment = null, }, new() { Id = "yap", Part2B = "yap", Part2T = "yap", + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Yapese", + Comment = null, }, new() { Id = "yaq", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Yaqui", + Comment = null, }, new() { Id = "yar", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Yabarana", + Comment = null, }, new() { Id = "yas", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Nugunu (Cameroon)", + Comment = null, }, new() { Id = "yat", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Yambeta", + Comment = null, }, new() { Id = "yau", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Yuwana", + Comment = null, }, new() { Id = "yav", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Yangben", + Comment = null, }, new() { Id = "yaw", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Yawalapití", + Comment = null, }, new() { Id = "yax", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Yauma", + Comment = null, }, new() { Id = "yay", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Agwagwune", + Comment = null, }, new() { Id = "yaz", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Lokaa", + Comment = null, }, new() { Id = "yba", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Yala", + Comment = null, }, new() { Id = "ybb", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Yemba", + Comment = null, }, new() { Id = "ybe", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "West Yugur", + Comment = null, }, new() { Id = "ybh", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Yakha", + Comment = null, }, new() { Id = "ybi", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Yamphu", + Comment = null, }, new() { Id = "ybj", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Hasha", + Comment = null, }, new() { Id = "ybk", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Bokha", + Comment = null, }, new() { Id = "ybl", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Yukuben", + Comment = null, }, new() { Id = "ybm", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Yaben", + Comment = null, }, new() { Id = "ybn", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Yabaâna", + Comment = null, }, new() { Id = "ybo", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Yabong", + Comment = null, }, new() { Id = "ybx", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Yawiyo", + Comment = null, }, new() { Id = "yby", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Yaweyuha", + Comment = null, }, new() { Id = "ych", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Chesu", + Comment = null, }, new() { Id = "ycl", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Lolopo", + Comment = null, }, new() { Id = "ycn", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Yucuna", + Comment = null, }, new() { Id = "ycp", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Chepya", + Comment = null, }, new() { Id = "ycr", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Yilan Creole", + Comment = null, }, new() { Id = "yda", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Yanda", + Comment = null, }, new() { Id = "ydd", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Eastern Yiddish", + Comment = null, }, new() { Id = "yde", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Yangum Dey", + Comment = null, }, new() { Id = "ydg", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Yidgha", + Comment = null, }, new() { Id = "ydk", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Yoidik", + Comment = null, }, new() { Id = "yea", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Ravula", + Comment = null, }, new() { Id = "yec", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Yeniche", + Comment = null, }, new() { Id = "yee", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Yimas", + Comment = null, }, new() { Id = "yei", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Yeni", + Comment = null, }, new() { Id = "yej", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Yevanic", + Comment = null, }, new() { Id = "yel", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Yela", + Comment = null, }, new() { Id = "yer", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Tarok", + Comment = null, }, new() { Id = "yes", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Nyankpa", + Comment = null, }, new() { Id = "yet", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Yetfa", + Comment = null, }, new() { Id = "yeu", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Yerukula", + Comment = null, }, new() { Id = "yev", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Yapunda", + Comment = null, }, new() { Id = "yey", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Yeyi", + Comment = null, }, new() { Id = "yga", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Malyangapa", + Comment = null, }, new() { Id = "ygi", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Yiningayi", + Comment = null, }, new() { Id = "ygl", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Yangum Gel", + Comment = null, }, new() { Id = "ygm", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Yagomi", + Comment = null, }, new() { Id = "ygp", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Gepo", + Comment = null, }, new() { Id = "ygr", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Yagaria", + Comment = null, }, new() { Id = "ygs", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Yolŋu Sign Language", + Comment = null, }, new() { Id = "ygu", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Yugul", + Comment = null, }, new() { Id = "ygw", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Yagwoia", + Comment = null, }, new() { Id = "yha", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Baha Buyang", + Comment = null, }, new() { Id = "yhd", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Judeo-Iraqi Arabic", + Comment = null, }, new() { Id = "yhl", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Hlepho Phowa", + Comment = null, }, new() { Id = "yhs", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Yan-nhaŋu Sign Language", + Comment = null, }, new() { Id = "yia", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Yinggarda", + Comment = null, }, new() { @@ -54060,559 +83376,876 @@ public static Iso6393Data Create() => Scope = "M", LanguageType = "L", RefName = "Yiddish", + Comment = null, }, new() { Id = "yif", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Ache", + Comment = null, }, new() { Id = "yig", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Wusa Nasu", + Comment = null, }, new() { Id = "yih", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Western Yiddish", + Comment = null, }, new() { Id = "yii", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Yidiny", + Comment = null, }, new() { Id = "yij", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Yindjibarndi", + Comment = null, }, new() { Id = "yik", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Dongshanba Lalo", + Comment = null, }, new() { Id = "yil", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Yindjilandji", + Comment = null, }, new() { Id = "yim", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Yimchungru Naga", + Comment = null, }, new() { Id = "yin", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Riang Lai", + Comment = null, }, new() { Id = "yip", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Pholo", + Comment = null, }, new() { Id = "yiq", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Miqie", + Comment = null, }, new() { Id = "yir", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "North Awyu", + Comment = null, }, new() { Id = "yis", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Yis", + Comment = null, }, new() { Id = "yit", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Eastern Lalu", + Comment = null, }, new() { Id = "yiu", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Awu", + Comment = null, }, new() { Id = "yiv", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Northern Nisu", + Comment = null, }, new() { Id = "yix", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Axi Yi", + Comment = null, }, new() { Id = "yiz", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Azhe", + Comment = null, }, new() { Id = "yka", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Yakan", + Comment = null, }, new() { Id = "ykg", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Northern Yukaghir", + Comment = null, }, new() { Id = "ykh", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Khamnigan Mongol", + Comment = null, }, new() { Id = "yki", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Yoke", + Comment = null, }, new() { Id = "ykk", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Yakaikeke", + Comment = null, }, new() { Id = "ykl", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Khlula", + Comment = null, }, new() { Id = "ykm", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kap", + Comment = null, }, new() { Id = "ykn", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kua-nsi", + Comment = null, }, new() { Id = "yko", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Yasa", + Comment = null, }, new() { Id = "ykr", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Yekora", + Comment = null, }, new() { Id = "ykt", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kathu", + Comment = null, }, new() { Id = "yku", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kuamasi", + Comment = null, }, new() { Id = "yky", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Yakoma", + Comment = null, }, new() { Id = "yla", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Yaul", + Comment = null, }, new() { Id = "ylb", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Yaleba", + Comment = null, }, new() { Id = "yle", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Yele", + Comment = null, }, new() { Id = "ylg", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Yelogu", + Comment = null, }, new() { Id = "yli", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Angguruk Yali", + Comment = null, }, new() { Id = "yll", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Yil", + Comment = null, }, new() { Id = "ylm", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Limi", + Comment = null, }, new() { Id = "yln", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Langnian Buyang", + Comment = null, }, new() { Id = "ylo", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Naluo Yi", + Comment = null, }, new() { Id = "ylr", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Yalarnnga", + Comment = null, }, new() { Id = "ylu", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Aribwaung", + Comment = null, }, new() { Id = "yly", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Nyâlayu", + Comment = null, }, new() { Id = "ymb", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Yambes", + Comment = null, }, new() { Id = "ymc", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Southern Muji", + Comment = null, }, new() { Id = "ymd", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Muda", + Comment = null, }, new() { Id = "yme", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Yameo", + Comment = null, }, new() { Id = "ymg", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Yamongeri", + Comment = null, }, new() { Id = "ymh", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Mili", + Comment = null, }, new() { Id = "ymi", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Moji", + Comment = null, }, new() { Id = "ymk", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Makwe", + Comment = null, }, new() { Id = "yml", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Iamalele", + Comment = null, }, new() { Id = "ymm", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Maay", + Comment = null, }, new() { Id = "ymn", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Yamna", + Comment = null, }, new() { Id = "ymo", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Yangum Mon", + Comment = null, }, new() { Id = "ymp", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Yamap", + Comment = null, }, new() { Id = "ymq", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Qila Muji", + Comment = null, }, new() { Id = "ymr", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Malasar", + Comment = null, }, new() { Id = "yms", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "H", RefName = "Mysian", + Comment = null, }, new() { Id = "ymx", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Northern Muji", + Comment = null, }, new() { Id = "ymz", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Muzi", + Comment = null, }, new() { Id = "yna", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Aluo", + Comment = null, }, new() { Id = "ynb", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Yamben", + Comment = null, }, new() { Id = "ynd", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Yandruwandha", + Comment = null, }, new() { Id = "yne", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Lang'e", + Comment = null, }, new() { Id = "yng", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Yango", + Comment = null, }, new() { Id = "ynk", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Naukan Yupik", + Comment = null, }, new() { Id = "ynl", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Yangulam", + Comment = null, }, new() { Id = "ynn", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Yana", + Comment = null, }, new() { Id = "yno", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Yong", + Comment = null, }, new() { Id = "ynq", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Yendang", + Comment = null, }, new() { Id = "yns", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Yansi", + Comment = null, }, new() { Id = "ynu", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Yahuna", + Comment = null, }, new() { Id = "yob", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Yoba", + Comment = null, }, new() { Id = "yog", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Yogad", + Comment = null, }, new() { Id = "yoi", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Yonaguni", + Comment = null, }, new() { Id = "yok", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Yokuts", + Comment = null, }, new() { Id = "yom", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Yombe", + Comment = null, }, new() { Id = "yon", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Yongkom", + Comment = null, }, new() { @@ -54623,917 +84256,1426 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Yoruba", + Comment = null, }, new() { Id = "yot", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Yotti", + Comment = null, }, new() { Id = "yox", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Yoron", + Comment = null, }, new() { Id = "yoy", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Yoy", + Comment = null, }, new() { Id = "ypa", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Phala", + Comment = null, }, new() { Id = "ypb", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Labo Phowa", + Comment = null, }, new() { Id = "ypg", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Phola", + Comment = null, }, new() { Id = "yph", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Phupha", + Comment = null, }, new() { Id = "ypm", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Phuma", + Comment = null, }, new() { Id = "ypn", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Ani Phowa", + Comment = null, }, new() { Id = "ypo", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Alo Phola", + Comment = null, }, new() { Id = "ypp", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Phupa", + Comment = null, }, new() { Id = "ypz", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Phuza", + Comment = null, }, new() { Id = "yra", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Yerakai", + Comment = null, }, new() { Id = "yrb", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Yareba", + Comment = null, }, new() { Id = "yre", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Yaouré", + Comment = null, }, new() { Id = "yrk", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Nenets", + Comment = null, }, new() { Id = "yrl", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Nhengatu", + Comment = null, }, new() { Id = "yrm", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Yirrk-Mel", + Comment = null, }, new() { Id = "yrn", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Yerong", + Comment = null, }, new() { Id = "yro", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Yaroamë", + Comment = null, }, new() { Id = "yrs", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Yarsun", + Comment = null, }, new() { Id = "yrw", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Yarawata", + Comment = null, }, new() { Id = "yry", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Yarluyandi", + Comment = null, }, new() { Id = "ysc", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Yassic", + Comment = null, }, new() { Id = "ysd", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Samatao", + Comment = null, }, new() { Id = "ysg", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Sonaga", + Comment = null, }, new() { Id = "ysl", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Yugoslavian Sign Language", + Comment = null, }, new() { Id = "ysm", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Myanmar Sign Language", + Comment = null, }, new() { Id = "ysn", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Sani", + Comment = null, }, new() { Id = "yso", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Nisi (China)", + Comment = null, }, new() { Id = "ysp", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Southern Lolopo", + Comment = null, }, new() { Id = "ysr", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Sirenik Yupik", + Comment = null, }, new() { Id = "yss", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Yessan-Mayo", + Comment = null, }, new() { Id = "ysy", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Sanie", + Comment = null, }, new() { Id = "yta", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Talu", + Comment = null, }, new() { Id = "ytl", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Tanglang", + Comment = null, }, new() { Id = "ytp", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Thopho", + Comment = null, }, new() { Id = "ytw", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Yout Wam", + Comment = null, }, new() { Id = "yty", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Yatay", + Comment = null, }, new() { Id = "yua", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Yucateco", + Comment = null, }, new() { Id = "yub", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Yugambal", + Comment = null, }, new() { Id = "yuc", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Yuchi", + Comment = null, }, new() { Id = "yud", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Judeo-Tripolitanian Arabic", + Comment = null, }, new() { Id = "yue", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Yue Chinese", + Comment = null, }, new() { Id = "yuf", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Havasupai-Walapai-Yavapai", + Comment = null, }, new() { Id = "yug", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Yug", + Comment = null, }, new() { Id = "yui", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Yurutí", + Comment = null, }, new() { Id = "yuj", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Karkar-Yuri", + Comment = null, }, new() { Id = "yuk", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Yuki", + Comment = null, }, new() { Id = "yul", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Yulu", + Comment = null, }, new() { Id = "yum", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Quechan", + Comment = null, }, new() { Id = "yun", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Bena (Nigeria)", + Comment = null, }, new() { Id = "yup", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Yukpa", + Comment = null, }, new() { Id = "yuq", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Yuqui", + Comment = null, }, new() { Id = "yur", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Yurok", + Comment = null, }, new() { Id = "yut", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Yopno", + Comment = null, }, new() { Id = "yuw", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Yau (Morobe Province)", + Comment = null, }, new() { Id = "yux", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Southern Yukaghir", + Comment = null, }, new() { Id = "yuy", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "East Yugur", + Comment = null, }, new() { Id = "yuz", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Yuracare", + Comment = null, }, new() { Id = "yva", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Yawa", + Comment = null, }, new() { Id = "yvt", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Yavitero", + Comment = null, }, new() { Id = "ywa", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kalou", + Comment = null, }, new() { Id = "ywg", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Yinhawangka", + Comment = null, }, new() { Id = "ywl", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Western Lalu", + Comment = null, }, new() { Id = "ywn", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Yawanawa", + Comment = null, }, new() { Id = "ywq", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Wuding-Luquan Yi", + Comment = null, }, new() { Id = "ywr", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Yawuru", + Comment = null, }, new() { Id = "ywt", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Xishanba Lalo", + Comment = null, }, new() { Id = "ywu", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Wumeng Nasu", + Comment = null, }, new() { Id = "yww", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Yawarawarga", + Comment = null, }, new() { Id = "yxa", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Mayawali", + Comment = null, }, new() { Id = "yxg", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Yagara", + Comment = null, }, new() { Id = "yxl", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Yardliyawarra", + Comment = null, }, new() { Id = "yxm", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Yinwum", + Comment = null, }, new() { Id = "yxu", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Yuyu", + Comment = null, }, new() { Id = "yxy", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Yabula Yabula", + Comment = null, }, new() { Id = "yyr", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Yir Yoront", + Comment = null, }, new() { Id = "yyu", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Yau (Sandaun Province)", + Comment = null, }, new() { Id = "yyz", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Ayizi", + Comment = null, }, new() { Id = "yzg", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "E'ma Buyang", + Comment = null, }, new() { Id = "yzk", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Zokhuo", + Comment = null, }, new() { Id = "zaa", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Sierra de Juárez Zapotec", + Comment = null, }, new() { Id = "zab", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Western Tlacolula Valley Zapotec", + Comment = null, }, new() { Id = "zac", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Ocotlán Zapotec", + Comment = null, }, new() { Id = "zad", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Cajonos Zapotec", + Comment = null, }, new() { Id = "zae", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Yareni Zapotec", + Comment = null, }, new() { Id = "zaf", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Ayoquesco Zapotec", + Comment = null, }, new() { Id = "zag", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Zaghawa", + Comment = null, }, new() { Id = "zah", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Zangwal", + Comment = null, }, new() { Id = "zai", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Isthmus Zapotec", + Comment = null, }, new() { Id = "zaj", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Zaramo", + Comment = null, }, new() { Id = "zak", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Zanaki", + Comment = null, }, new() { Id = "zal", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Zauzou", + Comment = null, }, new() { Id = "zam", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Miahuatlán Zapotec", + Comment = null, }, new() { Id = "zao", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Ozolotepec Zapotec", + Comment = null, }, new() { Id = "zap", Part2B = "zap", Part2T = "zap", + Part1 = null, Scope = "M", LanguageType = "L", RefName = "Zapotec", + Comment = null, }, new() { Id = "zaq", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Aloápam Zapotec", + Comment = null, }, new() { Id = "zar", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Rincón Zapotec", + Comment = null, }, new() { Id = "zas", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Santo Domingo Albarradas Zapotec", + Comment = null, }, new() { Id = "zat", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Tabaa Zapotec", + Comment = null, }, new() { Id = "zau", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Zangskari", + Comment = null, }, new() { Id = "zav", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Yatzachi Zapotec", + Comment = null, }, new() { Id = "zaw", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Mitla Zapotec", + Comment = null, }, new() { Id = "zax", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Xadani Zapotec", + Comment = null, }, new() { Id = "zay", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Zayse-Zergulla", + Comment = null, }, new() { Id = "zaz", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Zari", + Comment = null, }, new() { Id = "zba", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "C", RefName = "Balaibalan", + Comment = null, }, new() { Id = "zbc", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Central Berawan", + Comment = null, }, new() { Id = "zbe", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "East Berawan", + Comment = null, }, new() { Id = "zbl", Part2B = "zbl", Part2T = "zbl", + Part1 = null, Scope = "I", LanguageType = "C", RefName = "Blissymbols", + Comment = null, }, new() { Id = "zbt", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Batui", + Comment = null, }, new() { Id = "zbu", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Bu (Bauchi State)", + Comment = null, }, new() { Id = "zbw", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "West Berawan", + Comment = null, }, new() { Id = "zca", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Coatecas Altas Zapotec", + Comment = null, }, new() { Id = "zcd", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Las Delicias Zapotec", + Comment = null, }, new() { Id = "zch", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Central Hongshuihe Zhuang", + Comment = null, }, new() { Id = "zdj", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Ngazidja Comorian", + Comment = null, }, new() { Id = "zea", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Zeeuws", + Comment = null, }, new() { Id = "zeg", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Zenag", + Comment = null, }, new() { Id = "zeh", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Eastern Hongshuihe Zhuang", + Comment = null, }, new() { Id = "zem", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Zeem", + Comment = null, }, new() { Id = "zen", Part2B = "zen", Part2T = "zen", + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Zenaga", + Comment = null, }, new() { Id = "zga", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kinga", + Comment = null, }, new() { Id = "zgb", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Guibei Zhuang", + Comment = null, }, new() { Id = "zgh", Part2B = "zgh", Part2T = "zgh", + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Standard Moroccan Tamazight", + Comment = null, }, new() { Id = "zgm", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Minz Zhuang", + Comment = null, }, new() { Id = "zgn", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Guibian Zhuang", + Comment = null, }, new() { Id = "zgr", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Magori", + Comment = null, }, new() { @@ -55544,34 +85686,51 @@ public static Iso6393Data Create() => Scope = "M", LanguageType = "L", RefName = "Zhuang", + Comment = null, }, new() { Id = "zhb", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Zhaba", + Comment = null, }, new() { Id = "zhd", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Dai Zhuang", + Comment = null, }, new() { Id = "zhi", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Zhire", + Comment = null, }, new() { Id = "zhn", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Nong Zhuang", + Comment = null, }, new() { @@ -55582,832 +85741,1305 @@ public static Iso6393Data Create() => Scope = "M", LanguageType = "L", RefName = "Chinese", + Comment = null, }, new() { Id = "zhw", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Zhoa", + Comment = null, }, new() { Id = "zia", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Zia", + Comment = null, }, new() { Id = "zib", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Zimbabwe Sign Language", + Comment = null, }, new() { Id = "zik", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Zimakani", + Comment = null, }, new() { Id = "zil", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Zialo", + Comment = null, }, new() { Id = "zim", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Mesme", + Comment = null, }, new() { Id = "zin", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Zinza", + Comment = null, }, new() { Id = "ziw", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Zigula", + Comment = null, }, new() { Id = "ziz", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Zizilivakan", + Comment = null, }, new() { Id = "zka", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kaimbulawa", + Comment = null, }, new() { Id = "zkd", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kadu", + Comment = null, }, new() { Id = "zkg", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "H", RefName = "Koguryo", + Comment = null, }, new() { Id = "zkh", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "H", RefName = "Khorezmian", + Comment = null, }, new() { Id = "zkk", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Karankawa", + Comment = null, }, new() { Id = "zkn", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kanan", + Comment = null, }, new() { Id = "zko", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Kott", + Comment = null, }, new() { Id = "zkp", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "São Paulo Kaingáng", + Comment = null, }, new() { Id = "zkr", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Zakhring", + Comment = null, }, new() { Id = "zkt", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "H", RefName = "Kitan", + Comment = null, }, new() { Id = "zku", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kaurna", + Comment = null, }, new() { Id = "zkv", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Krevinian", + Comment = null, }, new() { Id = "zkz", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "H", RefName = "Khazar", + Comment = null, }, new() { Id = "zla", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Zula", + Comment = null, }, new() { Id = "zlj", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Liujiang Zhuang", + Comment = null, }, new() { Id = "zlm", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Malay (individual language)", + Comment = null, }, new() { Id = "zln", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Lianshan Zhuang", + Comment = null, }, new() { Id = "zlq", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Liuqian Zhuang", + Comment = null, }, new() { Id = "zlu", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Zul", + Comment = null, }, new() { Id = "zma", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Manda (Australia)", + Comment = null, }, new() { Id = "zmb", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Zimba", + Comment = null, }, new() { Id = "zmc", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Margany", + Comment = null, }, new() { Id = "zmd", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Maridan", + Comment = null, }, new() { Id = "zme", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Mangerr", + Comment = null, }, new() { Id = "zmf", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Mfinu", + Comment = null, }, new() { Id = "zmg", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Marti Ke", + Comment = null, }, new() { Id = "zmh", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Makolkol", + Comment = null, }, new() { Id = "zmi", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Negeri Sembilan Malay", + Comment = null, }, new() { Id = "zmj", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Maridjabin", + Comment = null, }, new() { Id = "zmk", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Mandandanyi", + Comment = null, }, new() { Id = "zml", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Matngala", + Comment = null, }, new() { Id = "zmm", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Marimanindji", + Comment = null, }, new() { Id = "zmn", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Mbangwe", + Comment = null, }, new() { Id = "zmo", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Molo", + Comment = null, }, new() { Id = "zmp", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Mbuun", + Comment = null, }, new() { Id = "zmq", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Mituku", + Comment = null, }, new() { Id = "zmr", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Maranunggu", + Comment = null, }, new() { Id = "zms", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Mbesa", + Comment = null, }, new() { Id = "zmt", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Maringarr", + Comment = null, }, new() { Id = "zmu", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Muruwari", + Comment = null, }, new() { Id = "zmv", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Mbariman-Gudhinma", + Comment = null, }, new() { Id = "zmw", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Mbo (Democratic Republic of Congo)", + Comment = null, }, new() { Id = "zmx", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Bomitaba", + Comment = null, }, new() { Id = "zmy", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Mariyedi", + Comment = null, }, new() { Id = "zmz", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Mbandja", + Comment = null, }, new() { Id = "zna", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Zan Gula", + Comment = null, }, new() { Id = "zne", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Zande (individual language)", + Comment = null, }, new() { Id = "zng", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Mang", + Comment = null, }, new() { Id = "znk", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Manangkari", + Comment = null, }, new() { Id = "zns", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Mangas", + Comment = null, }, new() { Id = "zoc", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Copainalá Zoque", + Comment = null, }, new() { Id = "zoh", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Chimalapa Zoque", + Comment = null, }, new() { Id = "zom", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Zou", + Comment = null, }, new() { Id = "zoo", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Asunción Mixtepec Zapotec", + Comment = null, }, new() { Id = "zoq", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Tabasco Zoque", + Comment = null, }, new() { Id = "zor", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Rayón Zoque", + Comment = null, }, new() { Id = "zos", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Francisco León Zoque", + Comment = null, }, new() { Id = "zpa", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Lachiguiri Zapotec", + Comment = null, }, new() { Id = "zpb", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Yautepec Zapotec", + Comment = null, }, new() { Id = "zpc", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Choapan Zapotec", + Comment = null, }, new() { Id = "zpd", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Southeastern Ixtlán Zapotec", + Comment = null, }, new() { Id = "zpe", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Petapa Zapotec", + Comment = null, }, new() { Id = "zpf", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "San Pedro Quiatoni Zapotec", + Comment = null, }, new() { Id = "zpg", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Guevea De Humboldt Zapotec", + Comment = null, }, new() { Id = "zph", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Totomachapan Zapotec", + Comment = null, }, new() { Id = "zpi", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Santa María Quiegolani Zapotec", + Comment = null, }, new() { Id = "zpj", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Quiavicuzas Zapotec", + Comment = null, }, new() { Id = "zpk", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Tlacolulita Zapotec", + Comment = null, }, new() { Id = "zpl", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Lachixío Zapotec", + Comment = null, }, new() { Id = "zpm", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Mixtepec Zapotec", + Comment = null, }, new() { Id = "zpn", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Santa Inés Yatzechi Zapotec", + Comment = null, }, new() { Id = "zpo", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Amatlán Zapotec", + Comment = null, }, new() { Id = "zpp", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "El Alto Zapotec", + Comment = null, }, new() { Id = "zpq", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Zoogocho Zapotec", + Comment = null, }, new() { Id = "zpr", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Santiago Xanica Zapotec", + Comment = null, }, new() { Id = "zps", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Coatlán Zapotec", + Comment = null, }, new() { Id = "zpt", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "San Vicente Coatlán Zapotec", + Comment = null, }, new() { Id = "zpu", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Yalálag Zapotec", + Comment = null, }, new() { Id = "zpv", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Chichicapan Zapotec", + Comment = null, }, new() { Id = "zpw", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Zaniza Zapotec", + Comment = null, }, new() { Id = "zpx", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "San Baltazar Loxicha Zapotec", + Comment = null, }, new() { Id = "zpy", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Mazaltepec Zapotec", + Comment = null, }, new() { Id = "zpz", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Texmelucan Zapotec", + Comment = null, }, new() { Id = "zqe", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Qiubei Zhuang", + Comment = null, }, new() { Id = "zra", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "H", RefName = "Kara (Korea)", + Comment = null, }, new() { Id = "zrg", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Mirgan", + Comment = null, }, new() { Id = "zrn", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Zerenkel", + Comment = null, }, new() { Id = "zro", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Záparo", + Comment = null, }, new() { Id = "zrp", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "E", RefName = "Zarphatic", + Comment = null, }, new() { Id = "zrs", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Mairasi", + Comment = null, }, new() { Id = "zsa", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Sarasira", + Comment = null, }, new() { Id = "zsk", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "H", RefName = "Kaskean", + Comment = null, }, new() { Id = "zsl", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Zambian Sign Language", + Comment = null, }, new() { Id = "zsm", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Standard Malay", + Comment = null, }, new() { Id = "zsr", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Southern Rincon Zapotec", + Comment = null, }, new() { Id = "zsu", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Sukurum", + Comment = null, }, new() { Id = "zte", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Elotepec Zapotec", + Comment = null, }, new() { Id = "ztg", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Xanaguía Zapotec", + Comment = null, }, new() { Id = "ztl", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Lapaguía-Guivini Zapotec", + Comment = null, }, new() { Id = "ztm", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "San Agustín Mixtepec Zapotec", + Comment = null, }, new() { Id = "ztn", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Santa Catarina Albarradas Zapotec", + Comment = null, }, new() { Id = "ztp", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Loxicha Zapotec", + Comment = null, }, new() { Id = "ztq", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Quioquitani-Quierí Zapotec", + Comment = null, }, new() { Id = "zts", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Tilquiapan Zapotec", + Comment = null, }, new() { Id = "ztt", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Tejalapan Zapotec", + Comment = null, }, new() { Id = "ztu", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Güilá Zapotec", + Comment = null, }, new() { Id = "ztx", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Zaachila Zapotec", + Comment = null, }, new() { Id = "zty", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Yatee Zapotec", + Comment = null, }, new() { Id = "zuh", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Tokano", + Comment = null, }, new() { @@ -56418,96 +87050,139 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Zulu", + Comment = null, }, new() { Id = "zum", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Kumzari", + Comment = null, }, new() { Id = "zun", Part2B = "zun", Part2T = "zun", + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Zuni", + Comment = null, }, new() { Id = "zuy", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Zumaya", + Comment = null, }, new() { Id = "zwa", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Zay", + Comment = null, }, new() { Id = "zxx", Part2B = "zxx", Part2T = "zxx", + Part1 = null, Scope = "S", LanguageType = "S", RefName = "No linguistic content", + Comment = null, }, new() { Id = "zyb", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Yongbei Zhuang", + Comment = null, }, new() { Id = "zyg", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Yang Zhuang", + Comment = null, }, new() { Id = "zyj", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Youjiang Zhuang", + Comment = null, }, new() { Id = "zyn", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Yongnan Zhuang", + Comment = null, }, new() { Id = "zyp", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Zyphe Chin", + Comment = null, }, new() { Id = "zza", Part2B = "zza", Part2T = "zza", + Part1 = null, Scope = "M", LanguageType = "L", RefName = "Zaza", + Comment = null, }, new() { Id = "zzj", + Part2B = null, + Part2T = null, + Part1 = null, Scope = "I", LanguageType = "L", RefName = "Zuojiang Zhuang", + Comment = null, }, ], }; diff --git a/LanguageTags/JsonOptions.cs b/LanguageTags/JsonOptions.cs deleted file mode 100644 index 1e4607b..0000000 --- a/LanguageTags/JsonOptions.cs +++ /dev/null @@ -1,24 +0,0 @@ -using System.Text.Json; -using System.Text.Json.Serialization; - -namespace ptr727.LanguageTags; - -internal static class JsonOptions -{ - public static readonly JsonSerializerOptions JsonReadOptions = new() - { - AllowTrailingCommas = true, - IncludeFields = true, - NumberHandling = JsonNumberHandling.AllowReadingFromString, - PreferredObjectCreationHandling = JsonObjectCreationHandling.Populate, - ReadCommentHandling = JsonCommentHandling.Skip, - }; - - public static readonly JsonSerializerOptions JsonWriteOptions = new() - { - DefaultIgnoreCondition = JsonIgnoreCondition.WhenWritingDefault, - IncludeFields = true, - WriteIndented = true, - NewLine = "\r\n", - }; -} diff --git a/LanguageTags/LanguageLookup.cs b/LanguageTags/LanguageLookup.cs index 759a0c0..d04f4d2 100644 --- a/LanguageTags/LanguageLookup.cs +++ b/LanguageTags/LanguageLookup.cs @@ -5,16 +5,22 @@ namespace ptr727.LanguageTags; +/// +/// Provides language code lookup and conversion functionality between IETF and ISO standards. +/// public class LanguageLookup { - // Undetermined + /// + /// The language code for undetermined languages ("und"). + /// public const string Undetermined = "und"; private readonly Iso6392Data _iso6392 = Iso6392Data.Create(); private readonly Iso6393Data _iso6393 = Iso6393Data.Create(); private readonly Rfc5646Data _rfc5646 = Rfc5646Data.Create(); + private readonly List<(string ietf, string iso)> _overrides = []; - private static CultureInfo CreateCultureInfo(string languageTag) + private static CultureInfo? CreateCultureInfo(string languageTag) { // Cultures are created on the fly in .NET, we can't rely on an exception // RFC 5646 defines Zzzz as "Code for uncoded script" @@ -42,8 +48,16 @@ private static CultureInfo CreateCultureInfo(string languageTag) return null; } - public List<(string ietf, string iso)> Overrides { get; } = []; + /// + /// Gets the list of manual override mappings between IETF and ISO language codes. + /// + public IList<(string ietf, string iso)> Overrides => _overrides; + /// + /// Converts an ISO language code to its IETF BCP 47 equivalent. + /// + /// The ISO language code to convert. + /// The IETF BCP 47 language tag, or "und" if the conversion fails. public string GetIetfFromIso(string languageTag) { // Undetermined @@ -53,7 +67,7 @@ public string GetIetfFromIso(string languageTag) } // Manual overrides - (string ietf, string iso) match = Overrides.FirstOrDefault(item => + (string ietf, string iso) match = _overrides.FirstOrDefault(item => item.iso.Equals(languageTag, StringComparison.OrdinalIgnoreCase) ); if (match != default) @@ -62,14 +76,14 @@ public string GetIetfFromIso(string languageTag) } // Find a matching subtag record - Rfc5646Data.Record subtag = _rfc5646.Find(languageTag, false); + Rfc5646Record? subtag = _rfc5646.Find(languageTag, false); if (subtag != null) { - return subtag.TagAny; + return subtag.TagValue; } // Find a matching ISO 639-3 record - Iso6393Data.Record iso6393 = _iso6393.Find(languageTag, false); + Iso6393Record? iso6393 = _iso6393.Find(languageTag, false); if (iso6393 != null) { // Find a matching subtag record from the ISO 639-3 or ISO 639-1 tag @@ -77,12 +91,12 @@ public string GetIetfFromIso(string languageTag) subtag ??= _rfc5646.Find(iso6393.Part1, false); if (subtag != null) { - return subtag.TagAny; + return subtag.TagValue; } } // Find a matching ISO 639-2 record - Iso6392Data.Record iso6392 = _iso6392.Find(languageTag, false); + Iso6392Record? iso6392 = _iso6392.Find(languageTag, false); if (iso6392 != null) { // Find a matching RFC 5646 record from the ISO 639-2 or ISO 639-1 tag @@ -90,15 +104,20 @@ public string GetIetfFromIso(string languageTag) subtag ??= _rfc5646.Find(iso6392.Part1, false); if (subtag != null) { - return subtag.TagAny; + return subtag.TagValue; } } // Try CultureInfo - CultureInfo cultureInfo = CreateCultureInfo(languageTag); + CultureInfo? cultureInfo = CreateCultureInfo(languageTag); return cultureInfo != null ? cultureInfo.IetfLanguageTag : Undetermined; } + /// + /// Converts an IETF BCP 47 language tag to its ISO equivalent. + /// + /// The IETF BCP 47 language tag to convert. + /// The ISO language code, or "und" if the conversion fails. public string GetIsoFromIetf(string languageTag) { // Undetermined @@ -108,7 +127,7 @@ public string GetIsoFromIetf(string languageTag) } // Manual overrides - (string ietf, string iso) match = Overrides.FirstOrDefault(item => + (string ietf, string iso) match = _overrides.FirstOrDefault(item => item.ietf.Equals(languageTag, StringComparison.OrdinalIgnoreCase) ); if (match != default) @@ -119,12 +138,12 @@ public string GetIsoFromIetf(string languageTag) // TODO: Conditional parse and normalize before processing // Find a matching subtag record - Rfc5646Data.Record subtag = _rfc5646.Find(languageTag, false); + Rfc5646Record? subtag = _rfc5646.Find(languageTag, false); if (subtag != null) { // Use expanded form if Redundant, or just use TagAny // E.g. cmn-Hant -> zh-cmn-Hant - languageTag = subtag.TagAny; + languageTag = subtag.TagValue; } // TODO: Convert to use Parse() @@ -136,23 +155,23 @@ public string GetIsoFromIetf(string languageTag) languageTag = parts[0]; // Get ISO 639-3 record - Iso6393Data.Record iso6393 = _iso6393.Find(languageTag, false); + Iso6393Record? iso6393 = _iso6393.Find(languageTag, false); if (iso6393 != null) { // Return the Part 2B code - return iso6393.Part2B; + return iso6393.Part2B!; } // Get ISO 639-2 record - Iso6392Data.Record iso6392 = _iso6392.Find(languageTag, false); + Iso6392Record? iso6392 = _iso6392.Find(languageTag, false); if (iso6392 != null) { // Return the Part 2B code - return iso6392.Part2B; + return iso6392.Part2B!; } // Try cultureInfo - CultureInfo cultureInfo = CreateCultureInfo(languageTag); + CultureInfo? cultureInfo = CreateCultureInfo(languageTag); if (cultureInfo == null) { return Undetermined; @@ -163,13 +182,23 @@ public string GetIsoFromIetf(string languageTag) if (iso6393 != null) { // Return the Part 2B code - return iso6393.Part2B; + return iso6393.Part2B!; } return Undetermined; } + /// + /// Determines whether a language tag matches or starts with the specified prefix. + /// + /// The prefix to match against. + /// The language tag to test. + /// true if the language tag matches or starts with the prefix; otherwise, false. + /// Thrown when or is null. public bool IsMatch(string prefix, string languageTag) { + ArgumentNullException.ThrowIfNull(prefix); + ArgumentNullException.ThrowIfNull(languageTag); + // TODO: Conditional parse and normalize before processing // https://r12a.github.io/app-subtags/ @@ -200,14 +229,16 @@ public bool IsMatch(string prefix, string languageTag) // E.g. cmn-Hant should be expanded to zh-cmn-Hant else zh will not match // Find a matching subtag record - Rfc5646Data.Record subtag = _rfc5646.Find(languageTag, false); + Rfc5646Record? subtag = _rfc5646.Find(languageTag, false); if (subtag != null) { // If the subtag is different then rematch - if (!string.Equals(languageTag, subtag.TagAny, StringComparison.OrdinalIgnoreCase)) + if ( + !string.Equals(languageTag, subtag.TagValue, StringComparison.OrdinalIgnoreCase) + ) { - // rematch - languageTag = subtag.TagAny; + // Rematch + languageTag = subtag.TagValue; continue; } } @@ -216,4 +247,21 @@ public bool IsMatch(string prefix, string languageTag) return false; } } + + /// + /// Determines if two language tags are equivalent (case-insensitive). + /// + public static bool AreEquivalent(string tag1, string tag2) => + string.Equals(tag1, tag2, StringComparison.OrdinalIgnoreCase); + + /// + /// Normalizes and compares two language tags for equivalence. + /// + public static bool AreEquivalentNormalized(string tag1, string tag2) + { + LanguageTag? parsed1 = LanguageTag.Parse(tag1)?.Normalize(); + LanguageTag? parsed2 = LanguageTag.Parse(tag2)?.Normalize(); + return parsed1?.ToString().Equals(parsed2?.ToString(), StringComparison.OrdinalIgnoreCase) + ?? false; + } } diff --git a/LanguageTags/LanguageSchema.cs b/LanguageTags/LanguageSchema.cs new file mode 100644 index 0000000..d4da707 --- /dev/null +++ b/LanguageTags/LanguageSchema.cs @@ -0,0 +1,57 @@ +using System; +using System.Collections.Generic; +using System.IO; +using System.Linq; +using System.Text.Json; +using System.Text.Json.Serialization; + +namespace ptr727.LanguageTags; + +internal static class LanguageSchema +{ + internal static void WriteFile(string fileName, string value) + { + // Always write as CRLF with newline at the end + if ( + value.Contains('\n', StringComparison.Ordinal) + && !value.Contains('\r', StringComparison.Ordinal) + ) + { + value = value.Replace("\n", "\r\n", StringComparison.Ordinal); + } + value = value.TrimEnd() + "\r\n"; + File.WriteAllText(fileName, value); + } + + internal static string GetCodeGenString(string? text) => + string.IsNullOrEmpty(text) ? "null" : $"\"{text}\""; + + internal static string GetCodeGenString(DateOnly? date) => + date == null + ? "null" + : $"new DateOnly({date.Value.Year}, {date.Value.Month}, {date.Value.Day})"; + + internal static string GetCodeGenString(Rfc5646Record.RecordType type) => + $"Rfc5646Record.RecordType.{type}"; + + internal static string GetCodeGenString(Rfc5646Record.RecordScope scope) => + $"Rfc5646Record.RecordScope.{scope}"; + + internal static string GetCodeGenString(IEnumerable list) => + $"[{string.Join(", ", list.Select(item => $"@\"{item.Replace("\"", "\"\"", StringComparison.Ordinal)}\""))}]"; +} + +[JsonSourceGenerationOptions( + AllowTrailingCommas = true, + DefaultIgnoreCondition = JsonIgnoreCondition.WhenWritingNull, + IncludeFields = true, + NumberHandling = JsonNumberHandling.AllowReadingFromString, + PreferredObjectCreationHandling = JsonObjectCreationHandling.Populate, + ReadCommentHandling = JsonCommentHandling.Skip, + WriteIndented = true, + NewLine = "\r\n" +)] +[JsonSerializable(typeof(Iso6392Data))] +[JsonSerializable(typeof(Iso6393Data))] +[JsonSerializable(typeof(Rfc5646Data))] +internal partial class LanguageJsonContext : JsonSerializerContext; diff --git a/LanguageTags/LanguageTag.cs b/LanguageTags/LanguageTag.cs index ec03e99..a310cbe 100644 --- a/LanguageTags/LanguageTag.cs +++ b/LanguageTags/LanguageTag.cs @@ -1,72 +1,143 @@ +using System; using System.Collections.Generic; +using System.Collections.Immutable; +using System.Diagnostics.CodeAnalysis; using System.Globalization; using System.Linq; using System.Text; namespace ptr727.LanguageTags; -public class LanguageTag +/// +/// Represents a language tag conforming to RFC 5646 / BCP 47. +/// +public class LanguageTag : IEquatable { - public LanguageTag() + internal LanguageTag() { - VariantList = []; - ExtensionList = []; + Language = string.Empty; + ExtendedLanguage = string.Empty; + Script = string.Empty; + Region = string.Empty; + _variants = []; + _extensions = []; PrivateUse = new PrivateUseTag(); } - public LanguageTag(LanguageTag languageTag) + internal LanguageTag(LanguageTag languageTag) { + ArgumentNullException.ThrowIfNull(languageTag); Language = languageTag.Language; ExtendedLanguage = languageTag.ExtendedLanguage; Script = languageTag.Script; Region = languageTag.Region; - VariantList = [.. languageTag.VariantList]; - ExtensionList = []; - languageTag.ExtensionList.ForEach(extension => - { - ExtensionList.Add(new ExtensionTag(extension)); - }); + _variants = [.. languageTag._variants]; + _extensions = [.. languageTag._extensions]; PrivateUse = new PrivateUseTag(languageTag.PrivateUse); } - public class ExtensionTag - { - public ExtensionTag() => TagList = []; + /// + /// Gets or sets the primary language subtag (ISO 639 language code). + /// + public string Language { get; internal set; } - public ExtensionTag(ExtensionTag extensionTag) - { - Prefix = extensionTag.Prefix; - TagList = [.. extensionTag.TagList]; - } + /// + /// Gets or sets the extended language subtag. + /// + public string ExtendedLanguage { get; internal set; } - public char Prefix { get; set; } - public List TagList { get; init; } + /// + /// Gets or sets the script subtag (ISO 15924 script code). + /// + public string Script { get; internal set; } - public override string ToString() => $"{Prefix}-{string.Join('-', TagList)}"; - } + /// + /// Gets or sets the region subtag (ISO 3166-1 country code or UN M.49 region code). + /// + public string Region { get; internal set; } - public class PrivateUseTag - { - public PrivateUseTag() => TagList = []; + /// + /// Gets the list of variant subtags. + /// + public ImmutableArray Variants => [.. _variants]; + internal List _variants { get; init; } - public PrivateUseTag(PrivateUseTag privateUseTag) => TagList = [.. privateUseTag.TagList]; + /// + /// Gets the list of extension subtags. + /// + public ImmutableArray Extensions => [.. _extensions]; + internal List _extensions { get; init; } - public const char Prefix = 'x'; - public List TagList { get; } + /// + /// Gets the private use subtag. + /// + public PrivateUseTag PrivateUse { get; init; } - public override string ToString() => $"{Prefix}-{string.Join('-', TagList)}"; + /// + /// Parses a language tag string into a LanguageTag object. + /// + /// The language tag string to parse (e.g., "en-US", "zh-Hans-CN"). + /// A parsed and normalized LanguageTag object, or null if parsing fails. + public static LanguageTag? Parse(string tag) => new LanguageTagParser().Parse(tag); + + /// + /// Parses a language tag string, returning a default tag if parsing fails. + /// + /// The language tag string to parse. + /// The default tag to return if parsing fails (defaults to "und"). + /// The parsed tag or the default tag. + public static LanguageTag ParseOrDefault(string tag, LanguageTag? defaultTag = null) + { + LanguageTag? parsed = Parse(tag); + return parsed ?? defaultTag ?? Parse(LanguageLookup.Undetermined)!; } - public string Language { get; set; } - public string ExtendedLanguage { get; set; } - public string Script { get; set; } - public string Region { get; set; } - public List VariantList { get; } - public List ExtensionList { get; } - public PrivateUseTag PrivateUse { get; } + /// + /// Parses and normalizes a language tag string. + /// + /// The language tag string. + /// A normalized language tag or null if parsing/normalization fails. + public static LanguageTag? ParseAndNormalize(string tag) => Parse(tag)?.Normalize(); + + /// + /// Tries to parse a language tag string into a LanguageTag object. + /// + /// The language tag string to parse (e.g., "en-US", "zh-Hans-CN"). + /// When this method returns, contains the parsed LanguageTag if successful, or null if parsing fails. + /// true if the tag was successfully parsed; otherwise, false. + public static bool TryParse(string tag, [NotNullWhen(true)] out LanguageTag? result) + { + result = Parse(tag); + return result != null; + } + /// + /// Creates a new LanguageTagBuilder for fluent construction of language tags. + /// + /// A new LanguageTagBuilder instance. + public static LanguageTagBuilder CreateBuilder() => new(); + + /// + /// Validates this language tag. + /// + /// true if the tag is valid; otherwise, false. public bool Validate() => LanguageTagParser.Validate(this); + /// + /// Gets whether this language tag is valid according to RFC 5646 rules. + /// + public bool IsValid => Validate(); + + /// + /// Normalizes this language tag according to RFC 5646 rules. + /// + /// A normalized copy of this language tag. + public LanguageTag? Normalize() => new LanguageTagParser().Normalize(this); + + /// + /// Converts this language tag to its string representation. + /// + /// A string representation of the language tag (e.g., "en-US", "zh-Hans-CN"). public override string ToString() { StringBuilder stringBuilder = new(); @@ -86,21 +157,21 @@ public override string ToString() { _ = stringBuilder.Append('-').Append(Region); } - if (VariantList.Count > 0) + if (_variants.Count > 0) { _ = stringBuilder.Append( CultureInfo.InvariantCulture, - $"-{string.Join('-', VariantList)}" + $"-{string.Join('-', _variants)}" ); } - if (ExtensionList.Count > 0) + if (_extensions.Count > 0) { _ = stringBuilder.Append( CultureInfo.InvariantCulture, - $"-{string.Join('-', ExtensionList.Select(item => item.ToString()))}" + $"-{string.Join('-', _extensions.Select(item => item.ToString()))}" ); } - if (PrivateUse.TagList.Count > 0) + if (PrivateUse._tags.Count > 0) { if (stringBuilder.Length > 0) { @@ -110,4 +181,143 @@ public override string ToString() } return stringBuilder.ToString(); } + + /// + /// Determines whether this instance is equal to another . + /// + /// The to compare with. + /// true if the tags are equal (case-insensitive); otherwise, false. + public bool Equals(LanguageTag? other) => + other is not null + && ( + ReferenceEquals(this, other) + || string.Equals(ToString(), other.ToString(), StringComparison.OrdinalIgnoreCase) + ); + + /// + /// Determines whether this instance is equal to another object. + /// + /// The object to compare with. + /// true if the objects are equal; otherwise, false. + public override bool Equals(object? obj) => Equals(obj as LanguageTag); + + /// + /// Returns the hash code for this language tag. + /// + /// A hash code for the current language tag. + public override int GetHashCode() => StringComparer.OrdinalIgnoreCase.GetHashCode(ToString()); + + /// + /// Determines whether two language tags are equal. + /// + /// The first language tag to compare. + /// The second language tag to compare. + /// true if the tags are equal; otherwise, false. + public static bool operator ==(LanguageTag? left, LanguageTag? right) => + left?.Equals(right) ?? (right is null); + + /// + /// Determines whether two language tags are not equal. + /// + /// The first language tag to compare. + /// The second language tag to compare. + /// true if the tags are not equal; otherwise, false. + public static bool operator !=(LanguageTag? left, LanguageTag? right) => !(left == right); + + /// + /// Creates a simple language tag with just a language code. + /// + /// The ISO 639 language code. + /// A new with the specified language. + public static LanguageTag FromLanguage(string language) => + CreateBuilder().Language(language).Build(); + + /// + /// Creates a language tag with language and region. + /// + /// The ISO 639 language code. + /// The ISO 3166-1 country code or UN M.49 region code. + /// A new with the specified language and region. + public static LanguageTag FromLanguageRegion(string language, string region) => + CreateBuilder().Language(language).Region(region).Build(); + + /// + /// Creates a language tag with language, script, and region. + /// + /// The ISO 639 language code. + /// The ISO 15924 script code. + /// The ISO 3166-1 country code or UN M.49 region code. + /// A new with the specified language, script, and region. + public static LanguageTag FromLanguageScriptRegion( + string language, + string script, + string region + ) => CreateBuilder().Language(language).Script(script).Region(region).Build(); +} + +/// +/// Represents an extension subtag in a language tag. +/// +public class ExtensionTag +{ + internal ExtensionTag() + { + Prefix = '\0'; + _tags = []; + } + + internal ExtensionTag(ExtensionTag extensionTag) + { + ArgumentNullException.ThrowIfNull(extensionTag); + Prefix = extensionTag.Prefix; + _tags = [.. extensionTag._tags]; + } + + /// + /// Gets or sets the single-character prefix for the extension (e.g., 'u' for Unicode extensions). + /// + public char Prefix { get; internal set; } + + /// + /// Gets the list of extension subtag values. + /// + public ImmutableArray Tags => [.. _tags]; + internal List _tags { get; init; } + + /// + /// Converts this extension tag to its string representation. + /// + /// A string representation of the extension tag (e.g., "u-ca-buddhist"). + public override string ToString() => $"{Prefix}-{string.Join('-', _tags)}"; +} + +/// +/// Represents a private use subtag in a language tag. +/// +public class PrivateUseTag +{ + internal PrivateUseTag() => _tags = []; + + internal PrivateUseTag(PrivateUseTag privateUseTag) + { + ArgumentNullException.ThrowIfNull(privateUseTag); + _tags = [.. privateUseTag._tags]; + } + + /// + /// The prefix character for private use subtags ('x'). + /// + public const char Prefix = 'x'; + + /// + /// Gets the list of private use subtag values. + /// + public ImmutableArray Tags => [.. _tags]; + internal List _tags { get; init; } + + /// + /// Converts this private use tag to its string representation. + /// + /// A string representation of the private use tag (e.g., "x-private"). + public override string ToString() => $"{Prefix}-{string.Join('-', _tags)}"; } diff --git a/LanguageTags/LanguageTagBuilder.cs b/LanguageTags/LanguageTagBuilder.cs index 6cc188d..8296725 100644 --- a/LanguageTags/LanguageTagBuilder.cs +++ b/LanguageTags/LanguageTagBuilder.cs @@ -1,67 +1,130 @@ +using System; using System.Collections.Generic; namespace ptr727.LanguageTags; +/// +/// Provides a fluent API for building RFC 5646 / BCP 47 language tags. +/// public class LanguageTagBuilder { private readonly LanguageTag _languageTag = new(); + /// + /// Sets the primary language subtag. + /// + /// The language code (e.g., "en", "zh"). + /// The builder instance for method chaining. public LanguageTagBuilder Language(string value) { _languageTag.Language = value; return this; } + /// + /// Sets the extended language subtag. + /// + /// The extended language code (e.g., "yue" for zh-yue). + /// The builder instance for method chaining. public LanguageTagBuilder ExtendedLanguage(string value) { _languageTag.ExtendedLanguage = value; return this; } + /// + /// Sets the script subtag. + /// + /// The ISO 15924 script code (e.g., "Hans", "Latn"). + /// The builder instance for method chaining. public LanguageTagBuilder Script(string value) { _languageTag.Script = value; return this; } + /// + /// Sets the region subtag. + /// + /// The ISO 3166-1 country code or UN M.49 region code (e.g., "US", "CN"). + /// The builder instance for method chaining. public LanguageTagBuilder Region(string value) { _languageTag.Region = value; return this; } + /// + /// Adds a variant subtag. + /// + /// The variant code to add. + /// The builder instance for method chaining. public LanguageTagBuilder VariantAdd(string value) { - _languageTag.VariantList.Add(value); + _languageTag._variants.Add(value); return this; } - public LanguageTagBuilder VariantAddRange(List values) + /// + /// Adds multiple variant subtags. + /// + /// The variant codes to add. + /// The builder instance for method chaining. + /// Thrown when is null. + public LanguageTagBuilder VariantAddRange(IEnumerable values) { - _languageTag.VariantList.AddRange(values); + ArgumentNullException.ThrowIfNull(values); + _languageTag._variants.AddRange(values); return this; } - // TODO: Create ExtensionsBuilder - public LanguageTagBuilder ExtensionAdd(char prefix, List values) + /// + /// Adds an extension subtag with the specified prefix and values. + /// + /// The single-character extension prefix (e.g., 'u' for Unicode extensions). + /// The extension values. + /// The builder instance for method chaining. + /// Thrown when is null. + public LanguageTagBuilder ExtensionAdd(char prefix, IEnumerable values) { - _languageTag.ExtensionList.Add(new() { Prefix = prefix, TagList = values }); + ArgumentNullException.ThrowIfNull(values); + _languageTag._extensions.Add(new() { Prefix = prefix, _tags = [.. values] }); return this; } + /// + /// Adds a private use subtag. + /// + /// The private use value to add. + /// The builder instance for method chaining. public LanguageTagBuilder PrivateUseAdd(string value) { - _languageTag.PrivateUse.TagList.Add(value); + _languageTag.PrivateUse._tags.Add(value); return this; } - public LanguageTagBuilder PrivateUseAddRange(List values) + /// + /// Adds multiple private use subtags. + /// + /// The private use values to add. + /// The builder instance for method chaining. + /// Thrown when is null. + public LanguageTagBuilder PrivateUseAddRange(IEnumerable values) { - _languageTag.PrivateUse.TagList.AddRange(values); + ArgumentNullException.ThrowIfNull(values); + _languageTag.PrivateUse._tags.AddRange(values); return this; } + /// + /// Builds and returns the constructed language tag. + /// + /// The constructed . public LanguageTag Build() => _languageTag; - public LanguageTag Normalize() => new LanguageTagParser().Normalize(_languageTag); + /// + /// Builds and normalizes the constructed language tag according to RFC 5646 rules. + /// + /// A normalized or null if normalization fails. + public LanguageTag? Normalize() => new LanguageTagParser().Normalize(_languageTag); } diff --git a/LanguageTags/LanguageTagParser.cs b/LanguageTags/LanguageTagParser.cs index 5c6ed85..4bef535 100644 --- a/LanguageTags/LanguageTagParser.cs +++ b/LanguageTags/LanguageTagParser.cs @@ -20,11 +20,11 @@ namespace ptr727.LanguageTags; // TODO: Implement subtag content validation by comparing values with the registry data -public class LanguageTagParser +internal class LanguageTagParser { private readonly Rfc5646Data _rfc5646 = Rfc5646Data.Create(); private readonly List _tagList = []; - private LanguageTag _languageTag; + private LanguageTag _languageTag = new(); private string ParseGrandfathered(string languageTag) { @@ -33,39 +33,41 @@ private string ParseGrandfathered(string languageTag) // Search tag registry // Type = Grandfathered, Tag = i-navajo, PreferredValue = nv - List recordList = + List recordList = [ .. _rfc5646.RecordList.Where(record => - record.Type == Rfc5646Data.RecordType.Grandfathered + record.Type == Rfc5646Record.RecordType.Grandfathered && !string.IsNullOrEmpty(record.Tag) && record.Tag.Equals(languageTag, StringComparison.OrdinalIgnoreCase) ), ]; + Debug.Assert(recordList.Count <= 1); if (recordList.Count == 1) { - return recordList[0].PreferredValue; + Debug.Assert(!string.IsNullOrEmpty(recordList[0].PreferredValue)); + return recordList[0].PreferredValue!; } - Debug.Assert(recordList.Count is 0 or 1); // No match return languageTag; } +#pragma warning disable CA1308 private static void SetCase(LanguageTag languageTag) { - // Language + // Language lowercase if (!string.IsNullOrEmpty(languageTag.Language)) { languageTag.Language = languageTag.Language.ToLowerInvariant(); } - // Extended language + // Extended language lowercase if (!string.IsNullOrEmpty(languageTag.ExtendedLanguage)) { languageTag.ExtendedLanguage = languageTag.ExtendedLanguage.ToLowerInvariant(); } - // Script + // Script title case if (!string.IsNullOrEmpty(languageTag.Script)) { languageTag.Script = @@ -74,48 +76,47 @@ private static void SetCase(LanguageTag languageTag) ); } - // Region + // Region uppercase if (!string.IsNullOrEmpty(languageTag.Region)) { languageTag.Region = languageTag.Region.ToUpperInvariant(); } - // Variants - for (int i = 0; i < languageTag.VariantList.Count; i++) + // Variants lowercase + for (int i = 0; i < languageTag._variants.Count; i++) { - languageTag.VariantList[i] = languageTag.VariantList[i].ToLowerInvariant(); + languageTag._variants[i] = languageTag._variants[i].ToLowerInvariant(); } - // Extensions - foreach (LanguageTag.ExtensionTag extension in languageTag.ExtensionList) + // Extensions lowercase + foreach (ExtensionTag extension in languageTag._extensions) { extension.Prefix = char.ToLowerInvariant(extension.Prefix); - for (int i = 0; i < extension.TagList.Count; i++) + for (int i = 0; i < extension._tags.Count; i++) { - extension.TagList[i] = extension.TagList[i].ToLowerInvariant(); + extension._tags[i] = extension._tags[i].ToLowerInvariant(); } } - // Private use - for (int i = 0; i < languageTag.PrivateUse.TagList.Count; i++) + // Private use lowercase + for (int i = 0; i < languageTag.PrivateUse._tags.Count; i++) { - languageTag.PrivateUse.TagList[i] = languageTag - .PrivateUse.TagList[i] - .ToLowerInvariant(); + languageTag.PrivateUse._tags[i] = languageTag.PrivateUse._tags[i].ToLowerInvariant(); } } +#pragma warning restore CA1308 private static void Sort(LanguageTag languageTag) { // Sort variants - languageTag.VariantList.Sort(); + languageTag._variants.Sort(); // Sort extensions by prefix - languageTag.ExtensionList.Sort((x, y) => x.Prefix.CompareTo(y.Prefix)); + languageTag._extensions.Sort((x, y) => x.Prefix.CompareTo(y.Prefix)); // Sort extensions and private use tags - languageTag.ExtensionList.ForEach(extension => extension.TagList.Sort()); - languageTag.PrivateUse.TagList.Sort(); + languageTag._extensions.ForEach(extension => extension._tags.Sort()); + languageTag.PrivateUse._tags.Sort(); } private static bool ValidateLanguage(string tag) => @@ -280,13 +281,13 @@ private bool ParseVariant() } // Variant may not repeat - if (_languageTag.VariantList.Contains(_tagList[0], StringComparer.OrdinalIgnoreCase)) + if (_languageTag._variants.Contains(_tagList[0], StringComparer.OrdinalIgnoreCase)) { return false; } // Add variant tag - _languageTag.VariantList.Add(_tagList[0]); + _languageTag._variants.Add(_tagList[0]); _tagList.RemoveAt(0); } @@ -296,9 +297,7 @@ private bool ParseVariant() private static bool ValidateExtensionPrefix(string tag) => // 1 char not x - !string.IsNullOrEmpty(tag) - && tag.Length == 1 - && tag[0] != LanguageTag.PrivateUseTag.Prefix; + !string.IsNullOrEmpty(tag) && tag.Length == 1 && tag[0] != PrivateUseTag.Prefix; private static bool ValidateExtension(string tag) => // 2 - 8 chars @@ -327,12 +326,12 @@ private bool ParseExtension() } // Prefix may not repeat - if (_languageTag.ExtensionList.Any(item => item.Prefix == _tagList[0][0])) + if (_languageTag._extensions.Any(item => item.Prefix == _tagList[0][0])) { return false; } - LanguageTag.ExtensionTag extensionTag = new() { Prefix = _tagList[0][0] }; + ExtensionTag extensionTag = new() { Prefix = _tagList[0][0] }; _tagList.RemoveAt(0); // 1 or more tags remaining @@ -346,24 +345,24 @@ private bool ParseExtension() while (_tagList.Count > 0 && ValidateExtension(_tagList[0])) { // Tag may not repeat - if (extensionTag.TagList.Contains(_tagList[0], StringComparer.OrdinalIgnoreCase)) + if (extensionTag._tags.Contains(_tagList[0], StringComparer.OrdinalIgnoreCase)) { return false; } // Add extension tag - extensionTag.TagList.Add(_tagList[0]); + extensionTag._tags.Add(_tagList[0]); _tagList.RemoveAt(0); } // Must have some matches - if (extensionTag.TagList.Count == 0) + if (extensionTag._tags.Count == 0) { return false; } // Add extension tag - _languageTag.ExtensionList.Add(extensionTag); + _languageTag._extensions.Add(extensionTag); } // Done @@ -372,9 +371,7 @@ private bool ParseExtension() private static bool ValidatePrivateUsePrefix(string tag) => // x - !string.IsNullOrEmpty(tag) - && tag.Length == 1 - && tag[0] == LanguageTag.PrivateUseTag.Prefix; + !string.IsNullOrEmpty(tag) && tag.Length == 1 && tag[0] == PrivateUseTag.Prefix; private static bool ValidatePrivateUse(string tag) => // 1 to 8 chars @@ -397,7 +394,7 @@ private bool ParsePrivateUse() } // Prefix may not repeat - if (_languageTag.PrivateUse.TagList.Count > 0) + if (_languageTag.PrivateUse._tags.Count > 0) { return false; } @@ -423,7 +420,7 @@ private bool ParsePrivateUse() // Tag may not repeat if ( - _languageTag.PrivateUse.TagList.Contains( + _languageTag.PrivateUse._tags.Contains( _tagList[0], StringComparer.OrdinalIgnoreCase ) @@ -433,12 +430,12 @@ private bool ParsePrivateUse() } // Add private use tag - _languageTag.PrivateUse.TagList.Add(_tagList[0]); + _languageTag.PrivateUse._tags.Add(_tagList[0]); _tagList.RemoveAt(0); } // Must have some matches - if (_languageTag.PrivateUse.TagList.Count == 0) + if (_languageTag.PrivateUse._tags.Count == 0) { return false; } @@ -447,7 +444,7 @@ private bool ParsePrivateUse() return true; } - public LanguageTag Parse(string languageTag) + internal LanguageTag? Parse(string languageTag) { // Parse the tag per RFC 5646 2.1 // https://www.rfc-editor.org/rfc/rfc5646#section-2.1 @@ -582,13 +579,13 @@ public LanguageTag Parse(string languageTag) return null; } - public LanguageTag Normalize(string languageTag) + internal LanguageTag? Normalize(string languageTag) { - LanguageTag parsedTag = Parse(languageTag); + LanguageTag? parsedTag = Parse(languageTag); return parsedTag == null ? null : Normalize(parsedTag); } - public LanguageTag Normalize(LanguageTag languageTag) + internal LanguageTag? Normalize(LanguageTag languageTag) { // Canonicalization of Language Tags // https://www.rfc-editor.org/rfc/rfc5646#section-4.5 @@ -607,10 +604,10 @@ public LanguageTag Normalize(LanguageTag languageTag) if (!string.IsNullOrEmpty(normalizeTag.Language)) { // Type = Language, SubTag = iw, PreferredValue = he - List recordList = + List recordList = [ .. _rfc5646.RecordList.Where(record => - record.Type == Rfc5646Data.RecordType.Language + record.Type == Rfc5646Record.RecordType.Language && !string.IsNullOrEmpty(record.PreferredValue) && normalizeTag.Language.Equals( record.SubTag, @@ -618,10 +615,11 @@ .. _rfc5646.RecordList.Where(record => ) ), ]; - Debug.Assert(recordList.Count is 0 or 1); + Debug.Assert(recordList.Count <= 1); if (recordList.Count == 1) { - normalizeTag.Language = recordList[0].PreferredValue; + Debug.Assert(!string.IsNullOrEmpty(recordList[0].PreferredValue)); + normalizeTag.Language = recordList[0].PreferredValue!; } } @@ -634,10 +632,11 @@ .. _rfc5646.RecordList.Where(record => ) { // Type = ExtLanguage, Prefix = ar, SubTag = afb, PreferredValue = afb - List recordList = + List recordList = [ .. _rfc5646.RecordList.Where(record => - record.Type == Rfc5646Data.RecordType.ExtLanguage + record.Type == Rfc5646Record.RecordType.ExtLanguage + && !string.IsNullOrEmpty(record.PreferredValue) && string.Equals( record.SubTag, normalizeTag.ExtendedLanguage, @@ -648,11 +647,12 @@ .. _rfc5646.RecordList.Where(record => ) ), ]; - Debug.Assert(recordList.Count is 0 or 1); + Debug.Assert(recordList.Count <= 1); if (recordList.Count == 1) { - normalizeTag.Language = recordList[0].PreferredValue; - normalizeTag.ExtendedLanguage = null; + Debug.Assert(!string.IsNullOrEmpty(recordList[0].PreferredValue)); + normalizeTag.Language = recordList[0].PreferredValue!; + normalizeTag.ExtendedLanguage = string.Empty; } } @@ -665,27 +665,33 @@ .. _rfc5646.RecordList.Where(record => // de-CH-1901 -> ? // iu-Latn -> ? string tagString = normalizeTag.ToString(); - if (tagString.Contains('-')) + if (tagString.Contains('-', StringComparison.Ordinal)) { // Type = Redundant, Tag = zh-cmn-Hant, PreferredValue = cmn-Hant - List recordList = + List recordList = [ .. _rfc5646.RecordList.Where(record => - record.Type == Rfc5646Data.RecordType.Redundant + record.Type == Rfc5646Record.RecordType.Redundant && !string.IsNullOrEmpty(record.PreferredValue) + && !string.IsNullOrEmpty(record.Tag) && tagString.StartsWith(record.Tag, StringComparison.OrdinalIgnoreCase) ), ]; - Debug.Assert(recordList.Count is 0 or 1); + Debug.Assert(recordList.Count <= 1); if (recordList.Count == 1) { - // Replace the tag with the preferred value and re-parse the full tag + // Replace the tag with the preferred value + Debug.Assert(!string.IsNullOrEmpty(recordList[0].Tag)); + Debug.Assert(!string.IsNullOrEmpty(recordList[0].PreferredValue)); tagString = tagString.Replace( - recordList[0].Tag, + recordList[0].Tag!, recordList[0].PreferredValue, StringComparison.OrdinalIgnoreCase ); - LanguageTag preferredTag = Parse(tagString); + + // Reparse the new tag string + LanguageTag? preferredTag = Parse(tagString); + Debug.Assert(preferredTag != null); normalizeTag.Language = preferredTag.Language; normalizeTag.ExtendedLanguage = preferredTag.ExtendedLanguage; normalizeTag.Script = preferredTag.Script; @@ -702,10 +708,10 @@ .. _rfc5646.RecordList.Where(record => ) { // Type = Language, SubTag = en, SuppressScript = Latn - List recordList = + List recordList = [ .. _rfc5646.RecordList.Where(record => - record.Type == Rfc5646Data.RecordType.Language + record.Type == Rfc5646Record.RecordType.Language && !string.IsNullOrEmpty(record.SuppressScript) && normalizeTag.Language.Equals( record.SubTag, @@ -713,10 +719,10 @@ .. _rfc5646.RecordList.Where(record => ) ), ]; - Debug.Assert(recordList.Count is 0 or 1); + Debug.Assert(recordList.Count <= 1); if (recordList.Count == 1) { - normalizeTag.Script = null; + normalizeTag.Script = string.Empty; } } @@ -731,7 +737,7 @@ .. _rfc5646.RecordList.Where(record => return normalizeTag; } - public static bool Validate(LanguageTag languageTag) + internal static bool Validate(LanguageTag languageTag) { // Classes of Conformance // https://www.rfc-editor.org/rfc/rfc5646#section-2.2.9 @@ -761,26 +767,26 @@ public static bool Validate(LanguageTag languageTag) { return false; } - if (languageTag.VariantList.Any(tag => !ValidateVariant(tag))) + if (languageTag._variants.Any(tag => !ValidateVariant(tag))) { return false; } if ( - languageTag.ExtensionList.Any(extension => + languageTag._extensions.Any(extension => !ValidateExtensionPrefix(extension.Prefix.ToString()) - || extension.TagList.Any(tag => !ValidateExtension(tag)) + || extension._tags.Any(tag => !ValidateExtension(tag)) ) ) { return false; } - if (languageTag.PrivateUse.TagList.Any(tag => !ValidatePrivateUse(tag))) + if (languageTag.PrivateUse._tags.Any(tag => !ValidatePrivateUse(tag))) { return false; } // No duplicate variants - if (languageTag.VariantList.GroupBy(tag => tag).Any(group => group.Count() > 1)) + if (languageTag._variants.GroupBy(tag => tag).Any(group => group.Count() > 1)) { return false; } @@ -788,7 +794,7 @@ public static bool Validate(LanguageTag languageTag) // No duplicate extension prefixes if ( languageTag - .ExtensionList.GroupBy(extension => extension.Prefix) + ._extensions.GroupBy(extension => extension.Prefix) .Any(group => group.Count() > 1) ) { @@ -797,8 +803,8 @@ public static bool Validate(LanguageTag languageTag) // No duplicate extensions per prefix if ( - languageTag.ExtensionList.Any(extension => - extension.TagList.GroupBy(tag => tag).Any(group => group.Count() > 1) + languageTag._extensions.Any(extension => + extension._tags.GroupBy(tag => tag).Any(group => group.Count() > 1) ) ) { @@ -806,7 +812,7 @@ public static bool Validate(LanguageTag languageTag) } // No duplicate private use tags - if (languageTag.PrivateUse.TagList.GroupBy(tag => tag).Any(group => group.Count() > 1)) + if (languageTag.PrivateUse._tags.GroupBy(tag => tag).Any(group => group.Count() > 1)) { return false; } diff --git a/LanguageTags/LanguageTags.csproj b/LanguageTags/LanguageTags.csproj index 4688272..9641834 100644 --- a/LanguageTags/LanguageTags.csproj +++ b/LanguageTags/LanguageTags.csproj @@ -1,9 +1,11 @@ + latest-all LanguageTags 1.0.0.0 Pieter Viljoen Pieter Viljoen + true Pieter Viljoen C# .NET library for ISO 639-2, ISO 639-3, RFC 5646 / BCP 47 language tags true @@ -11,7 +13,10 @@ true true 1.0.0-pre + true en + enable + true ptr727.LanguageTags MIT https://github.com/ptr727/LanguageTags @@ -21,13 +26,30 @@ true ptr727.LanguageTags snupkg - net9.0 + net10.0 1.0.0.0 + + + + + + + + diff --git a/LanguageTags/Rfc5646Data.cs b/LanguageTags/Rfc5646Data.cs index 81a2303..d69139b 100644 --- a/LanguageTags/Rfc5646Data.cs +++ b/LanguageTags/Rfc5646Data.cs @@ -1,7 +1,6 @@ using System; using System.Collections.Generic; using System.Collections.Immutable; -using System.Diagnostics; using System.Globalization; using System.IO; using System.Linq; @@ -11,12 +10,21 @@ namespace ptr727.LanguageTags; +/// +/// Provides access to RFC 5646 / BCP 47 language subtag registry data. +/// public partial class Rfc5646Data { - public const string DataUri = + internal const string DataUri = "https://www.iana.org/assignments/language-subtag-registry/language-subtag-registry"; - public const string DataFileName = "rfc5646"; - + internal const string DataFileName = "rfc5646"; + + /// + /// Loads RFC 5646 data from a file. + /// + /// The path to the data file. + /// The loaded . + /// Thrown when the file contains invalid data. public static Rfc5646Data LoadData(string fileName) { // File Format @@ -25,7 +33,7 @@ public static Rfc5646Data LoadData(string fileName) // https://www.w3.org/International/articles/language-tags // https://datatracker.ietf.org/doc/html/draft-phillips-record-jar-02 - List recordList = []; + List recordList = []; Parser parser = new(); using StreamReader lineReader = new(File.OpenRead(fileName)); @@ -43,20 +51,27 @@ public static Rfc5646Data LoadData(string fileName) return new Rfc5646Data { FileDate = fileDate, RecordList = [.. recordList] }; } - public static Rfc5646Data LoadJson(string fileName) => - JsonSerializer.Deserialize( + /// + /// Loads RFC 5646 data from a JSON file. + /// + /// The path to the JSON file. + /// The loaded or null if deserialization fails. + public static Rfc5646Data? LoadJson(string fileName) => + JsonSerializer.Deserialize( File.ReadAllText(fileName), - JsonOptions.JsonReadOptions + LanguageJsonContext.Default.Rfc5646Data ); - public static void SaveJson(string fileName, Rfc5646Data rfc5646) => + internal static void SaveJson(string fileName, Rfc5646Data rfc5646) => File.WriteAllText( fileName, - JsonSerializer.Serialize(rfc5646, JsonOptions.JsonWriteOptions) + JsonSerializer.Serialize(rfc5646, LanguageJsonContext.Default.Rfc5646Data) ); - public static void GenCode(string fileName, Rfc5646Data rfc5646) + internal static void GenCode(string fileName, Rfc5646Data rfc5646) { + ArgumentNullException.ThrowIfNull(rfc5646); + StringBuilder stringBuilder = new(); _ = stringBuilder .Append( @@ -73,128 +88,49 @@ public partial class Rfc5646Data public static Rfc5646Data Create() => new() { - FileDate = new DateOnly({{rfc5646.FileDate.Year}}, {{rfc5646.FileDate.Month}}, {{rfc5646.FileDate.Day}}), + FileDate = {{LanguageSchema.GetCodeGenString(rfc5646.FileDate)}}, RecordList = [ """ ) .Append("\r\n"); - foreach (Record record in rfc5646.RecordList) + foreach (Rfc5646Record record in rfc5646.RecordList) { _ = stringBuilder .Append( CultureInfo.InvariantCulture, $$""" - new() - { - Type = RecordType.{{record.Type.ToString()}}, + new() + { + Type = {{LanguageSchema.GetCodeGenString(record.Type)}}, + SubTag = {{LanguageSchema.GetCodeGenString(record.SubTag)}}, + Added = {{LanguageSchema.GetCodeGenString(record.Added)}}, + SuppressScript = {{LanguageSchema.GetCodeGenString( + record.SuppressScript + )}}, + Scope = {{LanguageSchema.GetCodeGenString(record.Scope)}}, + MacroLanguage = {{LanguageSchema.GetCodeGenString( + record.MacroLanguage + )}}, + Deprecated = {{LanguageSchema.GetCodeGenString( + record.Deprecated + )}}, + PreferredValue = {{LanguageSchema.GetCodeGenString( + record.PreferredValue + )}}, + Tag = {{LanguageSchema.GetCodeGenString(record.Tag)}}, + Description = {{LanguageSchema.GetCodeGenString( + record.Description + )}}, + Comments = {{LanguageSchema.GetCodeGenString( + record.Comments + )}}, + Prefix = {{LanguageSchema.GetCodeGenString(record.Prefix)}}, + }, """ ) .Append("\r\n"); - if (!string.IsNullOrEmpty(record.SubTag)) - { - _ = stringBuilder - .Append( - CultureInfo.InvariantCulture, - $" SubTag = \"{record.SubTag}\"," - ) - .Append("\r\n"); - } - if (record.Added != DateOnly.MinValue) - { - _ = stringBuilder - .Append( - CultureInfo.InvariantCulture, - $" Added = new DateOnly({record.Added.Year}, {record.Added.Month}, {record.Added.Day})," - ) - .Append("\r\n"); - } - if (!string.IsNullOrEmpty(record.SuppressScript)) - { - _ = stringBuilder - .Append( - CultureInfo.InvariantCulture, - $" SuppressScript = \"{record.SuppressScript}\"," - ) - .Append("\r\n"); - } - if (record.Scope != RecordScope.None) - { - _ = stringBuilder - .Append( - CultureInfo.InvariantCulture, - $" Scope = RecordScope.{record.Scope.ToString()}," - ) - .Append("\r\n"); - } - if (!string.IsNullOrEmpty(record.MacroLanguage)) - { - _ = stringBuilder - .Append( - CultureInfo.InvariantCulture, - $" MacroLanguage = \"{record.MacroLanguage}\"," - ) - .Append("\r\n"); - } - if (record.Deprecated != DateOnly.MinValue) - { - _ = stringBuilder - .Append( - CultureInfo.InvariantCulture, - $" Deprecated = new DateOnly({record.Deprecated.Year}, {record.Deprecated.Month}, {record.Deprecated.Day})," - ) - .Append("\r\n"); - } - if (!string.IsNullOrEmpty(record.PreferredValue)) - { - _ = stringBuilder - .Append( - CultureInfo.InvariantCulture, - $" PreferredValue = \"{record.PreferredValue}\"," - ) - .Append("\r\n"); - } - if (!string.IsNullOrEmpty(record.Tag)) - { - _ = stringBuilder - .Append( - CultureInfo.InvariantCulture, - $" Tag = \"{record.Tag}\"," - ) - .Append("\r\n"); - } - _ = stringBuilder - .Append( - " Description = [" - + string.Join( - ", ", - record.Description.Select(item => $"@\"{item.Replace("\"", "\"\"")}\"") - ) - + "]," - ) - .Append("\r\n"); - _ = stringBuilder - .Append( - " Comments = [" - + string.Join( - ", ", - record.Comments.Select(item => $"@\"{item.Replace("\"", "\"\"")}\"") - ) - + "]," - ) - .Append("\r\n"); - _ = stringBuilder - .Append( - " Prefix = [" - + string.Join( - ", ", - record.Prefix.Select(item => $"@\"{item.Replace("\"", "\"\"")}\"") - ) - + "]," - ) - .Append("\r\n"); - _ = stringBuilder.Append(" },").Append("\r\n"); } _ = stringBuilder .Append( @@ -206,10 +142,10 @@ public static Rfc5646Data Create() => ) .Append("\r\n"); - Iso6392Data.WriteFile(fileName, stringBuilder.ToString()); + LanguageSchema.WriteFile(fileName, stringBuilder.ToString()); } - private sealed class Parser + internal sealed class Parser { private readonly List> _attributeList = []; @@ -221,7 +157,7 @@ public bool ReadAttributes(StreamReader lineReader) while (true) { // Read next line - string line = lineReader.ReadLine(); + string? line = lineReader.ReadLine(); if (string.IsNullOrEmpty(line)) { // End of file @@ -235,7 +171,12 @@ public bool ReadAttributes(StreamReader lineReader) } // First line should not be multiline - Debug.Assert(!line.StartsWith(" ", StringComparison.Ordinal)); + if (line.StartsWith(" ", StringComparison.Ordinal)) + { + throw new InvalidDataException( + $"Invalid data found in RFC 5646 record: {line}" + ); + } // Multiline record starts with two spaces // Peek at the next line an look for a space @@ -251,13 +192,21 @@ public bool ReadAttributes(StreamReader lineReader) } // Append the next line to the current line - string multiLine = lineReader.ReadLine(); - Debug.Assert(multiLine.StartsWith(" ", StringComparison.Ordinal)); + string? multiLine = lineReader.ReadLine(); + if ( + string.IsNullOrEmpty(multiLine) + || !multiLine.StartsWith(" ", StringComparison.Ordinal) + ) + { + throw new InvalidDataException( + $"Invalid data found in RFC 5646 record: {line}" + ); + } line = $"{line.Trim()} {multiLine.Trim()}"; } // Create attribute pair - int divider = line.IndexOf(':'); + int divider = line.IndexOf(':', StringComparison.Ordinal); string key = line[..divider]; string value = line[(divider + 1)..].Trim(); @@ -268,185 +217,172 @@ public bool ReadAttributes(StreamReader lineReader) return !eof; } - public Record GetRecord() + public Rfc5646Record GetRecord() { // Create a mutable tuple as placeholder ( - RecordType Type, - string SubTag, + Rfc5646Record.RecordType Type, + string? SubTag, List Description, - DateOnly Added, - string SuppressScript, - RecordScope Scope, - string MacroLanguage, - DateOnly Deprecated, + DateOnly? Added, + string? SuppressScript, + Rfc5646Record.RecordScope Scope, + string? MacroLanguage, + DateOnly? Deprecated, List Comments, List Prefix, - string PreferredValue, - string Tag + string? PreferredValue, + string? Tag ) record = ( - Type: RecordType.None, + Type: Rfc5646Record.RecordType.None, SubTag: null, Description: [], - Added: DateOnly.MinValue, + Added: null, SuppressScript: null, - Scope: RecordScope.None, + Scope: Rfc5646Record.RecordScope.None, MacroLanguage: null, - Deprecated: DateOnly.MinValue, + Deprecated: null, Comments: [], Prefix: [], PreferredValue: null, Tag: null ); - Debug.Assert(_attributeList.Count > 0); + if (_attributeList.Count == 0) + { + throw new InvalidDataException("No data found in RFC 5646 record."); + } foreach (KeyValuePair pair in _attributeList) { - switch (pair.Key.ToLowerInvariant()) + switch (pair.Key.ToUpperInvariant()) { - case "type": + case "TYPE": record.Type = TypeFromString(pair.Value); break; - case "subtag": + case "SUBTAG": record.SubTag = pair.Value; break; - case "description": + case "DESCRIPTION": record.Description.Add(pair.Value); break; - case "added": + case "ADDED": record.Added = DateFromString(pair.Value); break; - case "suppress-script": + case "SUPPRESS-SCRIPT": record.SuppressScript = pair.Value; break; - case "scope": + case "SCOPE": record.Scope = ScopeFromString(pair.Value); break; - case "macrolanguage": + case "MACROLANGUAGE": record.MacroLanguage = pair.Value; break; - case "deprecated": + case "DEPRECATED": record.Deprecated = DateFromString(pair.Value); break; - case "comments": + case "COMMENTS": record.Comments.Add(pair.Value); break; - case "prefix": + case "PREFIX": record.Prefix.Add(pair.Value); break; - case "preferred-value": + case "PREFERRED-VALUE": record.PreferredValue = pair.Value; break; - case "tag": + case "TAG": record.Tag = pair.Value; break; default: - throw new NotImplementedException(); + throw new InvalidDataException( + $"Invalid data found in RFC 5646 record: {pair.Key}" + ); } } - Debug.Assert(record.Type != RecordType.None); - Debug.Assert(!string.IsNullOrEmpty(record.Tag) || !string.IsNullOrEmpty(record.SubTag)); - return new Record - { - Type = record.Type, - SubTag = record.SubTag, - Description = [.. record.Description], - Added = record.Added, - SuppressScript = record.SuppressScript, - Scope = record.Scope, - MacroLanguage = record.MacroLanguage, - Deprecated = record.Deprecated, - Comments = [.. record.Comments], - Prefix = [.. record.Prefix], - PreferredValue = record.PreferredValue, - Tag = record.Tag, - }; + return + record.Type == Rfc5646Record.RecordType.None + || (string.IsNullOrEmpty(record.Tag) && string.IsNullOrEmpty(record.SubTag)) + || record.Description.Count == 0 + ? throw new InvalidDataException("Invalid data found in RFC 5646 record") + : new Rfc5646Record + { + Type = record.Type, + SubTag = record.SubTag, + Description = [.. record.Description], + Added = record.Added, + SuppressScript = record.SuppressScript, + Scope = record.Scope, + MacroLanguage = record.MacroLanguage, + Deprecated = record.Deprecated, + Comments = [.. record.Comments], + Prefix = [.. record.Prefix], + PreferredValue = record.PreferredValue, + Tag = record.Tag, + }; } public DateOnly GetFileDate() { + // First attribute is the date KeyValuePair pair = _attributeList.First(); - Debug.Assert(pair.Key.Equals("File-Date", StringComparison.Ordinal)); - return DateFromString(pair.Value); + return !pair.Key.Equals("File-Date", StringComparison.Ordinal) + ? throw new InvalidDataException( + $"Invalid data found in RFC 5646 record: {pair.Key}" + ) + : DateFromString(pair.Value); } private static DateOnly DateFromString(string value) => DateOnly.ParseExact(value, "yyyy-MM-dd", CultureInfo.InvariantCulture); } - public enum RecordType - { - None, - Language, - ExtLanguage, - Script, - Variant, - Grandfathered, - Region, - Redundant, - } + /// + /// Gets the file date of the language subtag registry. + /// + public required DateOnly? FileDate { get; init; } - public enum RecordScope - { - None, - MacroLanguage, - Collection, - Special, - PrivateUse, - } + /// + /// Gets the collection of RFC 5646 language subtag records. + /// + public ImmutableArray RecordList { get; init; } - public record Record - { - [JsonConverter(typeof(JsonStringEnumConverter))] - public RecordType Type { get; init; } - public string SubTag { get; init; } - public ImmutableArray Description { get; init; } - public DateOnly Added { get; init; } - public string SuppressScript { get; init; } - - [JsonConverter(typeof(JsonStringEnumConverter))] - public RecordScope Scope { get; init; } - public string MacroLanguage { get; init; } - public DateOnly Deprecated { get; init; } - public ImmutableArray Comments { get; init; } - public ImmutableArray Prefix { get; init; } - public string PreferredValue { get; init; } - public string Tag { get; init; } - - [JsonIgnore] - public string TagAny => string.IsNullOrEmpty(SubTag) ? Tag : SubTag; - } - - public DateOnly FileDate { get; init; } - public ImmutableArray RecordList { get; init; } - - private static RecordType TypeFromString(string value) => - value.ToLowerInvariant() switch + private static Rfc5646Record.RecordType TypeFromString(string value) => + value.ToUpperInvariant() switch { - "language" => RecordType.Language, - "extlang" => RecordType.ExtLanguage, - "script" => RecordType.Script, - "variant" => RecordType.Variant, - "grandfathered" => RecordType.Grandfathered, - "region" => RecordType.Region, - "redundant" => RecordType.Redundant, - _ => throw new NotImplementedException(), + "LANGUAGE" => Rfc5646Record.RecordType.Language, + "EXTLANG" => Rfc5646Record.RecordType.ExtLanguage, + "SCRIPT" => Rfc5646Record.RecordType.Script, + "VARIANT" => Rfc5646Record.RecordType.Variant, + "GRANDFATHERED" => Rfc5646Record.RecordType.Grandfathered, + "REGION" => Rfc5646Record.RecordType.Region, + "REDUNDANT" => Rfc5646Record.RecordType.Redundant, + _ => throw new InvalidDataException($"Invalid data found in RFC 5646 record: {value}"), }; - private static RecordScope ScopeFromString(string value) => - value.ToLowerInvariant() switch + private static Rfc5646Record.RecordScope ScopeFromString(string value) => + value.ToUpperInvariant() switch { - "macrolanguage" => RecordScope.MacroLanguage, - "collection" => RecordScope.Collection, - "special" => RecordScope.Special, - "private-use" => RecordScope.PrivateUse, - _ => throw new NotImplementedException(), + "MACROLANGUAGE" => Rfc5646Record.RecordScope.MacroLanguage, + "COLLECTION" => Rfc5646Record.RecordScope.Collection, + "SPECIAL" => Rfc5646Record.RecordScope.Special, + "PRIVATE-USE" => Rfc5646Record.RecordScope.PrivateUse, + _ => throw new InvalidDataException($"Invalid data found in RFC 5646 record: {value}"), }; - public Record Find(string languageTag, bool includeDescription) + /// + /// Finds a language subtag record by tag, subtag, preferred value, or description. + /// + /// The language tag, subtag, or description to search for. + /// If true, searches in the description field; otherwise, only searches tags and subtags. + /// The matching or null if not found. + public Rfc5646Record? Find(string? languageTag, bool includeDescription) { + if (string.IsNullOrEmpty(languageTag)) + { + return null; + } + // Find the matching language entry - Record record = null; + Rfc5646Record? record = null; // Tag record = RecordList.FirstOrDefault(item => @@ -508,3 +444,128 @@ record = RecordList.FirstOrDefault(item => return null; } } + +/// +/// Represents a record from the RFC 5646 / BCP 47 language subtag registry. +/// +public record Rfc5646Record +{ + /// + /// Defines the type of language subtag record. + /// + public enum RecordType + { + /// No type specified. + None, + + /// Primary language subtag. + Language, + + /// Extended language subtag. + ExtLanguage, + + /// Script subtag (ISO 15924). + Script, + + /// Variant subtag. + Variant, + + /// Grandfathered tag. + Grandfathered, + + /// Region subtag (ISO 3166-1 or UN M.49). + Region, + + /// Redundant tag. + Redundant, + } + + /// + /// Defines the scope of a language subtag. + /// + public enum RecordScope + { + /// No scope specified. + None, + + /// Macrolanguage scope. + MacroLanguage, + + /// Collection scope. + Collection, + + /// Special scope. + Special, + + /// Private use scope. + PrivateUse, + } + + /// + /// Gets the type of this record (Language, Script, Region, etc.). + /// + [JsonConverter(typeof(JsonStringEnumConverter))] + public RecordType Type { get; init; } + + /// + /// Gets the complete tag for grandfathered or redundant entries. + /// + public string? Tag { get; init; } + + /// + /// Gets the subtag value (for language, script, region, variant, or extended language). + /// + public string? SubTag { get; init; } + + /// + /// Gets the human-readable description(s) of this subtag. + /// + public ImmutableArray Description { get; init; } + + /// + /// Gets the date this subtag was added to the registry. + /// + public DateOnly? Added { get; init; } + + /// + /// Gets the script that should be suppressed when used with this language. + /// + public string? SuppressScript { get; init; } + + /// + /// Gets the scope of this subtag (macrolanguage, collection, special, or private use). + /// + [JsonConverter(typeof(JsonStringEnumConverter))] + public RecordScope Scope { get; init; } + + /// + /// Gets the macrolanguage this subtag belongs to. + /// + public string? MacroLanguage { get; init; } + + /// + /// Gets the date this subtag was deprecated (if applicable). + /// + public DateOnly? Deprecated { get; init; } + + /// + /// Gets additional comments about this subtag. + /// + public ImmutableArray Comments { get; init; } + + /// + /// Gets the prefix values that constrain where this subtag can be used. + /// + public ImmutableArray Prefix { get; init; } + + /// + /// Gets the preferred value to use instead of this subtag (for deprecated tags). + /// + public string? PreferredValue { get; init; } + + /// + /// Gets either the Tag or SubTag value, whichever is set. + /// + [JsonIgnore] + public string TagValue => string.IsNullOrEmpty(SubTag) ? Tag! : SubTag!; +} diff --git a/LanguageTags/Rfc5646DataGen.cs b/LanguageTags/Rfc5646DataGen.cs index cf88308..3b370df 100644 --- a/LanguageTags/Rfc5646DataGen.cs +++ b/LanguageTags/Rfc5646DataGen.cs @@ -14,281 +14,435 @@ public static Rfc5646Data Create() => [ new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "aa", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Afar"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ab", Added = new DateOnly(2005, 10, 16), SuppressScript = "Cyrl", + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Abkhazian"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ae", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Avestan"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "af", Added = new DateOnly(2005, 10, 16), SuppressScript = "Latn", + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Afrikaans"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ak", Added = new DateOnly(2005, 10, 16), - Scope = RecordScope.MacroLanguage, + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.MacroLanguage, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Akan"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "am", Added = new DateOnly(2005, 10, 16), SuppressScript = "Ethi", + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Amharic"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "an", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Aragonese"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ar", Added = new DateOnly(2005, 10, 16), SuppressScript = "Arab", - Scope = RecordScope.MacroLanguage, + Scope = Rfc5646Record.RecordScope.MacroLanguage, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Arabic"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "as", Added = new DateOnly(2005, 10, 16), SuppressScript = "Beng", + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Assamese"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "av", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Avaric"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ay", Added = new DateOnly(2005, 10, 16), SuppressScript = "Latn", - Scope = RecordScope.MacroLanguage, + Scope = Rfc5646Record.RecordScope.MacroLanguage, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Aymara"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "az", Added = new DateOnly(2005, 10, 16), - Scope = RecordScope.MacroLanguage, + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.MacroLanguage, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Azerbaijani"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ba", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Bashkir"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "be", Added = new DateOnly(2005, 10, 16), SuppressScript = "Cyrl", + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Belarusian"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bg", Added = new DateOnly(2005, 10, 16), SuppressScript = "Cyrl", + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Bulgarian"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bh", Added = new DateOnly(2005, 10, 16), - Scope = RecordScope.Collection, + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.Collection, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Bihari languages"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bi", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Bislama"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bm", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Bambara"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bn", Added = new DateOnly(2005, 10, 16), SuppressScript = "Beng", + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Bengali", @"Bangla"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bo", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Tibetan"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "br", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Breton"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bs", Added = new DateOnly(2005, 10, 16), SuppressScript = "Latn", + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "sh", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Bosnian"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ca", Added = new DateOnly(2005, 10, 16), SuppressScript = "Latn", + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Catalan", @"Valencian"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ce", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Chechen"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ch", Added = new DateOnly(2005, 10, 16), SuppressScript = "Latn", + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Chamorro"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "co", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Corsican"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "cr", Added = new DateOnly(2005, 10, 16), - Scope = RecordScope.MacroLanguage, + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.MacroLanguage, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Cree"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "cs", Added = new DateOnly(2005, 10, 16), SuppressScript = "Latn", + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Czech"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "cu", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [ @"Church Slavic", @@ -302,4835 +456,7740 @@ public static Rfc5646Data Create() => }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "cv", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Chuvash"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "cy", Added = new DateOnly(2005, 10, 16), SuppressScript = "Latn", + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Welsh"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "da", Added = new DateOnly(2005, 10, 16), SuppressScript = "Latn", + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Danish"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "de", Added = new DateOnly(2005, 10, 16), SuppressScript = "Latn", + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"German"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "dv", Added = new DateOnly(2005, 10, 16), SuppressScript = "Thaa", + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Dhivehi", @"Divehi", @"Maldivian"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "dz", Added = new DateOnly(2005, 10, 16), SuppressScript = "Tibt", + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Dzongkha"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ee", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ewe"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "el", Added = new DateOnly(2005, 10, 16), SuppressScript = "Grek", + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Modern Greek (1453-)"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "en", Added = new DateOnly(2005, 10, 16), SuppressScript = "Latn", + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"English"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "eo", Added = new DateOnly(2005, 10, 16), SuppressScript = "Latn", + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Esperanto"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "es", Added = new DateOnly(2005, 10, 16), SuppressScript = "Latn", + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Spanish", @"Castilian"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "et", Added = new DateOnly(2005, 10, 16), SuppressScript = "Latn", - Scope = RecordScope.MacroLanguage, + Scope = Rfc5646Record.RecordScope.MacroLanguage, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Estonian"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "eu", Added = new DateOnly(2005, 10, 16), SuppressScript = "Latn", + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Basque"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "fa", Added = new DateOnly(2005, 10, 16), SuppressScript = "Arab", - Scope = RecordScope.MacroLanguage, + Scope = Rfc5646Record.RecordScope.MacroLanguage, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Persian"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ff", Added = new DateOnly(2005, 10, 16), - Scope = RecordScope.MacroLanguage, + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.MacroLanguage, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Fulah"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "fi", Added = new DateOnly(2005, 10, 16), SuppressScript = "Latn", + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Finnish"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "fj", Added = new DateOnly(2005, 10, 16), SuppressScript = "Latn", + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Fijian"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "fo", Added = new DateOnly(2005, 10, 16), SuppressScript = "Latn", + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Faroese"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "fr", Added = new DateOnly(2005, 10, 16), SuppressScript = "Latn", + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"French"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "fy", Added = new DateOnly(2005, 10, 16), SuppressScript = "Latn", + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Western Frisian"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ga", Added = new DateOnly(2005, 10, 16), SuppressScript = "Latn", + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Irish"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "gd", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Scottish Gaelic", @"Gaelic"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "gl", Added = new DateOnly(2005, 10, 16), SuppressScript = "Latn", + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Galician"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "gn", Added = new DateOnly(2005, 10, 16), SuppressScript = "Latn", - Scope = RecordScope.MacroLanguage, + Scope = Rfc5646Record.RecordScope.MacroLanguage, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Guarani"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "gu", Added = new DateOnly(2005, 10, 16), SuppressScript = "Gujr", + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Gujarati"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "gv", Added = new DateOnly(2005, 10, 16), SuppressScript = "Latn", + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Manx"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ha", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Hausa"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "he", Added = new DateOnly(2005, 10, 16), SuppressScript = "Hebr", + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Hebrew"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "hi", Added = new DateOnly(2005, 10, 16), SuppressScript = "Deva", + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Hindi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ho", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Hiri Motu"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "hr", Added = new DateOnly(2005, 10, 16), SuppressScript = "Latn", + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "sh", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Croatian"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ht", Added = new DateOnly(2005, 10, 16), SuppressScript = "Latn", + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Haitian", @"Haitian Creole"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "hu", Added = new DateOnly(2005, 10, 16), SuppressScript = "Latn", + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Hungarian"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "hy", Added = new DateOnly(2005, 10, 16), SuppressScript = "Armn", + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Armenian"], Comments = [@"see also hyw"], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "hz", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Herero"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ia", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Interlingua (International Auxiliary Language Association)"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "id", Added = new DateOnly(2005, 10, 16), SuppressScript = "Latn", + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "ms", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Indonesian"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ie", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Interlingue", @"Occidental"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ig", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Igbo"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ii", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Sichuan Yi", @"Nuosu"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ik", Added = new DateOnly(2005, 10, 16), - Scope = RecordScope.MacroLanguage, + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.MacroLanguage, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Inupiaq"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "in", Added = new DateOnly(2005, 10, 16), SuppressScript = "Latn", + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "ms", Deprecated = new DateOnly(1989, 1, 1), PreferredValue = "id", + Tag = null, Description = [@"Indonesian"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "io", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ido"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "is", Added = new DateOnly(2005, 10, 16), SuppressScript = "Latn", + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Icelandic"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "it", Added = new DateOnly(2005, 10, 16), SuppressScript = "Latn", + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Italian"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "iu", Added = new DateOnly(2005, 10, 16), - Scope = RecordScope.MacroLanguage, + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.MacroLanguage, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Inuktitut"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "iw", Added = new DateOnly(2005, 10, 16), SuppressScript = "Hebr", + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, Deprecated = new DateOnly(1989, 1, 1), PreferredValue = "he", + Tag = null, Description = [@"Hebrew"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ja", Added = new DateOnly(2005, 10, 16), SuppressScript = "Jpan", + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Japanese"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ji", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, Deprecated = new DateOnly(1989, 1, 1), PreferredValue = "yi", + Tag = null, Description = [@"Yiddish"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "jv", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Javanese"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "jw", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, Deprecated = new DateOnly(2001, 8, 13), PreferredValue = "jv", + Tag = null, Description = [@"Javanese"], Comments = [@"published by error in Table 1 of ISO 639:1988"], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ka", Added = new DateOnly(2005, 10, 16), SuppressScript = "Geor", + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Georgian"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kg", Added = new DateOnly(2005, 10, 16), - Scope = RecordScope.MacroLanguage, + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.MacroLanguage, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kongo"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ki", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kikuyu", @"Gikuyu"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kj", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kuanyama", @"Kwanyama"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kk", Added = new DateOnly(2005, 10, 16), SuppressScript = "Cyrl", + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kazakh"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kl", Added = new DateOnly(2005, 10, 16), SuppressScript = "Latn", + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kalaallisut", @"Greenlandic"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "km", Added = new DateOnly(2005, 10, 16), SuppressScript = "Khmr", + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Khmer", @"Central Khmer"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kn", Added = new DateOnly(2005, 10, 16), SuppressScript = "Knda", + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kannada"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ko", Added = new DateOnly(2005, 10, 16), SuppressScript = "Kore", + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Korean"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kr", Added = new DateOnly(2005, 10, 16), - Scope = RecordScope.MacroLanguage, + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.MacroLanguage, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kanuri"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ks", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kashmiri"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ku", Added = new DateOnly(2005, 10, 16), - Scope = RecordScope.MacroLanguage, + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.MacroLanguage, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kurdish"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kv", Added = new DateOnly(2005, 10, 16), - Scope = RecordScope.MacroLanguage, + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.MacroLanguage, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Komi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kw", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Cornish"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ky", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kirghiz", @"Kyrgyz"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "la", Added = new DateOnly(2005, 10, 16), SuppressScript = "Latn", + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Latin"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "lb", Added = new DateOnly(2005, 10, 16), SuppressScript = "Latn", + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Luxembourgish", @"Letzeburgesch"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "lg", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ganda", @"Luganda"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "li", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Limburgan", @"Limburger", @"Limburgish"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ln", Added = new DateOnly(2005, 10, 16), SuppressScript = "Latn", + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Lingala"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "lo", Added = new DateOnly(2005, 10, 16), SuppressScript = "Laoo", + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Lao"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "lt", Added = new DateOnly(2005, 10, 16), SuppressScript = "Latn", + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Lithuanian"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "lu", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Luba-Katanga"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "lv", Added = new DateOnly(2005, 10, 16), SuppressScript = "Latn", - Scope = RecordScope.MacroLanguage, + Scope = Rfc5646Record.RecordScope.MacroLanguage, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Latvian"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mg", Added = new DateOnly(2005, 10, 16), SuppressScript = "Latn", - Scope = RecordScope.MacroLanguage, + Scope = Rfc5646Record.RecordScope.MacroLanguage, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Malagasy"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mh", Added = new DateOnly(2005, 10, 16), SuppressScript = "Latn", + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Marshallese"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mi", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Maori"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mk", Added = new DateOnly(2005, 10, 16), SuppressScript = "Cyrl", + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Macedonian"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ml", Added = new DateOnly(2005, 10, 16), SuppressScript = "Mlym", + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Malayalam"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mn", Added = new DateOnly(2005, 10, 16), - Scope = RecordScope.MacroLanguage, + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.MacroLanguage, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Mongolian"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mo", Added = new DateOnly(2005, 10, 16), SuppressScript = "Latn", + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, Deprecated = new DateOnly(2008, 11, 22), PreferredValue = "ro", + Tag = null, Description = [@"Moldavian", @"Moldovan"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mr", Added = new DateOnly(2005, 10, 16), SuppressScript = "Deva", + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Marathi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ms", Added = new DateOnly(2005, 10, 16), SuppressScript = "Latn", - Scope = RecordScope.MacroLanguage, + Scope = Rfc5646Record.RecordScope.MacroLanguage, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Malay (macrolanguage)"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mt", Added = new DateOnly(2005, 10, 16), SuppressScript = "Latn", + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Maltese"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "my", Added = new DateOnly(2005, 10, 16), SuppressScript = "Mymr", + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Burmese"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "na", Added = new DateOnly(2005, 10, 16), SuppressScript = "Latn", + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Nauru"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "nb", Added = new DateOnly(2005, 10, 16), SuppressScript = "Latn", + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "no", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Norwegian Bokmål"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "nd", Added = new DateOnly(2005, 10, 16), SuppressScript = "Latn", + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"North Ndebele"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ne", Added = new DateOnly(2005, 10, 16), SuppressScript = "Deva", - Scope = RecordScope.MacroLanguage, + Scope = Rfc5646Record.RecordScope.MacroLanguage, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Nepali (macrolanguage)"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ng", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ndonga"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "nl", Added = new DateOnly(2005, 10, 16), SuppressScript = "Latn", + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Dutch", @"Flemish"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "nn", Added = new DateOnly(2005, 10, 16), SuppressScript = "Latn", + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "no", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Norwegian Nynorsk"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "no", Added = new DateOnly(2005, 10, 16), SuppressScript = "Latn", - Scope = RecordScope.MacroLanguage, + Scope = Rfc5646Record.RecordScope.MacroLanguage, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Norwegian"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "nr", Added = new DateOnly(2005, 10, 16), SuppressScript = "Latn", + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"South Ndebele"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "nv", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Navajo", @"Navaho"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ny", Added = new DateOnly(2005, 10, 16), SuppressScript = "Latn", + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Nyanja", @"Chewa", @"Chichewa"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "oc", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Occitan (post 1500)"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "oj", Added = new DateOnly(2005, 10, 16), - Scope = RecordScope.MacroLanguage, + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.MacroLanguage, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ojibwa"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "om", Added = new DateOnly(2005, 10, 16), SuppressScript = "Latn", - Scope = RecordScope.MacroLanguage, + Scope = Rfc5646Record.RecordScope.MacroLanguage, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Oromo"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "or", Added = new DateOnly(2005, 10, 16), SuppressScript = "Orya", - Scope = RecordScope.MacroLanguage, + Scope = Rfc5646Record.RecordScope.MacroLanguage, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Oriya (macrolanguage)", @"Odia (macrolanguage)"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "os", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ossetian", @"Ossetic"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "pa", Added = new DateOnly(2005, 10, 16), SuppressScript = "Guru", + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Panjabi", @"Punjabi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "pi", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Pali"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "pl", Added = new DateOnly(2005, 10, 16), SuppressScript = "Latn", + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Polish"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ps", Added = new DateOnly(2005, 10, 16), SuppressScript = "Arab", - Scope = RecordScope.MacroLanguage, + Scope = Rfc5646Record.RecordScope.MacroLanguage, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Pushto", @"Pashto"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "pt", Added = new DateOnly(2005, 10, 16), SuppressScript = "Latn", + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Portuguese"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "qu", Added = new DateOnly(2005, 10, 16), SuppressScript = "Latn", - Scope = RecordScope.MacroLanguage, + Scope = Rfc5646Record.RecordScope.MacroLanguage, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Quechua"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "rm", Added = new DateOnly(2005, 10, 16), SuppressScript = "Latn", + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Romansh"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "rn", Added = new DateOnly(2005, 10, 16), SuppressScript = "Latn", + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Rundi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ro", Added = new DateOnly(2005, 10, 16), SuppressScript = "Latn", + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Romanian", @"Moldavian", @"Moldovan"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ru", Added = new DateOnly(2005, 10, 16), SuppressScript = "Cyrl", + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Russian"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "rw", Added = new DateOnly(2005, 10, 16), SuppressScript = "Latn", + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kinyarwanda"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "sa", Added = new DateOnly(2005, 10, 16), - Scope = RecordScope.MacroLanguage, + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.MacroLanguage, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Sanskrit"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "sc", Added = new DateOnly(2005, 10, 16), - Scope = RecordScope.MacroLanguage, + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.MacroLanguage, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Sardinian"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "sd", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Sindhi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "se", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Northern Sami"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "sg", Added = new DateOnly(2005, 10, 16), SuppressScript = "Latn", + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Sango"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "sh", Added = new DateOnly(2005, 10, 16), - Scope = RecordScope.MacroLanguage, + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.MacroLanguage, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Serbo-Croatian"], Comments = [@"sr, hr, bs are preferred for most modern uses"], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "si", Added = new DateOnly(2005, 10, 16), SuppressScript = "Sinh", + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Sinhala", @"Sinhalese"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "sk", Added = new DateOnly(2005, 10, 16), SuppressScript = "Latn", + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Slovak"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "sl", Added = new DateOnly(2005, 10, 16), SuppressScript = "Latn", + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Slovenian"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "sm", Added = new DateOnly(2005, 10, 16), SuppressScript = "Latn", + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Samoan"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "sn", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Shona"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "so", Added = new DateOnly(2005, 10, 16), SuppressScript = "Latn", + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Somali"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "sq", Added = new DateOnly(2005, 10, 16), SuppressScript = "Latn", - Scope = RecordScope.MacroLanguage, + Scope = Rfc5646Record.RecordScope.MacroLanguage, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Albanian"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "sr", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "sh", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Serbian"], Comments = [@"see cnr for Montenegrin"], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ss", Added = new DateOnly(2005, 10, 16), SuppressScript = "Latn", + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Swati"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "st", Added = new DateOnly(2005, 10, 16), SuppressScript = "Latn", + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Southern Sotho"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "su", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Sundanese"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "sv", Added = new DateOnly(2005, 10, 16), SuppressScript = "Latn", + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Swedish"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "sw", Added = new DateOnly(2005, 10, 16), SuppressScript = "Latn", - Scope = RecordScope.MacroLanguage, + Scope = Rfc5646Record.RecordScope.MacroLanguage, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Swahili (macrolanguage)"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ta", Added = new DateOnly(2005, 10, 16), SuppressScript = "Taml", + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Tamil"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "te", Added = new DateOnly(2005, 10, 16), SuppressScript = "Telu", + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Telugu"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "tg", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Tajik"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "th", Added = new DateOnly(2005, 10, 16), SuppressScript = "Thai", + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Thai"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ti", Added = new DateOnly(2005, 10, 16), SuppressScript = "Ethi", + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Tigrinya"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "tk", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Turkmen"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "tl", Added = new DateOnly(2005, 10, 16), SuppressScript = "Latn", + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Tagalog"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "tn", Added = new DateOnly(2005, 10, 16), SuppressScript = "Latn", + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Tswana"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "to", Added = new DateOnly(2005, 10, 16), SuppressScript = "Latn", + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Tonga (Tonga Islands)"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "tr", Added = new DateOnly(2005, 10, 16), SuppressScript = "Latn", + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Turkish"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ts", Added = new DateOnly(2005, 10, 16), SuppressScript = "Latn", + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Tsonga"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "tt", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Tatar"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "tw", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "ak", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Twi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ty", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Tahitian"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ug", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Uighur", @"Uyghur"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "uk", Added = new DateOnly(2005, 10, 16), SuppressScript = "Cyrl", + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ukrainian"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ur", Added = new DateOnly(2005, 10, 16), SuppressScript = "Arab", + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Urdu"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "uz", Added = new DateOnly(2005, 10, 16), - Scope = RecordScope.MacroLanguage, + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.MacroLanguage, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Uzbek"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ve", Added = new DateOnly(2005, 10, 16), SuppressScript = "Latn", + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Venda"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "vi", Added = new DateOnly(2005, 10, 16), SuppressScript = "Latn", + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Vietnamese"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "vo", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Volapük"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "wa", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Walloon"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "wo", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Wolof"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "xh", Added = new DateOnly(2005, 10, 16), SuppressScript = "Latn", + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Xhosa"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "yi", Added = new DateOnly(2005, 10, 16), SuppressScript = "Hebr", - Scope = RecordScope.MacroLanguage, + Scope = Rfc5646Record.RecordScope.MacroLanguage, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Yiddish"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "yo", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Yoruba"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "za", Added = new DateOnly(2005, 10, 16), - Scope = RecordScope.MacroLanguage, + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.MacroLanguage, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Zhuang", @"Chuang"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "zh", Added = new DateOnly(2005, 10, 16), - Scope = RecordScope.MacroLanguage, + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.MacroLanguage, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Chinese"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "zu", Added = new DateOnly(2005, 10, 16), SuppressScript = "Latn", + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Zulu"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "aaa", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ghotuo"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "aab", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Alumu-Tesu"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "aac", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ari"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "aad", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Amal"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "aae", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "sq", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Arbëreshë Albanian"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "aaf", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Aranadan"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "aag", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ambrak"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "aah", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Abu' Arapesh"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "aai", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Arifama-Miniafia"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "aak", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ankave"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "aal", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Afade"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "aam", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, Deprecated = new DateOnly(2015, 2, 12), PreferredValue = "aas", + Tag = null, Description = [@"Aramanik"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "aan", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Anambé"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "aao", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "ar", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Algerian Saharan Arabic"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "aap", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Pará Arára"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "aaq", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Eastern Abnaki"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "aas", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Aasáx"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "aat", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "sq", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Arvanitika Albanian"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "aau", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Abau"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "aav", Added = new DateOnly(2009, 7, 29), - Scope = RecordScope.Collection, + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.Collection, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Austro-Asiatic languages"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "aaw", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Solong"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "aax", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Mandobo Atas"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "aaz", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Amarasi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "aba", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Abé"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "abb", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Bankon"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "abc", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ambala Ayta"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "abd", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Manide"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "abe", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Western Abnaki"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "abf", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Abai Sungai"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "abg", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Abaga"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "abh", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "ar", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Tajiki Arabic"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "abi", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Abidji"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "abj", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Aka-Bea"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "abl", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Lampung Nyo"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "abm", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Abanyom"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "abn", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Abua"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "abo", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Abon"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "abp", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Abellen Ayta"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "abq", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Abaza"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "abr", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Abron"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "abs", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ambonese Malay"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "abt", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ambulas"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "abu", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Abure"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "abv", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "ar", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Baharna Arabic"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "abw", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Pal"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "abx", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Inabaknon"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "aby", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Aneme Wake"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "abz", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Abui"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "aca", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Achagua"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "acb", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Áncá"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "acd", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Gikyode"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ace", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Achinese"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "acf", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Saint Lucian Creole French"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ach", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Acoli"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "aci", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Aka-Cari"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ack", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Aka-Kora"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "acl", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Akar-Bale"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "acm", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "ar", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Mesopotamian Arabic"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "acn", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Achang"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "acp", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Eastern Acipa"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "acq", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "ar", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ta'izzi-Adeni Arabic"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "acr", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Achi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "acs", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Acroá"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "act", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Achterhoeks"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "acu", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Achuar-Shiwiar"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "acv", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Achumawi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "acw", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "ar", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Hijazi Arabic"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "acx", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "ar", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Omani Arabic"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "acy", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "ar", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Cypriot Arabic"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "acz", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Acheron"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ada", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Adangme"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "adb", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Atauran"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "add", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Lidzonka", @"Dzodinka"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ade", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Adele"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "adf", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "ar", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Dhofari Arabic"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "adg", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Andegerebinha"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "adh", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Adhola"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "adi", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Adi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "adj", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Adioukrou"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "adl", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Galo"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "adn", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Adang"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ado", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Abu"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "adp", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, Deprecated = new DateOnly(2015, 2, 12), PreferredValue = "dz", + Tag = null, Description = [@"Adap"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "adq", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Adangbe"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "adr", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Adonara"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ads", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Adamorobe Sign Language"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "adt", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Adnyamathanha"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "adu", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Aduge"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "adw", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Amundava"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "adx", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Amdo Tibetan"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ady", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Adyghe", @"Adygei"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "adz", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Adzera"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "aea", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Areba"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "aeb", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "ar", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Tunisian Arabic"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "aec", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "ar", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Saidi Arabic"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "aed", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Argentine Sign Language"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "aee", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Northeast Pashai", @"Northeast Pashayi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "aek", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Haeke"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ael", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ambele"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "aem", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Arem"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "aen", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Armenian Sign Language"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "aeq", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Aer"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "aer", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Eastern Arrernte"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "aes", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Alsea"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "aeu", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Akeu"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "aew", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ambakich"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "aey", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Amele"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "aez", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Aeka"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "afa", Added = new DateOnly(2005, 10, 16), - Scope = RecordScope.Collection, + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.Collection, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Afro-Asiatic languages"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "afb", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "ar", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Gulf Arabic"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "afd", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Andai"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "afe", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Putukwam"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "afg", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Afghan Sign Language"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "afh", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Afrihili"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "afi", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Akrukay", @"Chini"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "afk", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Nanubae"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "afn", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Defaka"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "afo", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Eloyi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "afp", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Tapei"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "afs", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Afro-Seminole Creole"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "aft", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Afitti"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "afu", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Awutu"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "afz", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Obokuitai"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "aga", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Aguano"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "agb", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Legbo"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "agc", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Agatu"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "agd", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Agarabi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "age", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Angal"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "agf", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Arguni"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "agg", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Angor"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "agh", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ngelima"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "agi", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Agariya"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "agj", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Argobba"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "agk", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Isarog Agta"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "agl", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Fembe"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "agm", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Angaataha"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "agn", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Agutaynen"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ago", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Tainae"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "agp", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, Deprecated = new DateOnly(2010, 3, 11), + PreferredValue = null, + Tag = null, Description = [@"Paranan"], Comments = [@"see apf, prf"], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "agq", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Aghem"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "agr", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Aguaruna"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ags", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Esimbi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "agt", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Central Cagayan Agta"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "agu", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Aguacateco"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "agv", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Remontado Dumagat"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "agw", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kahua"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "agx", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Aghul"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "agy", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Southern Alta"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "agz", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Mt. Iriga Agta"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "aha", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ahanta"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ahb", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Axamb"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ahg", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Qimant"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ahh", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Aghu"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ahi", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Tiagbamrin Aizi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ahk", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Akha"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ahl", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Igo"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ahm", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Mobumrin Aizi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ahn", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Àhàn"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "aho", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ahom"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ahp", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Aproumu Aizi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ahr", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ahirani"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ahs", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ashe"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "aht", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ahtena"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "aia", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Arosi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "aib", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ainu (China)"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "aic", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ainbai"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "aid", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Alngith"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "aie", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Amara"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "aif", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Agi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "aig", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Antigua and Barbuda Creole English"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "aih", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ai-Cham"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "aii", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "syr", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Assyrian Neo-Aramaic"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "aij", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Lishanid Noshan"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "aik", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ake"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ail", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Aimele"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "aim", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Aimol"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ain", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ainu (Japan)"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "aio", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Aiton"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "aip", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Burumakok"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "aiq", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Aimaq"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "air", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Airoran"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ais", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, Deprecated = new DateOnly(2019, 4, 16), + PreferredValue = null, + Tag = null, Description = [@"Nataoran Amis"], Comments = [@"see ami, szy"], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ait", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Arikem"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "aiw", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Aari"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "aix", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Aighon"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "aiy", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ali"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "aja", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Aja (South Sudan)"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ajg", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Aja (Benin)"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "aji", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ajië"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ajn", Added = new DateOnly(2012, 8, 12), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Andajin"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ajp", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "ar", Deprecated = new DateOnly(2023, 3, 17), PreferredValue = "apc", + Tag = null, Description = [@"South Levantine Arabic"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ajs", Added = new DateOnly(2022, 2, 25), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Algerian Jewish Sign Language"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ajt", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "jrb", Deprecated = new DateOnly(2022, 2, 25), PreferredValue = "aeb", + Tag = null, Description = [@"Judeo-Tunisian Arabic"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "aju", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "jrb", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Judeo-Moroccan Arabic"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ajw", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ajawa"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ajz", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Amri Karbi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "akb", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Batak Angkola"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "akc", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Mpur"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "akd", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ukpet-Ehom"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ake", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Akawaio"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "akf", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Akpa"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "akg", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Anakalangu"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "akh", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Angal Heneng"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "aki", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Aiome"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "akj", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Aka-Jeru"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "akk", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Akkadian"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "akl", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Aklanon"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "akm", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Aka-Bo"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ako", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Akurio"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "akp", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Siwu"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "akq", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ak"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "akr", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Araki"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "aks", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Akaselem"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "akt", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Akolet"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "aku", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Akum"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "akv", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Akhvakh"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "akw", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Akwa"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "akx", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Aka-Kede"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "aky", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Aka-Kol"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "akz", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Alabama"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ala", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Alago"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "alc", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Qawasqar"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ald", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Alladian"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ale", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Aleut"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "alf", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Alege"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "alg", Added = new DateOnly(2005, 10, 16), - Scope = RecordScope.Collection, + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.Collection, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Algonquian languages"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "alh", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Alawa"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ali", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Amaimon"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "alj", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Alangan"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "alk", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Alak"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "all", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Allar"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "alm", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Amblong"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "aln", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "sq", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Gheg Albanian"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "alo", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Larike-Wakasihu"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "alp", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Alune"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "alq", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Algonquin"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "alr", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Alutor"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "als", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "sq", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Tosk Albanian"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "alt", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Southern Altai"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "alu", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"'Are'are"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "alv", Added = new DateOnly(2009, 7, 29), - Scope = RecordScope.Collection, + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.Collection, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Atlantic-Congo languages"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "alw", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Alaba-K’abeena", @"Wanbasana"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "alx", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Amol"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "aly", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Alyawarr"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "alz", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Alur"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ama", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Amanayé"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "amb", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ambo"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "amc", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Amahuaca"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ame", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Yanesha'"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "amf", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Hamer-Banna"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "amg", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Amurdak"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ami", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Amis"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "amj", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Amdang"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "amk", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ambai"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "aml", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"War-Jaintia"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "amm", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ama (Papua New Guinea)"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "amn", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Amanab"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "amo", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Amo"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "amp", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Alamblak"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "amq", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Amahai"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "amr", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Amarakaeri"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ams", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Southern Amami-Oshima"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "amt", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Amto"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "amu", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Guerrero Amuzgo"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "amv", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ambelau"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "amw", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Western Neo-Aramaic"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "amx", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Anmatyerre"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "amy", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ami"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "amz", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Atampaya"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ana", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Andaqui"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "anb", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Andoa"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "anc", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ngas"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "and", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ansus"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ane", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Xârâcùù"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "anf", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Animere"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ang", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Old English (ca. 450-1100)"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "anh", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Nend"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ani", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Andi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "anj", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Anor"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ank", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Goemai"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "anl", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Anu-Hkongso Chin"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "anm", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Anal"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ann", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Obolo"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ano", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Andoque"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "anp", Added = new DateOnly(2006, 3, 8), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Angika"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "anq", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Jarawa (India)"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "anr", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Andh"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ans", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Anserma"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ant", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Antakarinya", @"Antikarinya"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "anu", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Anuak"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "anv", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Denya"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "anw", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Anaang"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "anx", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Andra-Hus"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "any", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Anyin"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "anz", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Anem"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "aoa", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Angolar"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "aob", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Abom"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "aoc", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Pemon"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "aod", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Andarum"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "aoe", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Angal Enen"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "aof", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Bragat"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "aog", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Angoram"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "aoh", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, Deprecated = new DateOnly(2020, 3, 28), + PreferredValue = null, + Tag = null, Description = [@"Arma"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "aoi", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Anindilyakwa"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "aoj", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Mufian"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "aok", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Arhö"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "aol", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Alor"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "aom", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ömie"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "aon", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Bumbita Arapesh"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "aor", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Aore"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "aos", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Taikat"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "aot", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Atong (India)", @"A'tong"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "aou", Added = new DateOnly(2012, 8, 12), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"A'ou"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "aox", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Atorada"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "aoz", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Uab Meto"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "apa", Added = new DateOnly(2005, 10, 16), - Scope = RecordScope.Collection, + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.Collection, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Apache languages"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "apb", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Sa'a"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "apc", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "ar", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Levantine Arabic"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "apd", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "ar", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Sudanese Arabic"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ape", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Bukiyip"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "apf", Added = new DateOnly(2010, 3, 11), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Pahanan Agta"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "apg", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ampanang"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "aph", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Athpariya"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "api", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Apiaká"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "apj", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Jicarilla Apache"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "apk", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kiowa Apache"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "apl", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Lipan Apache"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "apm", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Mescalero-Chiricahua Apache"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "apn", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Apinayé"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "apo", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ambul"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "app", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Apma"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "apq", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"A-Pucikwar"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "apr", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Arop-Lokep"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "aps", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Arop-Sissano"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "apt", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Apatani"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "apu", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Apurinã"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "apv", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Alapmunte"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "apw", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Western Apache"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "apx", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Aputai"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "apy", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Apalaí"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "apz", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Safeyoka"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "aqa", Added = new DateOnly(2009, 7, 29), - Scope = RecordScope.Collection, + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.Collection, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Alacalufan languages"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "aqc", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Archi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "aqd", Added = new DateOnly(2011, 8, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ampari Dogon"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "aqg", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Arigidi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "aqk", Added = new DateOnly(2021, 2, 20), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Aninka"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "aql", Added = new DateOnly(2009, 7, 29), - Scope = RecordScope.Collection, + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.Collection, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Algic languages"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "aqm", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Atohwaim"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "aqn", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Northern Alta"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "aqp", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Atakapa"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "aqr", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Arhâ"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "aqt", Added = new DateOnly(2014, 2, 28), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Angaité"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "aqz", Added = new DateOnly(2010, 3, 11), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Akuntsu"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "arb", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "ar", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Standard Arabic"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "arc", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [ @"Official Aramaic (700-300 BCE)", @@ -5141,9846 +8200,16200 @@ public static Rfc5646Data Create() => }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ard", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Arabana"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "are", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Western Arrarnta"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "arh", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Arhuaco"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ari", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Arikara"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "arj", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Arapaso"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ark", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Arikapú"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "arl", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Arabela"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "arn", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Mapudungun", @"Mapuche"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "aro", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Araona"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "arp", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Arapaho"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "arq", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "ar", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Algerian Arabic"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "arr", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Karo (Brazil)"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ars", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "ar", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Najdi Arabic"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "art", Added = new DateOnly(2005, 10, 16), - Scope = RecordScope.Collection, + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.Collection, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Artificial languages"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "aru", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Aruá (Amazonas State)", @"Arawá"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "arv", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Arbore"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "arw", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Arawak"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "arx", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Aruá (Rodonia State)"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ary", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "ar", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Moroccan Arabic"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "arz", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "ar", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Egyptian Arabic"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "asa", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Asu (Tanzania)"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "asb", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Assiniboine", @"Nakoda Assiniboine"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "asc", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Casuarina Coast Asmat"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "asd", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, Deprecated = new DateOnly(2019, 4, 16), PreferredValue = "snz", + Tag = null, Description = [@"Asas"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ase", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"American Sign Language"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "asf", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Auslan", @"Australian Sign Language"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "asg", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Cishingini"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ash", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Abishira"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "asi", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Buruwai"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "asj", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Sari"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ask", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ashkun"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "asl", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Asilulu"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "asn", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Xingú Asuriní"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "aso", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Dano"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "asp", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Algerian Sign Language"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "asq", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Austrian Sign Language"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "asr", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Asuri"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ass", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ipulo"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ast", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Asturian", @"Asturleonese", @"Bable", @"Leonese"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "asu", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Tocantins Asurini"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "asv", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Asoa"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "asw", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Australian Aborigines Sign Language"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "asx", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Muratayak"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "asy", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Yaosakor Asmat"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "asz", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"As"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ata", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Pele-Ata"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "atb", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Zaiwa"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "atc", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Atsahuaca"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "atd", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ata Manobo"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ate", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Atemble"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "atg", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ivbie North-Okpela-Arhe"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ath", Added = new DateOnly(2005, 10, 16), - Scope = RecordScope.Collection, + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.Collection, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Athapascan languages"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ati", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Attié"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "atj", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Atikamekw", @"Nehirowimowin"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "atk", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ati"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "atl", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Mt. Iraya Agta"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "atm", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ata"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "atn", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ashtiani"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ato", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Atong (Cameroon)"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "atp", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Pudtol Atta"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "atq", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Aralle-Tabulahan"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "atr", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Waimiri-Atroari"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ats", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Gros Ventre"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "att", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Pamplona Atta"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "atu", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Reel"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "atv", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Northern Altai"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "atw", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Atsugewi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "atx", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Arutani"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "aty", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Aneityum"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "atz", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Arta"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "aua", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Asumboa"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "aub", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Alugu"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "auc", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Waorani"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "aud", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Anuta"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "aue", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, Deprecated = new DateOnly(2015, 2, 12), PreferredValue = "ktz", + Tag = null, Description = [@"ǂKxʼauǁʼein"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "auf", Added = new DateOnly(2009, 7, 29), - Scope = RecordScope.Collection, + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.Collection, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Arauan languages"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "aug", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Aguna"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "auh", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Aushi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "aui", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Anuki"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "auj", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Awjilah"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "auk", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Heyo"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "aul", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Aulua"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "aum", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Asu (Nigeria)"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "aun", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Molmo One"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "auo", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Auyokawa"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "aup", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Makayam"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "auq", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Anus", @"Korur"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "aur", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Aruek"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "aus", Added = new DateOnly(2005, 10, 16), - Scope = RecordScope.Collection, + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.Collection, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Australian languages"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "aut", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Austral"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "auu", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Auye"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "auw", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Awyi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "aux", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Aurá"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "auy", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Awiyaana"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "auz", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "ar", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Uzbeki Arabic"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "avb", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Avau"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "avd", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Alviri-Vidari"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "avi", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Avikam"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "avk", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kotava"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "avl", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "ar", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Eastern Egyptian Bedawi Arabic"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "avm", Added = new DateOnly(2012, 8, 12), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Angkamuthi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "avn", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Avatime"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "avo", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Agavotaguerra"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "avs", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Aushiri"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "avt", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Au"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "avu", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Avokaya"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "avv", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Avá-Canoeiro"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "awa", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Awadhi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "awb", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Awa (Papua New Guinea)"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "awc", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Cicipu"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "awd", Added = new DateOnly(2009, 7, 29), - Scope = RecordScope.Collection, + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.Collection, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Arawakan languages"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "awe", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Awetí"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "awg", Added = new DateOnly(2012, 8, 12), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Anguthimri"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "awh", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Awbono"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "awi", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Aekyom"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "awk", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Awabakal"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "awm", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Arawum"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "awn", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Awngi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "awo", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Awak"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "awr", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Awera"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "aws", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"South Awyu"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "awt", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Araweté"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "awu", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Central Awyu"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "awv", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Jair Awyu"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "aww", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Awun"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "awx", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Awara"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "awy", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Edera Awyu"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "axb", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Abipon"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "axe", Added = new DateOnly(2012, 8, 12), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ayerrerenge"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "axg", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Mato Grosso Arára"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "axk", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Yaka (Central African Republic)"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "axl", Added = new DateOnly(2013, 9, 10), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Lower Southern Aranda"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "axm", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Middle Armenian"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "axx", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Xârâgurè"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "aya", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Awar"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ayb", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ayizo Gbe"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ayc", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "ay", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Southern Aymara"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ayd", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ayabadhu"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "aye", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ayere"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ayg", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ginyanga"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ayh", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "ar", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Hadrami Arabic"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ayi", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Leyigha"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ayk", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Akuku"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ayl", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "ar", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Libyan Arabic"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ayn", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "ar", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Sanaani Arabic"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ayo", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ayoreo"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ayp", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "ar", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"North Mesopotamian Arabic"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ayq", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ayi (Papua New Guinea)"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ayr", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "ay", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Central Aymara"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ays", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Sorsogon Ayta"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ayt", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Magbukun Ayta"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ayu", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ayu"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ayx", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, Deprecated = new DateOnly(2011, 8, 16), PreferredValue = "nun", + Tag = null, Description = [@"Ayi (China)"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ayy", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, Deprecated = new DateOnly(2020, 3, 28), + PreferredValue = null, + Tag = null, Description = [@"Tayabas Ayta"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ayz", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Mai Brat"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "aza", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Azha"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "azb", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "az", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"South Azerbaijani"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "azc", Added = new DateOnly(2009, 7, 29), - Scope = RecordScope.Collection, + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.Collection, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Uto-Aztecan languages"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "azd", Added = new DateOnly(2012, 8, 12), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Eastern Durango Nahuatl"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "azg", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"San Pedro Amuzgos Amuzgo"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "azj", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "az", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"North Azerbaijani"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "azm", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ipalapa Amuzgo"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "azn", Added = new DateOnly(2012, 8, 12), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Western Durango Nahuatl"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "azo", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Awing"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "azt", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Faire Atta"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "azz", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Highland Puebla Nahuatl"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "baa", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Babatana"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bab", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Bainouk-Gunyuño"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bac", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Badui"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bad", Added = new DateOnly(2005, 10, 16), - Scope = RecordScope.Collection, + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.Collection, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Banda languages"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bae", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Baré"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "baf", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Nubaca"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bag", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Tuki"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bah", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Bahamas Creole English"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bai", Added = new DateOnly(2005, 10, 16), - Scope = RecordScope.Collection, + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.Collection, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Bamileke languages"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "baj", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Barakai"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bal", Added = new DateOnly(2005, 10, 16), - Scope = RecordScope.MacroLanguage, + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.MacroLanguage, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Baluchi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ban", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Balinese"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bao", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Waimaha"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bap", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Bantawa"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bar", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Bavarian"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bas", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Basa (Cameroon)"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bat", Added = new DateOnly(2005, 10, 16), - Scope = RecordScope.Collection, + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.Collection, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Baltic languages"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bau", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Bada (Nigeria)"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bav", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Vengo"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "baw", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Bambili-Bambui"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bax", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Bamun"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bay", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Batuley"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "baz", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, Deprecated = new DateOnly(2012, 8, 12), + PreferredValue = null, + Tag = null, Description = [@"Tunen"], Comments = [@"see nvo, tvu"], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bba", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Baatonum"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bbb", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Barai"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bbc", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Batak Toba"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bbd", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Bau"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bbe", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Bangba"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bbf", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Baibai"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bbg", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Barama"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bbh", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Bugan"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bbi", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Barombi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bbj", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ghomálá'"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bbk", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Babanki"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bbl", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Bats"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bbm", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Babango"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bbn", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Uneapa"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bbo", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Northern Bobo Madaré", @"Konabéré"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bbp", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"West Central Banda"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bbq", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Bamali"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bbr", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Girawa"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bbs", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Bakpinka"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bbt", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Mburku"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bbu", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kulung (Nigeria)"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bbv", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Karnai"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bbw", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Baba"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bbx", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Bubia"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bby", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Befang"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bbz", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "ar", Deprecated = new DateOnly(2020, 3, 28), + PreferredValue = null, + Tag = null, Description = [@"Babalia Creole Arabic"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bca", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Central Bai"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bcb", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Bainouk-Samik"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bcc", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "bal", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Southern Balochi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bcd", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"North Babar"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bce", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Bamenyam"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bcf", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Bamu"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bcg", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Baga Pokur"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bch", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Bariai"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bci", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Baoulé"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bcj", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Bardi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bck", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Bunuba"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bcl", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "bik", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Central Bikol"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bcm", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Bannoni"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bcn", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Bali (Nigeria)"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bco", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kaluli"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bcp", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Bali (Democratic Republic of Congo)"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bcq", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Bench"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bcr", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Babine"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bcs", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kohumono"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bct", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Bendi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bcu", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Awad Bing"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bcv", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Shoo-Minda-Nye"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bcw", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Bana"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bcy", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Bacama"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bcz", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Bainouk-Gunyaamolo"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bda", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Bayot"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bdb", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Basap"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bdc", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Emberá-Baudó"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bdd", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Bunama"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bde", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Bade"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bdf", Added = new DateOnly(2010, 3, 11), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Biage"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bdg", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Bonggi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bdh", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Baka (South Sudan)"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bdi", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Burun"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bdj", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Bai (South Sudan)", @"Bai"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bdk", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Budukh"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bdl", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Indonesian Bajau"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bdm", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Buduma"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bdn", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Baldemu"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bdo", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Morom"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bdp", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Bende"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bdq", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Bahnar"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bdr", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"West Coast Bajau"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bds", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Burunge"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bdt", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "gba", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Bokoto"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bdu", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Oroko"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bdv", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Bodo Parja"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bdw", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Baham"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bdx", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Budong-Budong"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bdy", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Bandjalang"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bdz", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Badeshi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bea", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Beaver"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "beb", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Bebele"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bec", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Iceve-Maci"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bed", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Bedoanas"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bee", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Byangsi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bef", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Benabena"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "beg", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Belait"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "beh", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Biali"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bei", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Bekati'"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bej", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Beja", @"Bedawiyet"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bek", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Bebeli"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bem", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Bemba (Zambia)"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "beo", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Beami"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bep", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Besoa"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "beq", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Beembe"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ber", Added = new DateOnly(2005, 10, 16), - Scope = RecordScope.Collection, + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.Collection, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Berber languages"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bes", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Besme"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bet", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Guiberoua Béte"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "beu", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Blagar"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bev", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Daloa Bété"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bew", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Betawi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bex", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Jur Modo"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bey", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Beli (Papua New Guinea)"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bez", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Bena (Tanzania)"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bfa", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Bari"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bfb", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Pauri Bareli"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bfc", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Panyi Bai", @"Northern Bai"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bfd", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Bafut"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bfe", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Betaf", @"Tena"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bff", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Bofi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bfg", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Busang Kayan"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bfh", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Blafe"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bfi", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"British Sign Language"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bfj", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Bafanji"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bfk", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ban Khor Sign Language"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bfl", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Banda-Ndélé"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bfm", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Mmen"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bfn", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Bunak"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bfo", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Malba Birifor"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bfp", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Beba"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bfq", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Badaga"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bfr", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Bazigar"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bfs", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Southern Bai"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bft", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Balti"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bfu", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Gahri"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bfw", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Bondo"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bfx", Added = new DateOnly(2010, 3, 11), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Bantayanon"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bfy", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Bagheli"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bfz", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Mahasu Pahari"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bga", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Gwamhi-Wuri"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bgb", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Bobongko"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bgc", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Haryanvi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bgd", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Rathwi Bareli"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bge", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Bauria"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bgf", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Bangandu"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bgg", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Bugun"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bgi", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Giangan"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bgj", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Bangolan"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bgk", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Bit", @"Buxinhua"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bgl", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Bo (Laos)"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bgm", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, Deprecated = new DateOnly(2016, 5, 30), PreferredValue = "bcg", + Tag = null, Description = [@"Baga Mboteni"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bgn", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "bal", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Western Balochi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bgo", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Baga Koga"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bgp", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "bal", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Eastern Balochi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bgq", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "raj", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Bagri"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bgr", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Bawm Chin"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bgs", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Tagabawa"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bgt", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Bughotu"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bgu", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Mbongno"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bgv", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Warkay-Bipim"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bgw", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Bhatri"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bgx", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Balkan Gagauz Turkish"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bgy", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Benggoi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bgz", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Banggai"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bha", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Bharia"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bhb", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Bhili"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bhc", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Biga"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bhd", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Bhadrawahi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bhe", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Bhaya"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bhf", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Odiai"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bhg", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Binandere"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bhh", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Bukharic"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bhi", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Bhilali"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bhj", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Bahing"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bhk", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "bik", Deprecated = new DateOnly(2010, 3, 11), + PreferredValue = null, + Tag = null, Description = [@"Albay Bicolano"], Comments = [@"see fbl, lbl, rbl, ubl"], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bhl", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Bimin"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bhm", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Bathari"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bhn", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Bohtan Neo-Aramaic"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bho", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Bhojpuri"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bhp", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Bima"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bhq", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Tukang Besi South"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bhr", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "mg", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Bara Malagasy"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bhs", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Buwal"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bht", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Bhattiyali"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bhu", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Bhunjia"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bhv", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Bahau"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bhw", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Biak"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bhx", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Bhalay"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bhy", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Bhele"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bhz", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Bada (Indonesia)"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bia", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Badimaya"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bib", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Bissa", @"Bisa"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bic", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, Deprecated = new DateOnly(2021, 2, 20), PreferredValue = "bir", + Tag = null, Description = [@"Bikaru"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bid", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Bidiyo"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bie", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Bepour"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bif", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Biafada"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "big", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Biangai"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bij", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, Deprecated = new DateOnly(2021, 2, 20), + PreferredValue = null, + Tag = null, Description = [@"Vaghat-Ya-Bijim-Legeri"], Comments = [@"see dkg, jbm, tyy"], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bik", Added = new DateOnly(2005, 10, 16), - Scope = RecordScope.MacroLanguage, + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.MacroLanguage, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Bikol"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bil", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Bile"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bim", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Bimoba"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bin", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Bini", @"Edo"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bio", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Nai"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bip", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Bila"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "biq", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Bipi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bir", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Bisorio"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bit", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Berinomo"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "biu", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Biete"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "biv", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Southern Birifor"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "biw", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kol (Cameroon)"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bix", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Bijori"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "biy", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Birhor"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "biz", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Baloi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bja", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Budza"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bjb", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Banggarla"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bjc", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Bariji"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bjd", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, Deprecated = new DateOnly(2012, 8, 12), PreferredValue = "drl", + Tag = null, Description = [@"Bandjigali"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bje", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Biao-Jiao Mien"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bjf", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Barzani Jewish Neo-Aramaic"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bjg", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Bidyogo"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bjh", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Bahinemo"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bji", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Burji"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bjj", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kanauji"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bjk", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Barok"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bjl", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Bulu (Papua New Guinea)"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bjm", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Bajelani"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bjn", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "ms", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Banjar"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bjo", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Mid-Southern Banda"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bjp", Added = new DateOnly(2013, 9, 10), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Fanamaket"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bjq", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "mg", Deprecated = new DateOnly(2011, 8, 16), + PreferredValue = null, + Tag = null, Description = [@"Southern Betsimisaraka Malagasy"], Comments = [@"see bzc, tkg"], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bjr", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Binumarien"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bjs", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Bajan"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bjt", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Balanta-Ganja"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bju", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Busuu"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bjv", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Bedjond"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bjw", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Bakwé"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bjx", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Banao Itneg"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bjy", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Bayali"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bjz", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Baruga"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bka", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kyak"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bkb", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, Deprecated = new DateOnly(2010, 3, 11), + PreferredValue = null, + Tag = null, Description = [@"Finallig"], Comments = [@"see ebk, obk"], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bkc", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Baka (Cameroon)"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bkd", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Binukid", @"Talaandig"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bkf", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Beeke"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bkg", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Buraka"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bkh", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Bakoko"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bki", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Baki"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bkj", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Pande"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bkk", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Brokskat"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bkl", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Berik"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bkm", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kom (Cameroon)"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bkn", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Bukitan"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bko", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kwa'"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bkp", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Boko (Democratic Republic of Congo)"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bkq", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Bakairí"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bkr", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Bakumpai"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bks", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Northern Sorsoganon"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bkt", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Boloki"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bku", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Buhid"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bkv", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Bekwarra"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bkw", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Bekwel"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bkx", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Baikeno"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bky", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Bokyi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bkz", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Bungku"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bla", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Siksika"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "blb", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Bilua"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "blc", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Bella Coola"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bld", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Bolango"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ble", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Balanta-Kentohe"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "blf", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Buol"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "blg", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, Deprecated = new DateOnly(2021, 2, 20), PreferredValue = "iba", + Tag = null, Description = [@"Balau"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "blh", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kuwaa"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bli", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Bolia"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "blj", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Bolongan"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "blk", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Pa'o Karen", @"Pa'O"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bll", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Biloxi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "blm", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Beli (South Sudan)"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bln", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "bik", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Southern Catanduanes Bikol"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "blo", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Anii"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "blp", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Blablanga"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "blq", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Baluan-Pam"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "blr", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Blang"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bls", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Balaesang"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "blt", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Tai Dam"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "blv", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kibala", @"Bolo"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "blw", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Balangao"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "blx", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Mag-Indi Ayta"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bly", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Notre"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "blz", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Balantak"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bma", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Lame"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bmb", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Bembe"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bmc", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Biem"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bmd", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Baga Manduri"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bme", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Limassa"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bmf", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Bom-Kim"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bmg", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Bamwe"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bmh", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kein"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bmi", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Bagirmi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bmj", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Bote-Majhi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bmk", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ghayavi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bml", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Bomboli"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bmm", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "mg", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Northern Betsimisaraka Malagasy"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bmn", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Bina (Papua New Guinea)"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bmo", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Bambalang"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bmp", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Bulgebi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bmq", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Bomu"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bmr", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Muinane"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bms", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Bilma Kanuri"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bmt", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Biao Mon"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bmu", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Somba-Siawari"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bmv", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Bum"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bmw", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Bomwali"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bmx", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Baimak"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bmy", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, Deprecated = new DateOnly(2015, 2, 12), + PreferredValue = null, + Tag = null, Description = [@"Bemba (Democratic Republic of Congo)"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bmz", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Baramu"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bna", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Bonerate"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bnb", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Bookan"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bnc", Added = new DateOnly(2009, 7, 29), - Scope = RecordScope.MacroLanguage, + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.MacroLanguage, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Bontok"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bnd", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Banda (Indonesia)"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bne", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Bintauna"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bnf", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Masiwang"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bng", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Benga"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bni", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Bangi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bnj", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Eastern Tawbuid"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bnk", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Bierebo"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bnl", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Boon"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bnm", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Batanga"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bnn", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Bunun"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bno", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Bantoanon"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bnp", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Bola"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bnq", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Bantik"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bnr", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Butmas-Tur"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bns", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Bundeli"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bnt", Added = new DateOnly(2005, 10, 16), - Scope = RecordScope.Collection, + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.Collection, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Bantu languages"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bnu", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Bentong"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bnv", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Bonerif", @"Beneraf", @"Edwas"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bnw", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Bisis"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bnx", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Bangubangu"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bny", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Bintulu"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bnz", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Beezen"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "boa", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Bora"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bob", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Aweer"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "boe", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Mundabli"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bof", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Bolon"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bog", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Bamako Sign Language"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "boh", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Boma"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "boi", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Barbareño"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "boj", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Anjam"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bok", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Bonjo"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bol", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Bole"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bom", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Berom"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bon", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Bine"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "boo", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Tiemacèwè Bozo"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bop", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Bonkiman"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "boq", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Bogaya"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bor", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Borôro"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bot", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Bongo"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bou", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Bondei"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bov", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Tuwuli"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bow", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Rema"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "box", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Buamu"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "boy", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Bodo (Central African Republic)"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "boz", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Tiéyaxo Bozo"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bpa", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Daakaka"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bpb", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, Deprecated = new DateOnly(2020, 3, 28), + PreferredValue = null, + Tag = null, Description = [@"Barbacoas"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bpc", Added = new DateOnly(2022, 2, 25), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Mbuk"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bpd", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Banda-Banda"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bpe", Added = new DateOnly(2021, 2, 20), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Bauni"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bpg", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Bonggo"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bph", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Botlikh"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bpi", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Bagupi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bpj", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Binji"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bpk", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Orowe", @"'Ôrôê"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bpl", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Broome Pearling Lugger Pidgin"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bpm", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Biyom"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bpn", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Dzao Min"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bpo", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Anasi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bpp", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kaure"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bpq", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Banda Malay"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bpr", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Koronadal Blaan"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bps", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Sarangani Blaan"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bpt", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Barrow Point"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bpu", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Bongu"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bpv", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Bian Marind"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bpw", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Bo (Papua New Guinea)"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bpx", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Palya Bareli"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bpy", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Bishnupriya"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bpz", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Bilba"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bqa", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Tchumbuli"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bqb", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Bagusa"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bqc", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Boko (Benin)", @"Boo"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bqd", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Bung"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bqf", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Baga Kaloum"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bqg", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Bago-Kusuntu"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bqh", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Baima"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bqi", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Bakhtiari"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bqj", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Bandial"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bqk", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Banda-Mbrès"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bql", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Karian", @"Bilakura"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bqm", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Wumboko"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bqn", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Bulgarian Sign Language"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bqo", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Balo"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bqp", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Busa"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bqq", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Biritai"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bqr", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Burusu"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bqs", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Bosngun"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bqt", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Bamukumbit"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bqu", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Boguru"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bqv", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Koro Wachi", @"Begbere-Ejar"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bqw", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Buru (Nigeria)"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bqx", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Baangi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bqy", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Bengkala Sign Language"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bqz", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Bakaka"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bra", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Braj"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "brb", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Brao", @"Lave"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "brc", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Berbice Creole Dutch"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "brd", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Baraamu"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "brf", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Bira"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "brg", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Baure"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "brh", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Brahui"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bri", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Mokpwe"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "brj", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Bieria"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "brk", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Birked"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "brl", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Birwa"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "brm", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Barambu"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "brn", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Boruca"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bro", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Brokkat"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "brp", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Barapasi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "brq", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Breri"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "brr", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Birao"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "brs", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Baras"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "brt", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Bitare"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bru", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Eastern Bru"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "brv", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Western Bru"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "brw", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Bellari"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "brx", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Bodo (India)"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bry", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Burui"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "brz", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Bilbil"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bsa", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Abinomn"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bsb", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Brunei Bisaya"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bsc", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Bassari", @"Oniyan"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bse", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Wushi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bsf", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Bauchi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bsg", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Bashkardi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bsh", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kati"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bsi", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Bassossi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bsj", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Bangwinji"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bsk", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Burushaski"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bsl", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Basa-Gumna"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bsm", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Busami"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bsn", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Barasana-Eduria"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bso", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Buso"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bsp", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Baga Sitemu"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bsq", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Bassa"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bsr", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Bassa-Kontagora"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bss", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Akoose"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bst", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Basketo"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bsu", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Bahonsuai"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bsv", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Baga Sobané"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bsw", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Baiso"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bsx", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Yangkam"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bsy", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Sabah Bisaya"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bta", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Bata"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "btb", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, Deprecated = new DateOnly(2010, 3, 11), + PreferredValue = null, + Tag = null, Description = [@"Beti (Cameroon)"], Comments = [@"see beb, bum, bxp, eto, ewo, fan, mct"], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "btc", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Bati (Cameroon)"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "btd", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Batak Dairi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bte", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Gamo-Ningi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "btf", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Birgit"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "btg", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Gagnoa Bété"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bth", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Biatah Bidayuh"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bti", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Burate"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "btj", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "ms", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Bacanese Malay"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "btk", Added = new DateOnly(2005, 10, 16), - Scope = RecordScope.Collection, + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.Collection, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Batak languages"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "btl", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, Deprecated = new DateOnly(2016, 5, 30), + PreferredValue = null, + Tag = null, Description = [@"Bhatola"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "btm", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Batak Mandailing"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "btn", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ratagnon"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bto", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "bik", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Rinconada Bikol"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "btp", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Budibud"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "btq", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Batek"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "btr", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Baetora"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bts", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Batak Simalungun"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "btt", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Bete-Bendi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "btu", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Batu"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "btv", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Bateri"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "btw", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Butuanon"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "btx", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Batak Karo"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bty", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Bobot"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "btz", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Batak Alas-Kluet"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bua", Added = new DateOnly(2005, 10, 16), - Scope = RecordScope.MacroLanguage, + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.MacroLanguage, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Buriat"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bub", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Bua"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "buc", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Bushi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bud", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ntcham"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bue", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Beothuk"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "buf", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Bushoong"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bug", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Buginese"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "buh", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Younuo Bunu"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bui", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Bongili"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "buj", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Basa-Gurmana"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "buk", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Bugawac"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bum", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Bulu (Cameroon)"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bun", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Sherbro"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "buo", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Terei"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bup", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Busoa"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "buq", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Brem"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bus", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Bokobaru"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "but", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Bungain"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "buu", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Budu"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "buv", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Bun"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "buw", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Bubi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bux", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Boghom"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "buy", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Bullom So"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "buz", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Bukwen"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bva", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Barein"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bvb", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Bube"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bvc", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Baelelea"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bvd", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Baeggu"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bve", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "ms", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Berau Malay"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bvf", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Boor"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bvg", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Bonkeng"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bvh", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Bure"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bvi", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Belanda Viri"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bvj", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Baan"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bvk", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Bukat"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bvl", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Bolivian Sign Language"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bvm", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Bamunka"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bvn", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Buna"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bvo", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Bolgo"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bvp", Added = new DateOnly(2013, 9, 10), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Bumang"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bvq", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Birri"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bvr", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Burarra"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bvt", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Bati (Indonesia)"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bvu", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "ms", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Bukit Malay"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bvv", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Baniva"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bvw", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Boga"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bvx", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Dibole"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bvy", Added = new DateOnly(2010, 3, 11), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Baybayanon"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bvz", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Bauzi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bwa", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Bwatoo"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bwb", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Namosi-Naitasiri-Serua"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bwc", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Bwile"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bwd", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Bwaidoka"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bwe", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Bwe Karen"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bwf", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Boselewa"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bwg", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Barwe"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bwh", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Bishuo"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bwi", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Baniwa"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bwj", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Láá Láá Bwamu"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bwk", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Bauwaki"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bwl", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Bwela"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bwm", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Biwat"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bwn", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Wunai Bunu"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bwo", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Boro (Ethiopia)", @"Borna (Ethiopia)"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bwp", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Mandobo Bawah"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bwq", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Southern Bobo Madaré"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bwr", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Bura-Pabir"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bws", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Bomboma"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bwt", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Bafaw-Balong"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bwu", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Buli (Ghana)"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bww", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Bwa"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bwx", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Bu-Nao Bunu"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bwy", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Cwi Bwamu"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bwz", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Bwisi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bxa", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Tairaha"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bxb", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Belanda Bor"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bxc", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Molengue"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bxd", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Pela"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bxe", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Birale"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bxf", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Bilur", @"Minigir"], Comments = [@"see also vmg"], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bxg", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Bangala"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bxh", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Buhutu"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bxi", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Pirlatapa"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bxj", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Bayungu"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bxk", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "luy", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Bukusu", @"Lubukusu"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bxl", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Jalkunan"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bxm", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "bua", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Mongolia Buriat"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bxn", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Burduna"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bxo", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Barikanchi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bxp", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Bebil"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bxq", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Beele"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bxr", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "bua", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Russia Buriat"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bxs", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Busam"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bxu", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "bua", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"China Buriat"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bxv", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Berakou"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bxw", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Bankagooma"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bxx", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, Deprecated = new DateOnly(2015, 2, 12), + PreferredValue = null, + Tag = null, Description = [@"Borna (Democratic Republic of Congo)"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bxz", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Binahari"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bya", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Batak"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "byb", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Bikya"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "byc", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ubaghara"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "byd", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Benyadu'"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bye", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Pouye"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "byf", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Bete"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "byg", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Baygo"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "byh", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Bhujel"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "byi", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Buyu"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "byj", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Bina (Nigeria)"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "byk", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Biao"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "byl", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Bayono"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bym", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Bidjara"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "byn", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Bilin", @"Blin"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "byo", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Biyo"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "byp", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Bumaji"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "byq", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Basay"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "byr", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Baruya", @"Yipma"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bys", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Burak"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "byt", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Berti"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "byv", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Medumba"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "byw", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Belhariya"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "byx", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Qaqet"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "byy", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, Deprecated = new DateOnly(2015, 2, 12), + PreferredValue = null, + Tag = null, Description = [@"Buya"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "byz", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Banaro"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bza", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Bandi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bzb", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Andio"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bzc", Added = new DateOnly(2011, 8, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "mg", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Southern Betsimisaraka Malagasy"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bzd", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Bribri"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bze", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Jenaama Bozo"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bzf", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Boikin"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bzg", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Babuza"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bzh", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Mapos Buang"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bzi", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Bisu"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bzj", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Belize Kriol English"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bzk", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Nicaragua Creole English"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bzl", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Boano (Sulawesi)"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bzm", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Bolondo"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bzn", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Boano (Maluku)"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bzo", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Bozaba"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bzp", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kemberano"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bzq", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Buli (Indonesia)"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bzr", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Biri"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bzs", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Brazilian Sign Language"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bzt", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Brithenig"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bzu", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Burmeso"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bzv", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Naami"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bzw", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Basa (Nigeria)"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bzx", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kɛlɛngaxo Bozo"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bzy", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Obanliku"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "bzz", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Evant"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "caa", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Chortí"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "cab", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Garifuna"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "cac", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Chuj"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "cad", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Caddo"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "cae", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Lehar", @"Laalaa"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "caf", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Southern Carrier"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "cag", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Nivaclé"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "cah", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Cahuarano"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "cai", Added = new DateOnly(2005, 10, 16), - Scope = RecordScope.Collection, + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.Collection, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Central American Indian languages"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "caj", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Chané"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "cak", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kaqchikel", @"Cakchiquel"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "cal", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Carolinian"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "cam", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Cemuhî"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "can", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Chambri"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "cao", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Chácobo"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "cap", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Chipaya"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "caq", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Car Nicobarese"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "car", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Galibi Carib"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "cas", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Tsimané"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "cau", Added = new DateOnly(2005, 10, 16), - Scope = RecordScope.Collection, + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.Collection, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Caucasian languages"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "cav", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Cavineña"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "caw", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Callawalla"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "cax", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Chiquitano"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "cay", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Cayuga"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "caz", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Canichana"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "cba", Added = new DateOnly(2009, 7, 29), - Scope = RecordScope.Collection, + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.Collection, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Chibchan languages"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "cbb", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Cabiyarí"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "cbc", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Carapana"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "cbd", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Carijona"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "cbe", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, Deprecated = new DateOnly(2016, 5, 30), + PreferredValue = null, + Tag = null, Description = [@"Chipiajes"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "cbg", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Chimila"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "cbh", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, Deprecated = new DateOnly(2016, 5, 30), + PreferredValue = null, + Tag = null, Description = [@"Cagua"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "cbi", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Chachi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "cbj", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ede Cabe"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "cbk", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Chavacano"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "cbl", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Bualkhaw Chin"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "cbn", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Nyahkur"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "cbo", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Izora"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "cbq", Added = new DateOnly(2015, 2, 12), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Tsucuba", @"Cuba"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "cbr", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Cashibo-Cacataibo"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "cbs", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Cashinahua"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "cbt", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Chayahuita"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "cbu", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Candoshi-Shapra"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "cbv", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Cacua"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "cbw", Added = new DateOnly(2010, 3, 11), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kinabalian"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "cby", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Carabayo"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "cca", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, Deprecated = new DateOnly(2020, 3, 28), + PreferredValue = null, + Tag = null, Description = [@"Cauca"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ccc", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Chamicuro"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ccd", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Cafundo Creole"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "cce", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Chopi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ccg", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Samba Daka"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "cch", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Atsam"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ccj", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kasanga"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ccl", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Cutchi-Swahili"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ccm", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Malaccan Creole Malay"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ccn", Added = new DateOnly(2009, 7, 29), - Scope = RecordScope.Collection, + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.Collection, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"North Caucasian languages"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "cco", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Comaltepec Chinantec"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ccp", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Chakma"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ccq", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, Deprecated = new DateOnly(2012, 8, 12), PreferredValue = "rki", + Tag = null, Description = [@"Chaungtha"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ccr", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Cacaopera"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ccs", Added = new DateOnly(2009, 7, 29), - Scope = RecordScope.Collection, + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.Collection, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"South Caucasian languages"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "cda", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Choni"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "cdc", Added = new DateOnly(2009, 7, 29), - Scope = RecordScope.Collection, + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.Collection, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Chadic languages"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "cdd", Added = new DateOnly(2009, 7, 29), - Scope = RecordScope.Collection, + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.Collection, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Caddoan languages"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "cde", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Chenchu"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "cdf", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Chiru"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "cdg", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, Deprecated = new DateOnly(2020, 3, 28), + PreferredValue = null, + Tag = null, Description = [@"Chamari"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "cdh", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Chambeali"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "cdi", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Chodri"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "cdj", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Churahi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "cdm", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Chepang"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "cdn", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Chaudangsi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "cdo", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "zh", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Min Dong Chinese"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "cdr", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Cinda-Regi-Tiyal"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "cds", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Chadian Sign Language"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "cdy", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Chadong"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "cdz", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Koda"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "cea", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Lower Chehalis"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ceb", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Cebuano"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ceg", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Chamacoco"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "cek", Added = new DateOnly(2012, 8, 12), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Eastern Khumi Chin"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "cel", Added = new DateOnly(2005, 10, 16), - Scope = RecordScope.Collection, + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.Collection, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Celtic languages"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "cen", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Cen"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "cet", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Centúúm"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "cey", Added = new DateOnly(2019, 4, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ekai Chin"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "cfa", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Dijim-Bwilim"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "cfd", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Cara"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "cfg", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Como Karim"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "cfm", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Falam Chin"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "cga", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Changriwa"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "cgc", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kagayanen"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "cgg", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Chiga"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "cgk", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Chocangacakha"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "chb", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Chibcha"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "chc", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Catawba"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "chd", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Highland Oaxaca Chontal"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "chf", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Tabasco Chontal"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "chg", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Chagatai"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "chh", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Chinook"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "chj", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ojitlán Chinantec"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "chk", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Chuukese"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "chl", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Cahuilla"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "chm", Added = new DateOnly(2005, 10, 16), - Scope = RecordScope.MacroLanguage, + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.MacroLanguage, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Mari (Russia)"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "chn", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Chinook jargon"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "cho", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Choctaw"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "chp", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Chipewyan", @"Dene Suline"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "chq", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Quiotepec Chinantec"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "chr", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Cherokee"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "cht", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Cholón"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "chw", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Chuwabu"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "chx", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Chantyal"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "chy", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Cheyenne"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "chz", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ozumacín Chinantec"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "cia", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Cia-Cia"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "cib", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ci Gbe"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "cic", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Chickasaw"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "cid", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Chimariko"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "cie", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Cineni"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "cih", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Chinali"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "cik", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Chitkuli Kinnauri"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "cim", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Cimbrian"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "cin", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Cinta Larga"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "cip", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Chiapanec"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "cir", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Tiri", @"Haméa", @"Méa"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ciw", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "oj", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Chippewa"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ciy", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Chaima"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "cja", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Western Cham"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "cje", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Chru"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "cjh", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Upper Chehalis"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "cji", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Chamalal"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "cjk", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Chokwe"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "cjm", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Eastern Cham"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "cjn", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Chenapian"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "cjo", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ashéninka Pajonal"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "cjp", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Cabécar"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "cjr", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, Deprecated = new DateOnly(2010, 3, 11), PreferredValue = "mom", + Tag = null, Description = [@"Chorotega"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "cjs", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Shor"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "cjv", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Chuave"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "cjy", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "zh", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Jinyu Chinese"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "cka", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, Deprecated = new DateOnly(2012, 8, 12), PreferredValue = "cmr", + Tag = null, Description = [@"Khumi Awa Chin"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ckb", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "ku", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Central Kurdish"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ckh", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Chak"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ckl", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Cibak"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ckm", Added = new DateOnly(2020, 3, 28), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Chakavian"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ckn", Added = new DateOnly(2013, 9, 10), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kaang Chin"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "cko", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Anufo"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ckq", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kajakse"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ckr", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kairak"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "cks", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Tayo"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ckt", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Chukot"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "cku", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Koasati"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ckv", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kavalan"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ckx", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Caka"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "cky", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Cakfem-Mushere"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ckz", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Cakchiquel-Quiché Mixed Language"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "cla", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ron"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "clc", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Chilcotin", @"Tsilhqot’in"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "cld", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "syr", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Chaldean Neo-Aramaic"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "cle", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Lealao Chinantec"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "clh", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Chilisso"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "cli", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Chakali"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "clj", Added = new DateOnly(2012, 8, 12), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Laitu Chin"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "clk", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Idu-Mishmi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "cll", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Chala"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "clm", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Klallam", @"Clallam"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "clo", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Lowland Oaxaca Chontal"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "cls", Added = new DateOnly(2024, 3, 4), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "sa", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Classical Sanskrit"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "clt", Added = new DateOnly(2012, 8, 12), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Lautu Chin"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "clu", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Caluyanun"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "clw", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Chulym"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "cly", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Eastern Highland Chatino"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "cma", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Maa"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "cmc", Added = new DateOnly(2005, 10, 16), - Scope = RecordScope.Collection, + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.Collection, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Chamic languages"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "cme", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Cerma"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "cmg", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Classical Mongolian"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "cmi", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Emberá-Chamí"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "cmk", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, Deprecated = new DateOnly(2010, 3, 11), PreferredValue = "xch", + Tag = null, Description = [@"Chimakum"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "cml", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Campalagian"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "cmm", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Michigamea"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "cmn", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "zh", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Mandarin Chinese"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "cmo", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Central Mnong"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "cmr", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Mro-Khimi Chin"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "cms", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Messapic"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "cmt", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Camtho"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "cna", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Changthang"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "cnb", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Chinbon Chin"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "cnc", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Côông"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "cng", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Northern Qiang"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "cnh", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Hakha Chin", @"Haka Chin"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "cni", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Asháninka"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "cnk", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Khumi Chin"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "cnl", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Lalana Chinantec"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "cno", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Con"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "cnp", Added = new DateOnly(2020, 3, 28), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "zh", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Northern Ping Chinese", @"Northern Pinghua"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "cnq", Added = new DateOnly(2022, 2, 25), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Chung"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "cnr", Added = new DateOnly(2018, 1, 23), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "sh", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Montenegrin"], Comments = [@"see sr for Serbian"], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "cns", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Central Asmat"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "cnt", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Tepetotutla Chinantec"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "cnu", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Chenoua"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "cnw", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ngawn Chin"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "cnx", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Middle Cornish"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "coa", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "ms", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Cocos Islands Malay"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "cob", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Chicomuceltec"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "coc", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Cocopa"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "cod", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Cocama-Cocamilla"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "coe", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Koreguaje"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "cof", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Colorado"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "cog", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Chong"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "coh", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Chonyi-Dzihana-Kauma", @"Chichonyi-Chidzihana-Chikauma"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "coj", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Cochimi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "cok", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Santa Teresa Cora"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "col", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Columbia-Wenatchi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "com", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Comanche"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "con", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Cofán"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "coo", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Comox"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "cop", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Coptic"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "coq", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Coquille"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "cot", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Caquinte"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "cou", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Wamey"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "cov", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Cao Miao"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "cow", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Cowlitz"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "cox", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Nanti"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "coy", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, Deprecated = new DateOnly(2016, 5, 30), PreferredValue = "pij", + Tag = null, Description = [@"Coyaima"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "coz", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Chochotec"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "cpa", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Palantla Chinantec"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "cpb", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ucayali-Yurúa Ashéninka"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "cpc", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ajyíninka Apurucayali"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "cpe", Added = new DateOnly(2005, 10, 16), - Scope = RecordScope.Collection, + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.Collection, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"English-based creoles and pidgins"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "cpf", Added = new DateOnly(2005, 10, 16), - Scope = RecordScope.Collection, + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.Collection, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"French-based creoles and pidgins"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "cpg", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Cappadocian Greek"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "cpi", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Chinese Pidgin English"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "cpn", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Cherepon"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "cpo", Added = new DateOnly(2013, 9, 10), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kpeego"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "cpp", Added = new DateOnly(2005, 10, 16), - Scope = RecordScope.Collection, + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.Collection, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Portuguese-based creoles and pidgins"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "cps", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Capiznon"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "cpu", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Pichis Ashéninka"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "cpx", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "zh", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Pu-Xian Chinese"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "cpy", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"South Ucayali Ashéninka"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "cqd", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "hmn", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Chuanqiandian Cluster Miao"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "cqu", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "qu", Deprecated = new DateOnly(2016, 5, 30), PreferredValue = "quh", + Tag = null, Description = [@"Chilean Quechua"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "cra", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Chara"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "crb", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Island Carib"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "crc", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Lonwolwol"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "crd", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Coeur d'Alene"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "crf", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Caramanta"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "crg", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Michif"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "crh", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Crimean Tatar", @"Crimean Turkish"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "cri", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Sãotomense"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "crj", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "cr", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Southern East Cree"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "crk", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "cr", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Plains Cree"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "crl", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "cr", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Northern East Cree"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "crm", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "cr", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Moose Cree"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "crn", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"El Nayar Cora"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "cro", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Crow"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "crp", Added = new DateOnly(2005, 10, 16), - Scope = RecordScope.Collection, + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.Collection, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Creoles and pidgins"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "crq", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Iyo'wujwa Chorote"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "crr", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Carolina Algonquian"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "crs", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Seselwa Creole French"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "crt", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Iyojwa'ja Chorote"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "crv", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Chaura"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "crw", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Chrau"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "crx", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Carrier"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "cry", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Cori"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "crz", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Cruzeño"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "csa", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Chiltepec Chinantec"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "csb", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kashubian"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "csc", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [ @"Catalan Sign Language", @@ -14992,5315 +24405,8745 @@ public static Rfc5646Data Create() => }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "csd", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Chiangmai Sign Language"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "cse", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Czech Sign Language"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "csf", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Cuba Sign Language"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "csg", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Chilean Sign Language"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "csh", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Asho Chin"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "csi", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Coast Miwok"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "csj", Added = new DateOnly(2013, 9, 10), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Songlai Chin"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "csk", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Jola-Kasa"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "csl", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Chinese Sign Language"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "csm", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Central Sierra Miwok"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "csn", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Colombian Sign Language"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "cso", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Sochiapam Chinantec", @"Sochiapan Chinantec"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "csp", Added = new DateOnly(2020, 3, 28), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "zh", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Southern Ping Chinese", @"Southern Pinghua"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "csq", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Croatia Sign Language"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "csr", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Costa Rican Sign Language"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "css", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Southern Ohlone"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "cst", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Northern Ohlone"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "csu", Added = new DateOnly(2009, 7, 29), - Scope = RecordScope.Collection, + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.Collection, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Central Sudanic languages"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "csv", Added = new DateOnly(2012, 8, 12), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Sumtu Chin"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "csw", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "cr", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Swampy Cree"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "csx", Added = new DateOnly(2021, 2, 20), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Cambodian Sign Language"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "csy", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Siyin Chin"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "csz", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Coos"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "cta", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Tataltepec Chatino"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ctc", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Chetco"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ctd", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Tedim Chin"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "cte", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Tepinapa Chinantec"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ctg", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Chittagonian"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "cth", Added = new DateOnly(2012, 8, 12), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Thaiphum Chin"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ctl", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Tlacoatzintepec Chinantec"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ctm", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Chitimacha"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ctn", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Chhintange"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "cto", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Emberá-Catío"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ctp", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Western Highland Chatino"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "cts", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "bik", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Northern Catanduanes Bikol"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ctt", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Wayanad Chetti"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ctu", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Chol"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "cty", Added = new DateOnly(2021, 2, 20), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Moundadan Chetty"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ctz", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Zacatepec Chatino"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "cua", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Cua"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "cub", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Cubeo"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "cuc", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Usila Chinantec"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "cug", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, Deprecated = new DateOnly(2022, 2, 25), + PreferredValue = null, + Tag = null, Description = [@"Chungmboko", @"Cung"], Comments = [@"see bpc, cnq"], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "cuh", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Chuka", @"Gichuka"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "cui", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Cuiba"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "cuj", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Mashco Piro"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "cuk", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"San Blas Kuna"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "cul", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Culina", @"Kulina"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "cum", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, Deprecated = new DateOnly(2016, 5, 30), + PreferredValue = null, + Tag = null, Description = [@"Cumeral"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "cuo", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Cumanagoto"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "cup", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Cupeño"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "cuq", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Cun"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "cur", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Chhulung"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "cus", Added = new DateOnly(2005, 10, 16), - Scope = RecordScope.Collection, + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.Collection, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Cushitic languages"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "cut", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Teutila Cuicatec"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "cuu", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Tai Ya"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "cuv", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Cuvok"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "cuw", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Chukwa"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "cux", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Tepeuxila Cuicatec"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "cuy", Added = new DateOnly(2018, 3, 8), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Cuitlatec"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "cvg", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Chug"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "cvn", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Valle Nacional Chinantec"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "cwa", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kabwa"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "cwb", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Maindo"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "cwd", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "cr", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Woods Cree"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "cwe", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kwere"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "cwg", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Chewong", @"Cheq Wong"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "cwt", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kuwaataay"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "cxh", Added = new DateOnly(2023, 3, 17), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Cha'ari"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "cya", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Nopala Chatino"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "cyb", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Cayubaba"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "cyo", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Cuyonon"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "czh", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "zh", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Huizhou Chinese"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "czk", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Knaanic"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "czn", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Zenzontepec Chatino"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "czo", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "zh", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Min Zhong Chinese"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "czt", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Zotung Chin"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "daa", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Dangaléat"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "dac", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Dambi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "dad", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Marik"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "dae", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Duupa"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "daf", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, Deprecated = new DateOnly(2013, 9, 10), + PreferredValue = null, + Tag = null, Description = [@"Dan"], Comments = [@"see dnj, lda"], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "dag", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Dagbani"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "dah", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Gwahatike"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "dai", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Day"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "daj", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Dar Fur Daju"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "dak", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Dakota"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "dal", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Dahalo"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "dam", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Damakawa"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "dao", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Daai Chin"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "dap", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, Deprecated = new DateOnly(2012, 8, 12), + PreferredValue = null, + Tag = null, Description = [@"Nisi (India)"], Comments = [@"see njz, tgj"], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "daq", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Dandami Maria"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "dar", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Dargwa"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "das", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Daho-Doo"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "dau", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Dar Sila Daju"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "dav", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Taita", @"Dawida"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "daw", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Davawenyo"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "dax", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Dayi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "day", Added = new DateOnly(2005, 10, 16), - Scope = RecordScope.Collection, + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.Collection, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Land Dayak languages"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "daz", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Moi-Wadea", @"Dao"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "dba", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Bangime"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "dbb", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Deno"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "dbd", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Dadiya"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "dbe", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Dabe"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "dbf", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Edopi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "dbg", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Dogul Dom Dogon"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "dbi", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Doka"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "dbj", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ida'an"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "dbl", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Dyirbal"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "dbm", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Duguri"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "dbn", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Duriankere"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "dbo", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Dulbu"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "dbp", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Duwai"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "dbq", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Daba"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "dbr", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Dabarre"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "dbt", Added = new DateOnly(2012, 8, 12), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ben Tey Dogon"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "dbu", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Bondum Dom Dogon"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "dbv", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Dungu"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "dbw", Added = new DateOnly(2012, 8, 12), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Bankan Tey Dogon"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "dby", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Dibiyaso"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "dcc", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Deccan"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "dcr", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Negerhollands"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "dda", Added = new DateOnly(2012, 8, 12), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Dadi Dadi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ddd", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Dongotono"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "dde", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Doondo"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ddg", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Fataluku"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ddi", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"West Goodenough"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ddj", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Jaru"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ddn", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Dendi (Benin)"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ddo", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Dido"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ddr", Added = new DateOnly(2012, 8, 12), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Dhudhuroa"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "dds", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Donno So Dogon"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ddw", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Dawera-Daweloor"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "dec", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Dagik"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ded", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Dedua"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "dee", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Dewoin"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "def", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Dezfuli"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "deg", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Degema"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "deh", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Dehwari"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "dei", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Demisa"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "dek", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, Deprecated = new DateOnly(2024, 12, 12), PreferredValue = "sqm", + Tag = null, Description = [@"Dek"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "del", Added = new DateOnly(2005, 10, 16), - Scope = RecordScope.MacroLanguage, + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.MacroLanguage, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Delaware"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "dem", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Dem"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "den", Added = new DateOnly(2005, 10, 16), - Scope = RecordScope.MacroLanguage, + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.MacroLanguage, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Slave (Athapascan)"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "dep", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Pidgin Delaware"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "deq", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Dendi (Central African Republic)"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "der", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Deori"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "des", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Desano"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "dev", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Domung"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "dez", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Dengese"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "dga", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Southern Dagaare"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "dgb", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Bunoge Dogon"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "dgc", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Casiguran Dumagat Agta"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "dgd", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Dagaari Dioula"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "dge", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Degenan"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "dgg", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Doga"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "dgh", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Dghwede"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "dgi", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Northern Dagara"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "dgk", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Dagba"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "dgl", Added = new DateOnly(2012, 8, 12), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Andaandi", @"Dongolawi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "dgn", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Dagoman"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "dgo", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "doi", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Dogri (individual language)"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "dgr", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Tlicho", @"Dogrib", @"Tłı̨chǫ"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "dgs", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Dogoso"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "dgt", Added = new DateOnly(2012, 8, 12), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ndra'ngith"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "dgu", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, Deprecated = new DateOnly(2020, 3, 28), + PreferredValue = null, + Tag = null, Description = [@"Degaru"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "dgw", Added = new DateOnly(2012, 8, 12), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Daungwurrung"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "dgx", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Doghoro"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "dgz", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Daga"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "dha", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, Deprecated = new DateOnly(2011, 8, 16), + PreferredValue = null, + Tag = null, Description = [@"Dhanwar (India)"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "dhd", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "mwr", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Dhundari"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "dhg", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Dhangu-Djangu", @"Dhangu", @"Djangu"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "dhi", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Dhimal"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "dhl", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Dhalandji"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "dhm", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Zemba"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "dhn", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Dhanki"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "dho", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Dhodia"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "dhr", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Dhargari"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "dhs", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Dhaiso"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "dhu", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Dhurga"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "dhv", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Dehu", @"Drehu"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "dhw", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Dhanwar (Nepal)"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "dhx", Added = new DateOnly(2013, 9, 10), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Dhungaloo"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "dia", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Dia"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "dib", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "din", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"South Central Dinka"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "dic", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Lakota Dida"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "did", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Didinga"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "dif", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Dieri", @"Diyari"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "dig", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Digo", @"Chidigo"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "dih", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kumiai"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "dii", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Dimbong"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "dij", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Dai"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "dik", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "din", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Southwestern Dinka"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "dil", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Dilling"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "dim", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Dime"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "din", Added = new DateOnly(2005, 10, 16), - Scope = RecordScope.MacroLanguage, + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.MacroLanguage, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Dinka"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "dio", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Dibo"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "dip", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "din", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Northeastern Dinka"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "diq", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "zza", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Dimli (individual language)"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "dir", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Dirim"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "dis", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Dimasa"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "dit", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, Deprecated = new DateOnly(2019, 4, 29), PreferredValue = "dif", + Tag = null, Description = [@"Dirari"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "diu", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Diriku"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "diw", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "din", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Northwestern Dinka"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "dix", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Dixon Reef"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "diy", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Diuwe"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "diz", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ding"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "dja", Added = new DateOnly(2012, 8, 12), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Djadjawurrung"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "djb", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Djinba"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "djc", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Dar Daju Daju"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "djd", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Djamindjung", @"Ngaliwurru"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "dje", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Zarma"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "djf", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Djangun"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "dji", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Djinang"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "djj", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Djeebbana"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "djk", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Eastern Maroon Creole", @"Businenge Tongo", @"Nenge"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "djl", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, Deprecated = new DateOnly(2013, 9, 10), + PreferredValue = null, + Tag = null, Description = [@"Djiwarli"], Comments = [@"see dze, iin"], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "djm", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Jamsay Dogon"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "djn", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Jawoyn", @"Djauan"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "djo", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Jangkang"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "djr", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Djambarrpuyngu"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "dju", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kapriman"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "djw", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Djawi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "dka", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Dakpakha"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "dkg", Added = new DateOnly(2021, 2, 20), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kadung"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "dkk", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Dakka"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "dkl", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, Deprecated = new DateOnly(2011, 8, 16), + PreferredValue = null, + Tag = null, Description = [@"Kolum So Dogon"], Comments = [@"see aqd, dmb"], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "dkr", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kuijau"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "dks", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "din", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Southeastern Dinka"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "dkx", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Mazagway"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "dlg", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Dolgan"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "dlk", Added = new DateOnly(2013, 9, 10), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Dahalik"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "dlm", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Dalmatian"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "dln", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Darlong"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "dma", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Duma"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "dmb", Added = new DateOnly(2011, 8, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Mombo Dogon"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "dmc", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Gavak"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "dmd", Added = new DateOnly(2012, 8, 12), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Madhi Madhi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "dme", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Dugwor"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "dmf", Added = new DateOnly(2020, 3, 28), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Medefaidrin"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "dmg", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Upper Kinabatangan"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "dmk", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Domaaki"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "dml", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Dameli"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "dmm", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Dama"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "dmn", Added = new DateOnly(2009, 7, 29), - Scope = RecordScope.Collection, + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.Collection, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Mande languages"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "dmo", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kemedzung"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "dmr", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"East Damar"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "dms", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Dampelas"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "dmu", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Dubu", @"Tebi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "dmv", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Dumpas"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "dmw", Added = new DateOnly(2013, 9, 10), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Mudburra"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "dmx", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Dema"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "dmy", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Demta", @"Sowari"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "dna", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Upper Grand Valley Dani"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "dnd", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Daonda"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "dne", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ndendeule"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "dng", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Dungan"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "dni", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Lower Grand Valley Dani"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "dnj", Added = new DateOnly(2013, 9, 10), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Dan"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "dnk", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Dengka"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "dnn", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Dzùùngoo"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "dno", Added = new DateOnly(2018, 10, 28), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ndrulo", @"Northern Lendu"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "dnr", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Danaru"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "dnt", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Mid Grand Valley Dani"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "dnu", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Danau"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "dnv", Added = new DateOnly(2012, 8, 12), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Danu"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "dnw", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Western Dani"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "dny", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Dení"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "doa", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Dom"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "dob", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Dobu"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "doc", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Northern Dong"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "doe", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Doe"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "dof", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Domu"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "doh", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Dong"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "doi", Added = new DateOnly(2005, 10, 16), - Scope = RecordScope.MacroLanguage, + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.MacroLanguage, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Dogri (macrolanguage)"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "dok", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Dondo"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "dol", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Doso"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "don", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Toura (Papua New Guinea)"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "doo", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Dongo"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "dop", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Lukpa"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "doq", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Dominican Sign Language"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "dor", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Dori'o"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "dos", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Dogosé"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "dot", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Dass"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "dov", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Dombe"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "dow", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Doyayo"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "dox", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Bussa"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "doy", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Dompo"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "doz", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Dorze"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "dpp", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Papar"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "dra", Added = new DateOnly(2005, 10, 16), - Scope = RecordScope.Collection, + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.Collection, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Dravidian languages"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "drb", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Dair"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "drc", Added = new DateOnly(2011, 8, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Minderico"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "drd", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Darmiya"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "dre", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Dolpo"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "drg", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Rungus"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "drh", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, Deprecated = new DateOnly(2010, 3, 11), PreferredValue = "khk", + Tag = null, Description = [@"Darkhat"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "dri", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"C'Lela"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "drl", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Paakantyi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "drn", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"West Damar"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "dro", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Daro-Matu Melanau"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "drq", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Dura"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "drr", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, Deprecated = new DateOnly(2020, 3, 28), PreferredValue = "kzk", + Tag = null, Description = [@"Dororo"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "drs", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Gedeo"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "drt", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Drents"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "dru", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Rukai"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "drw", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, Deprecated = new DateOnly(2010, 3, 11), PreferredValue = "prs", + Tag = null, Description = [@"Darwazi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "dry", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Darai"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "dsb", Added = new DateOnly(2005, 10, 16), SuppressScript = "Latn", + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Lower Sorbian"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "dse", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Dutch Sign Language"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "dsh", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Daasanach"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "dsi", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Disa"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "dsk", Added = new DateOnly(2023, 3, 17), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Dokshi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "dsl", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Danish Sign Language"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "dsn", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Dusner"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "dso", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Desiya"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "dsq", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Tadaksahak"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "dsz", Added = new DateOnly(2022, 2, 25), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Mardin Sign Language"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "dta", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Daur"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "dtb", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Labuk-Kinabatangan Kadazan"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "dtd", Added = new DateOnly(2011, 8, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ditidaht"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "dth", Added = new DateOnly(2012, 8, 12), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Adithinngithigh"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "dti", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ana Tinga Dogon"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "dtk", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Tene Kan Dogon"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "dtm", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Tomo Kan Dogon"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "dtn", Added = new DateOnly(2016, 5, 30), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Daatsʼíin"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "dto", Added = new DateOnly(2012, 8, 12), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Tommo So Dogon"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "dtp", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kadazan Dusun", @"Central Dusun"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "dtr", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Lotud"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "dts", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Toro So Dogon"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "dtt", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Toro Tegu Dogon"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "dtu", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Tebul Ure Dogon"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "dty", Added = new DateOnly(2012, 8, 12), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "ne", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Dotyali"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "dua", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Duala"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "dub", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Dubli"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "duc", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Duna"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "dud", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, Deprecated = new DateOnly(2019, 4, 16), + PreferredValue = null, + Tag = null, Description = [@"Hun-Saare"], Comments = [@"see uth, uss"], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "due", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Umiray Dumaget Agta"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "duf", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Dumbea", @"Drubea"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "dug", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Duruma", @"Chiduruma"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "duh", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Dungra Bhil"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "dui", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Dumun"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "duj", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, Deprecated = new DateOnly(2016, 5, 30), + PreferredValue = null, + Tag = null, Description = [@"Dhuwal"], Comments = [@"see dwu, dwy"], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "duk", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Uyajitaya"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "dul", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Alabat Island Agta"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "dum", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Middle Dutch (ca. 1050-1350)"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "dun", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Dusun Deyah"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "duo", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Dupaninan Agta"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "dup", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "ms", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Duano"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "duq", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Dusun Malang"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "dur", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Dii"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "dus", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Dumi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "duu", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Drung"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "duv", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Duvle"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "duw", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Dusun Witu"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "dux", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Duungooma"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "duy", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Dicamay Agta"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "duz", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Duli-Gey"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "dva", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Duau"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "dwa", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Diri"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "dwk", Added = new DateOnly(2020, 3, 28), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Dawik Kui"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "dwl", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, Deprecated = new DateOnly(2012, 8, 12), + PreferredValue = null, + Tag = null, Description = [@"Walo Kumbe Dogon"], Comments = [@"see dbt, dbw"], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "dwr", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Dawro"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "dws", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Dutton World Speedwords"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "dwu", Added = new DateOnly(2016, 5, 30), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Dhuwal"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "dww", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Dawawa"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "dwy", Added = new DateOnly(2016, 5, 30), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Dhuwaya"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "dwz", Added = new DateOnly(2018, 10, 28), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Dewas Rai"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "dya", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Dyan"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "dyb", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Dyaberdyaber"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "dyd", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Dyugun"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "dyg", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Villa Viciosa Agta"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "dyi", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Djimini Senoufo"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "dym", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Yanda Dom Dogon"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "dyn", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Dyangadi", @"Dhanggatti"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "dyo", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Jola-Fonyi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "dyr", Added = new DateOnly(2023, 3, 17), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Dyarim"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "dyu", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Dyula"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "dyy", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Djabugay", @"Dyaabugay"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "dza", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Tunzu"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "dzd", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Daza"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "dze", Added = new DateOnly(2013, 9, 10), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Djiwarli"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "dzg", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Dazaga"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "dzl", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Dzalakha"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "dzn", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Dzando"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "eaa", Added = new DateOnly(2013, 9, 10), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Karenggapa"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ebc", Added = new DateOnly(2020, 3, 28), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Beginci"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ebg", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ebughu"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ebk", Added = new DateOnly(2010, 3, 11), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "bnc", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Eastern Bontok"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ebo", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Teke-Ebo"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ebr", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ebrié"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ebu", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Embu", @"Kiembu"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ecr", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Eteocretan"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ecs", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ecuadorian Sign Language"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ecy", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Eteocypriot"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "eee", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"E"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "efa", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Efai"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "efe", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Efe"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "efi", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Efik"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ega", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ega"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "egl", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Emilian"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "egm", Added = new DateOnly(2022, 2, 25), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Benamanga"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ego", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Eggon"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "egx", Added = new DateOnly(2009, 7, 29), - Scope = RecordScope.Collection, + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.Collection, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Egyptian languages"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "egy", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Egyptian (Ancient)"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ehs", Added = new DateOnly(2021, 2, 20), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Miyakubo Sign Language"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ehu", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ehueun"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "eip", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Eipomek"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "eit", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Eitiep"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "eiv", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Askopan"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "eja", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ejamat"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "eka", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ekajuk"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ekc", Added = new DateOnly(2013, 9, 10), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, Deprecated = new DateOnly(2020, 3, 28), + PreferredValue = null, + Tag = null, Description = [@"Eastern Karnic"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "eke", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ekit"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ekg", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ekari"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "eki", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Eki"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ekk", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "et", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Standard Estonian"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ekl", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kol (Bangladesh)", @"Kol"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ekm", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Elip"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "eko", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Koti"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ekp", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ekpeye"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ekr", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Yace"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "eky", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Eastern Kayah"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ele", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Elepi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "elh", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"El Hugeirat"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "eli", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Nding"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "elk", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Elkei"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "elm", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Eleme"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "elo", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"El Molo"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "elp", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, Deprecated = new DateOnly(2012, 8, 12), + PreferredValue = null, + Tag = null, Description = [@"Elpaputih"], Comments = [@"see amq, plh"], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "elu", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Elu"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "elx", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Elamite"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ema", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Emai-Iuleha-Ora"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "emb", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Embaloh"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "eme", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Emerillon"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "emg", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Eastern Meohang"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "emi", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Mussau-Emira"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "emk", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "man", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Eastern Maninkakan"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "emm", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Mamulique"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "emn", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Eman"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "emo", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, Deprecated = new DateOnly(2014, 2, 28), + PreferredValue = null, + Tag = null, Description = [@"Emok"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "emp", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Northern Emberá"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "emq", Added = new DateOnly(2021, 2, 20), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Eastern Minyag"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ems", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Pacific Gulf Yupik"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "emu", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Eastern Muria"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "emw", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Emplawas"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "emx", Added = new DateOnly(2010, 3, 11), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Erromintxela"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "emy", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Epigraphic Mayan"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "emz", Added = new DateOnly(2021, 2, 20), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Mbessa"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ena", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Apali"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "enb", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "kln", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Markweeta"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "enc", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"En"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "end", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ende"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "enf", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Forest Enets"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "enh", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Tundra Enets"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "enl", Added = new DateOnly(2014, 2, 28), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Enlhet"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "enm", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Middle English (1100-1500)"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "enn", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Engenni"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "eno", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Enggano"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "enq", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Enga"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "enr", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Emumu", @"Emem"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "enu", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Enu"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "env", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Enwan (Edo State)"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "enw", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Enwan (Akwa Ibom State)"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "enx", Added = new DateOnly(2014, 2, 28), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Enxet"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "eot", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Beti (Côte d'Ivoire)"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "epi", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Epie"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "era", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Eravallan"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "erg", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Sie"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "erh", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Eruwa"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "eri", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ogea"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "erk", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"South Efate"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ero", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Horpa"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "err", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Erre"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ers", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ersu"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ert", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Eritai"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "erw", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Erokwanas"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ese", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ese Ejja"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "esg", Added = new DateOnly(2016, 5, 30), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "gon", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Aheri Gondi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "esh", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Eshtehardi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "esi", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "ik", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"North Alaskan Inupiatun"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "esk", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "ik", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Northwest Alaska Inupiatun"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "esl", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Egypt Sign Language"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "esm", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Esuma"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "esn", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Salvadoran Sign Language"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "eso", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Estonian Sign Language"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "esq", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Esselen"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ess", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Central Siberian Yupik"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "esu", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Central Yupik"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "esx", Added = new DateOnly(2009, 7, 29), - Scope = RecordScope.Collection, + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.Collection, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Eskimo-Aleut languages"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "esy", Added = new DateOnly(2014, 4, 6), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Eskayan"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "etb", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Etebi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "etc", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Etchemin"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "eth", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ethiopian Sign Language"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "etn", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Eton (Vanuatu)"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "eto", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Eton (Cameroon)"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "etr", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Edolo"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ets", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Yekhee"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ett", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Etruscan"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "etu", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ejagham"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "etx", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Eten"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "etz", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Semimi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "eud", Added = new DateOnly(2023, 3, 17), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Eudeve"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "euq", Added = new DateOnly(2009, 7, 29), - Scope = RecordScope.Collection, + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.Collection, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Basque (family)"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "eve", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Even"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "evh", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Uvbie"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "evn", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Evenki"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ewo", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ewondo"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ext", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Extremaduran"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "eya", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Eyak"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "eyo", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "kln", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Keiyo"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "eza", Added = new DateOnly(2013, 9, 10), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ezaa"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "eze", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Uzekwe"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "faa", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Fasu"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "fab", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Fa d'Ambu"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "fad", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Wagi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "faf", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Fagani"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "fag", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Finongan"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "fah", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Baissa Fali"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "fai", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Faiwol"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "faj", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Faita"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "fak", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Fang (Cameroon)"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "fal", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"South Fali"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "fam", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Fam"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "fan", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Fang (Equatorial Guinea)"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "fap", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Paloor"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "far", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Fataleka"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "fat", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "ak", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Fanti"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "fau", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Fayu"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "fax", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Fala"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "fay", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Southwestern Fars"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "faz", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Northwestern Fars"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "fbl", Added = new DateOnly(2010, 3, 11), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "bik", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"West Albay Bikol"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "fcs", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Quebec Sign Language"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "fer", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Feroge"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ffi", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Foia Foia"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ffm", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "ff", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Maasina Fulfulde"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "fgr", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Fongoro"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "fia", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Nobiin"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "fie", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Fyer"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "fif", Added = new DateOnly(2020, 6, 8), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Faifi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "fil", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Filipino", @"Pilipino"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "fip", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Fipa"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "fir", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Firan"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "fit", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Tornedalen Finnish", @"Meänkieli"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "fiu", Added = new DateOnly(2005, 10, 16), - Scope = RecordScope.Collection, + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.Collection, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Finno-Ugrian languages"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "fiw", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Fiwaga"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "fkk", Added = new DateOnly(2012, 8, 12), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kirya-Konzəl"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "fkv", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kven Finnish"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "fla", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kalispel-Pend d'Oreille"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "flh", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Foau"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "fli", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Fali"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "fll", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"North Fali"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "fln", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Flinders Island"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "flr", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Fuliiru"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "fly", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Flaaitaal", @"Tsotsitaal"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "fmp", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Fe'fe'"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "fmu", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Far Western Muria"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "fnb", Added = new DateOnly(2016, 5, 30), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Fanbak"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "fng", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Fanagalo"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "fni", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Fania"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "fod", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Foodo"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "foi", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Foi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "fom", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Foma"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "fon", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Fon"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "for", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Fore"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "fos", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Siraya"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "fox", Added = new DateOnly(2009, 7, 29), - Scope = RecordScope.Collection, + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.Collection, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Formosan languages"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "fpe", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Fernando Po Creole English"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "fqs", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Fas"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "frc", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Cajun French"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "frd", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Fordata"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "frk", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Frankish"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "frm", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Middle French (ca. 1400-1600)"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "fro", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Old French (842-ca. 1400)"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "frp", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Arpitan", @"Francoprovençal"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "frq", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Forak"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "frr", Added = new DateOnly(2006, 3, 8), SuppressScript = "Latn", + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Northern Frisian"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "frs", Added = new DateOnly(2006, 3, 8), SuppressScript = "Latn", + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Eastern Frisian"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "frt", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Fortsenal"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "fse", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Finnish Sign Language"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "fsl", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"French Sign Language"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "fss", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [ @"Finland-Swedish Sign Language", @@ -20312,16592 +33155,27315 @@ public static Rfc5646Data Create() => }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "fub", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "ff", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Adamawa Fulfulde"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "fuc", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "ff", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Pulaar"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "fud", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"East Futuna"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "fue", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "ff", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Borgu Fulfulde"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "fuf", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "ff", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Pular"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "fuh", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "ff", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Western Niger Fulfulde"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "fui", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "ff", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Bagirmi Fulfulde"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "fuj", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ko"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "fum", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Fum"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "fun", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Fulniô"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "fuq", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "ff", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Central-Eastern Niger Fulfulde"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "fur", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Friulian"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "fut", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Futuna-Aniwa"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "fuu", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Furu"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "fuv", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "ff", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Nigerian Fulfulde"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "fuy", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Fuyug"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "fvr", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Fur"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "fwa", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Fwâi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "fwe", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Fwe"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "gaa", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ga"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "gab", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Gabri"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "gac", Added = new DateOnly(2010, 3, 11), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Mixed Great Andamanese"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "gad", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Gaddang"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "gae", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Guarequena"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "gaf", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Gende"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "gag", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Gagauz"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "gah", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Alekano"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "gai", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Borei"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "gaj", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Gadsup"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "gak", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Gamkonora"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "gal", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Galolen"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "gam", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kandawo"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "gan", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "zh", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Gan Chinese"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "gao", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Gants"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "gap", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Gal"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "gaq", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Gata'"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "gar", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Galeya"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "gas", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Adiwasi Garasia"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "gat", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kenati"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "gau", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Mudhili Gadaba"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "gav", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, Deprecated = new DateOnly(2010, 3, 11), PreferredValue = "dev", + Tag = null, Description = [@"Gabutamon"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "gaw", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Nobonob"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "gax", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "om", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Borana-Arsi-Guji Oromo"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "gay", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Gayo"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "gaz", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "om", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"West Central Oromo"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "gba", Added = new DateOnly(2005, 10, 16), - Scope = RecordScope.MacroLanguage, + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.MacroLanguage, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Gbaya (Central African Republic)"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "gbb", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kaytetye"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "gbc", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, Deprecated = new DateOnly(2012, 8, 12), + PreferredValue = null, + Tag = null, Description = [@"Garawa"], Comments = [@"see wny, wrk"], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "gbd", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Karajarri"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "gbe", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Niksek"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "gbf", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Gaikundi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "gbg", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Gbanziri"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "gbh", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Defi Gbe"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "gbi", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Galela"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "gbj", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Bodo Gadaba"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "gbk", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Gaddi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "gbl", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Gamit"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "gbm", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Garhwali"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "gbn", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Mo'da"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "gbo", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "grb", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Northern Grebo"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "gbp", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "gba", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Gbaya-Bossangoa"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "gbq", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "gba", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Gbaya-Bozoum"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "gbr", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Gbagyi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "gbs", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Gbesi Gbe"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "gbu", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Gagadu"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "gbv", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Gbanu"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "gbw", Added = new DateOnly(2013, 9, 10), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Gabi-Gabi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "gbx", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Eastern Xwla Gbe"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "gby", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Gbari"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "gbz", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Zoroastrian Dari"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "gcc", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Mali"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "gcd", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ganggalida"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "gce", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Galice"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "gcf", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Guadeloupean Creole French"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "gcl", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Grenadian Creole English"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "gcn", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Gaina"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "gcr", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Guianese Creole French"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "gct", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Colonia Tovar German"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "gda", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "raj", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Gade Lohar"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "gdb", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Pottangi Ollar Gadaba"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "gdc", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Gugu Badhun"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "gdd", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Gedaged"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "gde", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Gude"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "gdf", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Guduf-Gava"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "gdg", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ga'dang"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "gdh", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Gadjerawang", @"Gajirrabeng"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "gdi", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Gundi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "gdj", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Gurdjar"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "gdk", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Gadang"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "gdl", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Dirasha"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "gdm", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Laal"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "gdn", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Umanakaina"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "gdo", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ghodoberi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "gdq", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Mehri"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "gdr", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Wipi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "gds", Added = new DateOnly(2012, 8, 12), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ghandruk Sign Language"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "gdt", Added = new DateOnly(2013, 9, 10), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kungardutyi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "gdu", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Gudu"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "gdx", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Godwari"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "gea", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Geruma"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "geb", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kire"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "gec", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "grb", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Gboloo Grebo"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ged", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Gade"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "gef", Added = new DateOnly(2020, 3, 28), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Gerai"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "geg", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Gengle"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "geh", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Hutterite German", @"Hutterisch"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "gei", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Gebe"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "gej", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Gen"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "gek", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ywom"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "gel", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"ut-Ma'in"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "gem", Added = new DateOnly(2005, 10, 16), - Scope = RecordScope.Collection, + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.Collection, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Germanic languages"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "geq", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Geme"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ges", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Geser-Gorom"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "gev", Added = new DateOnly(2014, 2, 28), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Eviya"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "gew", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Gera"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "gex", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Garre"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "gey", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Enya"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "gez", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Geez"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "gfk", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Patpatar"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "gft", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Gafat"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "gfx", Added = new DateOnly(2012, 8, 12), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, Deprecated = new DateOnly(2015, 2, 12), PreferredValue = "vaj", + Tag = null, Description = [@"Mangetti Dune ǃXung"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "gga", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Gao"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ggb", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Gbii"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ggd", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Gugadj"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "gge", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Gurr-goni"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ggg", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Gurgula"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ggk", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kungarakany"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ggl", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ganglau"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ggn", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, Deprecated = new DateOnly(2016, 5, 30), PreferredValue = "gvr", + Tag = null, Description = [@"Eastern Gurung"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ggo", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, Deprecated = new DateOnly(2016, 5, 30), + PreferredValue = null, + Tag = null, Description = [@"Southern Gondi"], Comments = [@"see esg, wsg"], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ggr", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, Deprecated = new DateOnly(2013, 9, 10), + PreferredValue = null, + Tag = null, Description = [@"Aghu Tharnggalu"], Comments = [@"see gtu, ikr"], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ggt", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Gitua"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ggu", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Gagu", @"Gban"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ggw", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Gogodala"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "gha", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ghadamès"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ghc", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Hiberno-Scottish Gaelic"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ghe", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Southern Ghale"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ghh", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Northern Ghale"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ghk", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Geko Karen"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ghl", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ghulfan"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ghn", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ghanongga"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "gho", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ghomara"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ghr", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ghera"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ghs", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Guhu-Samane"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ght", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kuke", @"Kutang Ghale"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "gia", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kija"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "gib", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Gibanawa"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "gic", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Gail"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "gid", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Gidar"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "gie", Added = new DateOnly(2017, 2, 23), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Gaɓogbo", @"Guébie"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "gig", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Goaria"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "gih", Added = new DateOnly(2013, 9, 10), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Githabul"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "gii", Added = new DateOnly(2021, 2, 20), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Girirra"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "gil", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Gilbertese"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "gim", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Gimi (Eastern Highlands)"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "gin", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Hinukh"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "gio", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, Deprecated = new DateOnly(2012, 8, 12), + PreferredValue = null, + Tag = null, Description = [@"Gelao"], Comments = [@"see aou, gqu"], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "gip", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Gimi (West New Britain)"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "giq", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Green Gelao"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "gir", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Red Gelao"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "gis", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"North Giziga"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "git", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Gitxsan"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "giu", Added = new DateOnly(2012, 8, 12), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Mulao"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "giw", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"White Gelao"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "gix", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Gilima"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "giy", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Giyug"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "giz", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"South Giziga"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "gji", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, Deprecated = new DateOnly(2021, 2, 20), + PreferredValue = null, + Tag = null, Description = [@"Geji"], Comments = [@"see gyz, zbu"], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "gjk", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kachi Koli"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "gjm", Added = new DateOnly(2013, 9, 10), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Gunditjmara"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "gjn", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Gonja"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "gjr", Added = new DateOnly(2016, 5, 30), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Gurindji Kriol"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "gju", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "raj", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Gujari"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "gka", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Guya"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "gkd", Added = new DateOnly(2018, 3, 8), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Magɨ (Madang Province)"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "gke", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ndai"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "gkn", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Gokana"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "gko", Added = new DateOnly(2012, 8, 12), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kok-Nar"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "gkp", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "kpe", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Guinea Kpelle"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "gku", Added = new DateOnly(2015, 2, 12), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"ǂUngkue"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "glb", Added = new DateOnly(2021, 2, 20), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Belning"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "glc", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Bon Gula"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "gld", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Nanai"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "glh", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Northwest Pashai", @"Northwest Pashayi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "gli", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, Deprecated = new DateOnly(2020, 3, 28), PreferredValue = "kzk", + Tag = null, Description = [@"Guliguli"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "glj", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Gula Iro"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "glk", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Gilaki"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "gll", Added = new DateOnly(2013, 9, 10), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Garlali"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "glo", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Galambu"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "glr", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Glaro-Twabo"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "glu", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Gula (Chad)"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "glw", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Glavda"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "gly", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Gule"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "gma", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Gambera"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "gmb", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Gula'alaa"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "gmd", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Mághdì"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "gme", Added = new DateOnly(2009, 7, 29), - Scope = RecordScope.Collection, + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.Collection, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"East Germanic languages"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "gmg", Added = new DateOnly(2014, 2, 28), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Magɨyi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "gmh", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Middle High German (ca. 1050-1500)"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "gml", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Middle Low German"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "gmm", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "gba", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Gbaya-Mbodomo"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "gmn", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Gimnime"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "gmq", Added = new DateOnly(2009, 7, 29), - Scope = RecordScope.Collection, + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.Collection, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"North Germanic languages"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "gmr", Added = new DateOnly(2020, 3, 28), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Mirning", @"Mirniny"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "gmu", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Gumalu"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "gmv", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Gamo"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "gmw", Added = new DateOnly(2009, 7, 29), - Scope = RecordScope.Collection, + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.Collection, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"West Germanic languages"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "gmx", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Magoma"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "gmy", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Mycenaean Greek"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "gmz", Added = new DateOnly(2013, 9, 10), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Mgbolizhia"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "gna", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kaansa"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "gnb", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Gangte"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "gnc", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Guanche"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "gnd", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Zulgo-Gemzek"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "gne", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ganang"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "gng", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ngangam"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "gnh", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Lere"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "gni", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Gooniyandi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "gnj", Added = new DateOnly(2018, 3, 8), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ngen"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "gnk", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"ǁGana"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "gnl", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Gangulu"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "gnm", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ginuman"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "gnn", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Gumatj"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "gno", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "gon", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Northern Gondi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "gnq", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Gana"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "gnr", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Gureng Gureng"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "gnt", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Guntai"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "gnu", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Gnau"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "gnw", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "gn", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Western Bolivian Guaraní"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "gnz", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ganzi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "goa", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Guro"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "gob", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Playero"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "goc", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Gorakor"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "god", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Godié"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "goe", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Gongduk"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "gof", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Gofa"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "gog", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Gogo"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "goh", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Old High German (ca. 750-1050)"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "goi", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Gobasi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "goj", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Gowlan"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "gok", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Gowli"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "gol", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Gola"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "gom", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "kok", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Goan Konkani"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "gon", Added = new DateOnly(2005, 10, 16), - Scope = RecordScope.MacroLanguage, + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.MacroLanguage, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Gondi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "goo", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Gone Dau"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "gop", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Yeretuar"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "goq", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Gorap"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "gor", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Gorontalo"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "gos", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Gronings"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "got", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Gothic"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "gou", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Gavar"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "gov", Added = new DateOnly(2022, 2, 25), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Goo"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "gow", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Gorowa"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "gox", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Gobu"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "goy", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Goundo"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "goz", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Gozarkhani"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "gpa", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Gupa-Abawa"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "gpe", Added = new DateOnly(2012, 8, 12), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ghanaian Pidgin English"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "gpn", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Taiap"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "gqa", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ga'anda"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "gqi", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Guiqiong"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "gqn", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Guana (Brazil)"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "gqr", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Gor"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "gqu", Added = new DateOnly(2012, 8, 12), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Qau"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "gra", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Rajput Garasia"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "grb", Added = new DateOnly(2005, 10, 16), - Scope = RecordScope.MacroLanguage, + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.MacroLanguage, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Grebo"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "grc", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ancient Greek (to 1453)"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "grd", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Guruntum-Mbaaru"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "grg", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Madi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "grh", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Gbiri-Niragu"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "gri", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ghari"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "grj", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "grb", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Southern Grebo"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "grk", Added = new DateOnly(2009, 7, 29), - Scope = RecordScope.Collection, + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.Collection, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Greek languages"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "grm", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kota Marudu Talantang"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "gro", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Groma"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "grq", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Gorovu"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "grr", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Taznatit"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "grs", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Gresi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "grt", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Garo"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "gru", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kistane"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "grv", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "grb", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Central Grebo"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "grw", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Gweda"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "grx", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Guriaso"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "gry", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "grb", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Barclayville Grebo"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "grz", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Guramalum"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "gse", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ghanaian Sign Language"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "gsg", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"German Sign Language"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "gsl", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Gusilay"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "gsm", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Guatemalan Sign Language"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "gsn", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Nema", @"Gusan"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "gso", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "gba", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Southwest Gbaya"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "gsp", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Wasembo"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "gss", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Greek Sign Language"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "gsw", Added = new DateOnly(2006, 3, 8), SuppressScript = "Latn", + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Swiss German", @"Alemannic", @"Alsatian"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "gta", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Guató"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "gti", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, Deprecated = new DateOnly(2015, 2, 12), PreferredValue = "nyc", + Tag = null, Description = [@"Gbati-ri"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "gtu", Added = new DateOnly(2013, 9, 10), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Aghu-Tharnggala"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "gua", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Shiki"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "gub", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Guajajára"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "guc", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Wayuu"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "gud", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Yocoboué Dida"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "gue", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Gurindji"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "guf", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Gupapuyngu"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "gug", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "gn", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Paraguayan Guaraní"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "guh", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Guahibo"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "gui", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "gn", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Eastern Bolivian Guaraní"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "guk", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Gumuz"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "gul", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Sea Island Creole English"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "gum", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Guambiano"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "gun", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "gn", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Mbyá Guaraní"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "guo", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Guayabero"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "gup", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Gunwinggu"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "guq", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Aché"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "gur", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Farefare"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "gus", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Guinean Sign Language"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "gut", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Maléku Jaíka"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "guu", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Yanomamö"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "guv", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, Deprecated = new DateOnly(2016, 5, 30), PreferredValue = "duz", + Tag = null, Description = [@"Gey"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "guw", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Gun"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "gux", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Gourmanchéma"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "guz", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Gusii", @"Ekegusii"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "gva", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Guana (Paraguay)"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "gvc", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Guanano"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "gve", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Duwet"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "gvf", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Golin"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "gvj", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Guajá"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "gvl", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Gulay"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "gvm", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Gurmana"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "gvn", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kuku-Yalanji"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "gvo", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Gavião Do Jiparaná"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "gvp", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Pará Gavião"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "gvr", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Gurung"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "gvs", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Gumawana"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "gvy", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Guyani"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "gwa", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Mbato"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "gwb", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Gwa"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "gwc", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Gawri", @"Kalami"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "gwd", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Gawwada"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "gwe", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Gweno"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "gwf", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Gowro"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "gwg", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Moo"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "gwi", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Gwichʼin"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "gwj", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"ǀGwi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "gwm", Added = new DateOnly(2012, 8, 12), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Awngthim"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "gwn", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Gwandara"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "gwr", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Gwere"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "gwt", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Gawar-Bati"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "gwu", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Guwamu"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "gww", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kwini"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "gwx", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Gua"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "gxx", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Wè Southern"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "gya", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "gba", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Northwest Gbaya"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "gyb", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Garus"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "gyd", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kayardild"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "gye", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Gyem"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "gyf", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Gungabula"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "gyg", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Gbayi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "gyi", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Gyele"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "gyl", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Gayil"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "gym", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ngäbere"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "gyn", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Guyanese Creole English"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "gyo", Added = new DateOnly(2018, 3, 8), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Gyalsumdo"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "gyr", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Guarayu"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "gyy", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Gunya"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "gyz", Added = new DateOnly(2021, 2, 20), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Geji", @"Gyaazi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "gza", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ganza"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "gzi", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Gazi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "gzn", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Gane"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "haa", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Hän"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "hab", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Hanoi Sign Language"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "hac", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Gurani"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "had", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Hatam"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "hae", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "om", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Eastern Oromo"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "haf", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Haiphong Sign Language"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "hag", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Hanga"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "hah", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Hahon"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "hai", Added = new DateOnly(2005, 10, 16), - Scope = RecordScope.MacroLanguage, + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.MacroLanguage, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Haida"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "haj", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Hajong"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "hak", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "zh", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Hakka Chinese"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "hal", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Halang"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ham", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Hewa"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "han", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Hangaza"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "hao", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Hakö"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "hap", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Hupla"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "haq", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ha"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "har", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Harari"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "has", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Haisla"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "hav", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Havu"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "haw", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Hawaiian"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "hax", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "hai", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Southern Haida"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "hay", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Haya"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "haz", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Hazaragi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "hba", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Hamba"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "hbb", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Huba"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "hbn", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Heiban"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "hbo", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ancient Hebrew"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "hbu", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Habu"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "hca", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Andaman Creole Hindi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "hch", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Huichol"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "hdn", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "hai", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Northern Haida"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "hds", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Honduras Sign Language"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "hdy", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Hadiyya"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "hea", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "hmn", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Northern Qiandong Miao"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "hed", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Herdé"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "heg", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Helong"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "heh", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Hehe"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "hei", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Heiltsuk"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "hem", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Hemba"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "hgm", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Haiǁom"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "hgw", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Haigwai"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "hhi", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Hoia Hoia"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "hhr", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kerak"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "hhy", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Hoyahoya"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "hia", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Lamang"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "hib", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Hibito"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "hid", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Hidatsa"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "hif", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Fiji Hindi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "hig", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kamwe"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "hih", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Pamosu"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "hii", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Hinduri"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "hij", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Hijuk"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "hik", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Seit-Kaitetu"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "hil", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Hiligaynon"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "him", Added = new DateOnly(2005, 10, 16), - Scope = RecordScope.Collection, + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.Collection, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Himachali languages", @"Western Pahari languages"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "hio", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Tsoa"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "hir", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Himarimã"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "hit", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Hittite"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "hiw", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Hiw"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "hix", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Hixkaryána"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "hji", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "ms", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Haji"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "hka", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kahe"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "hke", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Hunde"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "hkh", Added = new DateOnly(2021, 2, 20), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Khah", @"Poguli"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "hkk", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Hunjara-Kaina Ke"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "hkn", Added = new DateOnly(2018, 3, 8), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Mel-Khaonh"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "hks", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Hong Kong Sign Language", @"Heung Kong Sau Yue"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "hla", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Halia"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "hlb", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Halbi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "hld", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Halang Doan"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "hle", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Hlersu"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "hlt", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Matu Chin"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "hlu", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Hieroglyphic Luwian"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "hma", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "hmn", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Southern Mashan Hmong", @"Southern Mashan Miao"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "hmb", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Humburi Senni Songhay"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "hmc", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "hmn", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Central Huishui Hmong", @"Central Huishui Miao"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "hmd", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "hmn", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Large Flowery Miao", @"A-hmaos", @"Da-Hua Miao"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "hme", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "hmn", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Eastern Huishui Hmong", @"Eastern Huishui Miao"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "hmf", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Hmong Don"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "hmg", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "hmn", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Southwestern Guiyang Hmong"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "hmh", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "hmn", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Southwestern Huishui Hmong", @"Southwestern Huishui Miao"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "hmi", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "hmn", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Northern Huishui Hmong", @"Northern Huishui Miao"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "hmj", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "hmn", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ge", @"Gejia"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "hmk", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Maek"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "hml", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "hmn", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Luopohe Hmong", @"Luopohe Miao"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "hmm", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "hmn", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Central Mashan Hmong", @"Central Mashan Miao"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "hmn", Added = new DateOnly(2005, 10, 16), - Scope = RecordScope.MacroLanguage, + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.MacroLanguage, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Hmong", @"Mong"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "hmp", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "hmn", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Northern Mashan Hmong", @"Northern Mashan Miao"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "hmq", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "hmn", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Eastern Qiandong Miao"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "hmr", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Hmar"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "hms", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "hmn", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Southern Qiandong Miao"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "hmt", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Hamtai"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "hmu", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Hamap"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "hmv", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Hmong Dô"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "hmw", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "hmn", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Western Mashan Hmong", @"Western Mashan Miao"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "hmx", Added = new DateOnly(2009, 7, 29), - Scope = RecordScope.Collection, + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.Collection, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Hmong-Mien languages"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "hmy", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "hmn", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Southern Guiyang Hmong", @"Southern Guiyang Miao"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "hmz", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "hmn", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Hmong Shua", @"Sinicized Miao"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "hna", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Mina (Cameroon)"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "hnd", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "lah", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Southern Hindko"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "hne", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Chhattisgarhi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "hng", Added = new DateOnly(2020, 3, 28), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Hungu"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "hnh", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"ǁAni"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "hni", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Hani"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "hnj", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "hmn", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Hmong Njua", @"Mong Leng", @"Mong Njua"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "hnm", Added = new DateOnly(2024, 12, 12), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "zh", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Hainanese"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "hnn", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Hanunoo"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "hno", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "lah", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Northern Hindko"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "hns", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Caribbean Hindustani"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "hnu", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Hung"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "hoa", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Hoava"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "hob", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Mari (Madang Province)"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "hoc", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ho"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "hod", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Holma"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "hoe", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Horom"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "hoh", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Hobyót"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "hoi", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Holikachuk"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "hoj", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "raj", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Hadothi", @"Haroti"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "hok", Added = new DateOnly(2009, 7, 29), - Scope = RecordScope.Collection, + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.Collection, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Hokan languages"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "hol", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Holu"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "hom", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Homa"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "hoo", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Holoholo"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "hop", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Hopi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "hor", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Horo"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "hos", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ho Chi Minh City Sign Language"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "hot", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Hote", @"Malê"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "hov", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Hovongan"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "how", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Honi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "hoy", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Holiya"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "hoz", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Hozo"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "hpo", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Hpon"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "hps", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Hawai'i Sign Language (HSL)", @"Hawai'i Pidgin Sign Language"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "hra", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Hrangkhol"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "hrc", Added = new DateOnly(2013, 9, 10), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Niwer Mil"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "hre", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Hre"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "hrk", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Haruku"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "hrm", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "hmn", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Horned Miao"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "hro", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Haroi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "hrp", Added = new DateOnly(2013, 9, 10), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Nhirrpi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "hrr", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, Deprecated = new DateOnly(2012, 8, 12), PreferredValue = "jal", + Tag = null, Description = [@"Horuru"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "hrt", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Hértevin"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "hru", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Hruso"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "hrw", Added = new DateOnly(2013, 9, 10), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Warwar Feni"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "hrx", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Hunsrik"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "hrz", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Harzani"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "hsb", Added = new DateOnly(2005, 10, 16), SuppressScript = "Latn", + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Upper Sorbian"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "hsh", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Hungarian Sign Language"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "hsl", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Hausa Sign Language"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "hsn", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "zh", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Xiang Chinese"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "hss", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Harsusi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "hti", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Hoti"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "hto", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Minica Huitoto"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "hts", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Hadza"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "htu", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Hitu"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "htx", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Middle Hittite"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "hub", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Huambisa"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "huc", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"ǂHua", @"ǂʼAmkhoe"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "hud", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Huaulu"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "hue", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"San Francisco Del Mar Huave"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "huf", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Humene"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "hug", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Huachipaeri"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "huh", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Huilliche"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "hui", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Huli"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "huj", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "hmn", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Northern Guiyang Hmong", @"Northern Guiyang Miao"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "huk", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Hulung"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "hul", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Hula"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "hum", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Hungana"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "huo", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Hu"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "hup", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Hupa"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "huq", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Tsat"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "hur", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Halkomelem"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "hus", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Huastec"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "hut", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Humla"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "huu", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Murui Huitoto"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "huv", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"San Mateo Del Mar Huave"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "huw", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Hukumina"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "hux", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Nüpode Huitoto"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "huy", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Hulaulá"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "huz", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Hunzib"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "hvc", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Haitian Vodoun Culture Language"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "hve", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"San Dionisio Del Mar Huave"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "hvk", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Haveke"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "hvn", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Sabu"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "hvv", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Santa María Del Mar Huave"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "hwa", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Wané"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "hwc", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Hawai'i Creole English", @"Hawai'i Pidgin"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "hwo", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Hwana"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "hya", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Hya"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "hyw", Added = new DateOnly(2018, 3, 8), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Western Armenian"], Comments = [@"see also hy"], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "hyx", Added = new DateOnly(2009, 7, 29), - Scope = RecordScope.Collection, + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.Collection, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Armenian (family)"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "iai", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Iaai"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ian", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Iatmul"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "iap", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, Deprecated = new DateOnly(2016, 5, 30), + PreferredValue = null, + Tag = null, Description = [@"Iapama"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "iar", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Purari"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "iba", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Iban"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ibb", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ibibio"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ibd", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Iwaidja"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ibe", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Akpes"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ibg", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ibanag"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ibh", Added = new DateOnly(2017, 2, 23), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Bih"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ibi", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, Deprecated = new DateOnly(2012, 8, 12), PreferredValue = "opa", + Tag = null, Description = [@"Ibilo"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ibl", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ibaloi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ibm", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Agoi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ibn", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ibino"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ibr", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ibuoro"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ibu", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ibu"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "iby", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ibani"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ica", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ede Ica"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ich", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Etkywan"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "icl", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Icelandic Sign Language"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "icr", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Islander Creole English"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ida", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "luy", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Idakho-Isukha-Tiriki", @"Luidakho-Luisukha-Lutirichi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "idb", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Indo-Portuguese"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "idc", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Idon", @"Ajiya"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "idd", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ede Idaca"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ide", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Idere"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "idi", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Idi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "idr", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Indri"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ids", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Idesa"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "idt", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Idaté"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "idu", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Idoma"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ifa", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Amganad Ifugao"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ifb", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Batad Ifugao", @"Ayangan Ifugao"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ife", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ifè"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "iff", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ifo"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ifk", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Tuwali Ifugao"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ifm", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Teke-Fuumu"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ifu", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Mayoyao Ifugao"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ify", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Keley-I Kallahan"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "igb", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ebira"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ige", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Igede"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "igg", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Igana"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "igl", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Igala"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "igm", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kanggape"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ign", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ignaciano"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "igo", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Isebe"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "igs", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Interglossa"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "igw", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Igwe"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ihb", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Iha Based Pidgin"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ihi", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ihievbe"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ihp", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Iha"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ihw", Added = new DateOnly(2012, 8, 12), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Bidhawal"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "iin", Added = new DateOnly(2013, 9, 10), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Thiin"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "iir", Added = new DateOnly(2009, 7, 29), - Scope = RecordScope.Collection, + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.Collection, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Indo-Iranian languages"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ijc", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Izon"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ije", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Biseni"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ijj", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ede Ije"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ijn", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kalabari"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ijo", Added = new DateOnly(2005, 10, 16), - Scope = RecordScope.Collection, + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.Collection, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ijo languages"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ijs", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Southeast Ijo"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ike", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "iu", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Eastern Canadian Inuktitut"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ikh", Added = new DateOnly(2023, 3, 17), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ikhin-Arokho"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "iki", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Iko"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ikk", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ika"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ikl", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ikulu"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "iko", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Olulumo-Ikom"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ikp", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ikpeshi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ikr", Added = new DateOnly(2013, 9, 10), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ikaranggal"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "iks", Added = new DateOnly(2015, 2, 12), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Inuit Sign Language"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ikt", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "iu", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Inuinnaqtun", @"Western Canadian Inuktitut"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ikv", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Iku-Gora-Ankwa"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ikw", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ikwere"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ikx", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ik"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ikz", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ikizu"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ila", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ile Ape"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ilb", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ila"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ilg", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Garig-Ilgar"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ili", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ili Turki"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ilk", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ilongot"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ill", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, Deprecated = new DateOnly(2016, 5, 30), + PreferredValue = null, + Tag = null, Description = [@"Iranun"], Comments = [@"see ilm, ilp"], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ilm", Added = new DateOnly(2016, 5, 30), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Iranun (Malaysia)"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ilo", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Iloko"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ilp", Added = new DateOnly(2016, 5, 30), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Iranun (Philippines)"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ils", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"International Sign"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ilu", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ili'uun"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ilv", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ilue"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ilw", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, Deprecated = new DateOnly(2013, 9, 10), PreferredValue = "gal", + Tag = null, Description = [@"Talur"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ima", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Mala Malasar"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ime", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, Deprecated = new DateOnly(2015, 2, 12), + PreferredValue = null, + Tag = null, Description = [@"Imeraguen"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "imi", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Anamgura"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "iml", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Miluk"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "imn", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Imonda"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "imo", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Imbongu"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "imr", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Imroing"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ims", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Marsian"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "imt", Added = new DateOnly(2022, 2, 25), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Imotong"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "imy", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Milyan"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "inb", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Inga"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "inc", Added = new DateOnly(2005, 10, 16), - Scope = RecordScope.Collection, + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.Collection, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Indic languages"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ine", Added = new DateOnly(2005, 10, 16), - Scope = RecordScope.Collection, + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.Collection, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Indo-European languages"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ing", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Degexit'an"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "inh", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ingush"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "inj", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Jungle Inga"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "inl", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Indonesian Sign Language"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "inm", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Minaean"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "inn", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Isinai"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ino", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Inoke-Yate"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "inp", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Iñapari"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ins", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Indian Sign Language"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "int", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Intha"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "inz", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ineseño"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ior", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Inor"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "iou", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Tuma-Irumu"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "iow", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Iowa-Oto"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ipi", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ipili"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ipo", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ipiko"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "iqu", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Iquito"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "iqw", Added = new DateOnly(2013, 9, 10), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ikwo"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ira", Added = new DateOnly(2005, 10, 16), - Scope = RecordScope.Collection, + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.Collection, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Iranian languages"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ire", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Iresim"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "irh", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Irarutu"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "iri", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Rigwe", @"Irigwe"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "irk", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Iraqw"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "irn", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Irántxe"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "iro", Added = new DateOnly(2005, 10, 16), - Scope = RecordScope.Collection, + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.Collection, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Iroquoian languages"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "irr", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ir"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "iru", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Irula"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "irx", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kamberau"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "iry", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Iraya"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "isa", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Isabi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "isc", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Isconahua"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "isd", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Isnag"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ise", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Italian Sign Language"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "isg", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Irish Sign Language"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ish", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Esan"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "isi", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Nkem-Nkum"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "isk", Added = new DateOnly(2010, 3, 11), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ishkashimi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ism", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Masimasi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "isn", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Isanzu"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "iso", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Isoko"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "isr", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Israeli Sign Language"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ist", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Istriot"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "isu", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Isu (Menchum Division)"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "isv", Added = new DateOnly(2024, 5, 15), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Interslavic"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "itb", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Binongan Itneg"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "itc", Added = new DateOnly(2009, 7, 29), - Scope = RecordScope.Collection, + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.Collection, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Italic languages"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "itd", Added = new DateOnly(2016, 5, 30), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Southern Tidung"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ite", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Itene"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "iti", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Inlaod Itneg"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "itk", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Judeo-Italian"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "itl", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Itelmen"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "itm", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Itu Mbon Uzo"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ito", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Itonama"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "itr", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Iteri"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "its", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Isekiri"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "itt", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Maeng Itneg"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "itv", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Itawit"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "itw", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ito"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "itx", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Itik"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ity", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Moyadan Itneg"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "itz", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Itzá"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ium", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Iu Mien"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ivb", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ibatan"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ivv", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ivatan"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "iwk", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"I-Wak"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "iwm", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Iwam"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "iwo", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Iwur"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "iws", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Sepik Iwam"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ixc", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ixcatec"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ixl", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ixil"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "iya", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Iyayu"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "iyo", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Mesaka"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "iyx", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Yaka (Congo)"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "izh", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ingrian"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "izi", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, Deprecated = new DateOnly(2013, 9, 10), + PreferredValue = null, + Tag = null, Description = [@"Izi-Ezaa-Ikwo-Mgbo"], Comments = [@"see eza, gmz, iqw, izz"], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "izm", Added = new DateOnly(2023, 3, 17), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kizamani"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "izr", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Izere"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "izz", Added = new DateOnly(2013, 9, 10), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Izii"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "jaa", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Jamamadí"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "jab", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Hyam"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "jac", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Popti'", @"Jakalteko"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "jad", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Jahanka"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "jae", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Yabem"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "jaf", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Jara"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "jah", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Jah Hut"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "jaj", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Zazao"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "jak", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "ms", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Jakun"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "jal", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Yalahatan"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "jam", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Jamaican Creole English"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "jan", Added = new DateOnly(2012, 8, 12), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Jandai"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "jao", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Yanyuwa"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "jaq", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Yaqay"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "jar", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, Deprecated = new DateOnly(2012, 8, 12), + PreferredValue = null, + Tag = null, Description = [@"Jarawa (Nigeria)"], Comments = [@"see jgk, jjr"], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "jas", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"New Caledonian Javanese"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "jat", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "lah", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Jakati"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "jau", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Yaur"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "jax", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "ms", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Jambi Malay"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "jay", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Yan-nhangu", @"Nhangu"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "jaz", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Jawe"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "jbe", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Judeo-Berber"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "jbi", Added = new DateOnly(2013, 9, 10), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Badjiri"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "jbj", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Arandai"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "jbk", Added = new DateOnly(2012, 8, 12), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Barikewa"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "jbm", Added = new DateOnly(2021, 2, 20), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Bijim"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "jbn", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Nafusi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "jbo", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Lojban"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "jbr", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Jofotek-Bromnya"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "jbt", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Jabutí"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "jbu", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Jukun Takum"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "jbw", Added = new DateOnly(2012, 8, 12), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Yawijibaya"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "jcs", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Jamaican Country Sign Language"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "jct", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Krymchak"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "jda", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Jad"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "jdg", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Jadgali"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "jdt", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Judeo-Tat"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "jeb", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Jebero"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "jee", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Jerung"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "jeg", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, Deprecated = new DateOnly(2017, 2, 23), PreferredValue = "oyb", + Tag = null, Description = [@"Jeng"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "jeh", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Jeh"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "jei", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Yei"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "jek", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Jeri Kuo"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "jel", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Yelmek"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "jen", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Dza"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "jer", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Jere"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "jet", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Manem"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "jeu", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Jonkor Bourmataguil"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "jgb", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ngbee"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "jge", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Judeo-Georgian"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "jgk", Added = new DateOnly(2012, 8, 12), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Gwak"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "jgo", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ngomba"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "jhi", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Jehai"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "jhs", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Jhankot Sign Language"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "jia", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Jina"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "jib", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Jibu"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "jic", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Tol"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "jid", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Bu (Kaduna State)"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "jie", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Jilbe"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "jig", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Jingulu", @"Djingili"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "jih", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"sTodsde", @"Shangzhai"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "jii", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Jiiddu"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "jil", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Jilim"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "jim", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Jimi (Cameroon)"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "jio", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Jiamao"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "jiq", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Guanyinqiao", @"Lavrung"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "jit", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Jita"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "jiu", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Youle Jinuo"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "jiv", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Shuar"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "jiy", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Buyuan Jinuo"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "jje", Added = new DateOnly(2015, 2, 12), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Jejueo"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "jjr", Added = new DateOnly(2012, 8, 12), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Bankal"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "jka", Added = new DateOnly(2016, 5, 30), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kaera"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "jkm", Added = new DateOnly(2012, 8, 12), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Mobwa Karen"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "jko", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kubo"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "jkp", Added = new DateOnly(2012, 8, 12), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Paku Karen"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "jkr", Added = new DateOnly(2012, 8, 12), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Koro (India)"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "jks", Added = new DateOnly(2021, 2, 20), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Amami Koniya Sign Language"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "jku", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Labir"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "jle", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ngile"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "jls", Added = new DateOnly(2010, 3, 11), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Jamaican Sign Language"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "jma", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Dima"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "jmb", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Zumbun"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "jmc", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Machame"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "jmd", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Yamdena"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "jmi", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Jimi (Nigeria)"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "jml", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Jumli"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "jmn", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Makuri Naga"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "jmr", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kamara"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "jms", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Mashi (Nigeria)"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "jmw", Added = new DateOnly(2012, 8, 12), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Mouwase"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "jmx", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Western Juxtlahuaca Mixtec"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "jna", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Jangshung"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "jnd", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Jandavra"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "jng", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Yangman"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "jni", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Janji"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "jnj", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Yemsa"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "jnl", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Rawat"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "jns", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Jaunsari"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "job", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Joba"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "jod", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Wojenaka"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "jog", Added = new DateOnly(2015, 5, 27), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Jogi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "jor", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Jorá"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "jos", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Jordanian Sign Language"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "jow", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Jowulu"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "jpa", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Jewish Palestinian Aramaic"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "jpr", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Judeo-Persian"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "jpx", Added = new DateOnly(2009, 7, 29), - Scope = RecordScope.Collection, + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.Collection, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Japanese (family)"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "jqr", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Jaqaru"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "jra", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Jarai"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "jrb", Added = new DateOnly(2005, 10, 16), - Scope = RecordScope.MacroLanguage, + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.MacroLanguage, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Judeo-Arabic"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "jrr", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Jiru"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "jrt", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Jakattoe"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "jru", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Japrería"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "jsl", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Japanese Sign Language"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "jua", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Júma"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "jub", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Wannu"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "juc", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Jurchen"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "jud", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Worodougou"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "juh", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Hõne"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "jui", Added = new DateOnly(2012, 8, 12), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ngadjuri"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "juk", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Wapan"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "jul", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Jirel"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "jum", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Jumjum"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "jun", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Juang"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "juo", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Jiba"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "jup", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Hupdë"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "jur", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Jurúna"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "jus", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Jumla Sign Language"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "jut", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Jutish"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "juu", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ju"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "juw", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Wãpha"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "juy", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Juray"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "jvd", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Javindo"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "jvn", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Caribbean Javanese"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "jwi", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Jwira-Pepesa"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "jya", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Jiarong"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "jye", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "jrb", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Judeo-Yemeni Arabic"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "jyy", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Jaya"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kaa", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kara-Kalpak", @"Karakalpak"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kab", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kabyle"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kac", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kachin", @"Jingpho"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kad", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Adara"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kae", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ketangalan"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kaf", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Katso"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kag", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kajaman"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kah", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kara (Central African Republic)"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kai", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Karekare"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kaj", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Jju"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kak", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kalanguya", @"Kayapa Kallahan"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kam", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kamba (Kenya)"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kao", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Xaasongaxango"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kap", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Bezhta"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kaq", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Capanahua"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kar", Added = new DateOnly(2005, 10, 16), - Scope = RecordScope.Collection, + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.Collection, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Karen languages"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kav", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Katukína"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kaw", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kawi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kax", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kao"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kay", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kamayurá"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kba", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kalarko"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kbb", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kaxuiâna"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kbc", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kadiwéu"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kbd", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kabardian"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kbe", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kanju"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kbf", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, Deprecated = new DateOnly(2015, 2, 12), + PreferredValue = null, + Tag = null, Description = [@"Kakauhua"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kbg", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Khamba"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kbh", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Camsá"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kbi", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kaptiau"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kbj", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kari"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kbk", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Grass Koiari"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kbl", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kanembu"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kbm", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Iwal"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kbn", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kare (Central African Republic)"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kbo", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Keliko"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kbp", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kabiyè"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kbq", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kamano"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kbr", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kafa"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kbs", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kande"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kbt", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Abadi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kbu", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kabutra"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kbv", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Dera (Indonesia)"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kbw", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kaiep"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kbx", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ap Ma"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kby", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "kr", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Manga Kanuri"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kbz", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Duhwa"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kca", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Khanty"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kcb", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kawacha"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kcc", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Lubila"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kcd", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ngkâlmpw Kanum"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kce", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kaivi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kcf", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ukaan"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kcg", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Tyap"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kch", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Vono"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kci", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ngyian", @"Kamantan"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kcj", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kobiana"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kck", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kalanga"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kcl", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kela (Papua New Guinea)", @"Kala"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kcm", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Gula (Central African Republic)"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kcn", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Nubi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kco", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kinalakna"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kcp", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kanga"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kcq", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kamo"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kcr", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Katla"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kcs", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Koenoem"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kct", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kaian"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kcu", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kami (Tanzania)"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kcv", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kete"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kcw", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kabwari"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kcx", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kachama-Ganjule"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kcy", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Korandje"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kcz", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Konongo"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kda", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Worimi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kdc", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kutu"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kdd", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Yankunytjatjara"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kde", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Makonde"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kdf", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Mamusi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kdg", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Seba"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kdh", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Tem"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kdi", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kumam"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kdj", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Karamojong"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kdk", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Numèè", @"Kwényi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kdl", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Tsikimba"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kdm", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kagoma"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kdn", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kunda"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kdo", Added = new DateOnly(2009, 7, 29), - Scope = RecordScope.Collection, + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.Collection, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kordofanian languages"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kdp", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kaningdon-Nindem"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kdq", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Koch"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kdr", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Karaim"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kdt", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kuy"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kdu", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kadaru"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kdv", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, Deprecated = new DateOnly(2012, 8, 12), + PreferredValue = null, + Tag = null, Description = [@"Kado"], Comments = [@"see zkd, zkn"], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kdw", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Koneraw"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kdx", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kam"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kdy", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Keder", @"Keijar"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kdz", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kwaja"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kea", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kabuverdianu"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "keb", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kélé"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kec", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Keiga"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ked", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kerewe"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kee", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Eastern Keres"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kef", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kpessi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "keg", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Tese"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "keh", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Keak"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kei", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kei"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kej", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kadar"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kek", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kekchí"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kel", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kela (Democratic Republic of Congo)"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kem", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kemak"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ken", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kenyang"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "keo", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kakwa"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kep", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kaikadi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "keq", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kamar"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ker", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kera"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kes", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kugbo"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ket", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ket"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "keu", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Akebu"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kev", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kanikkaran"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kew", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"West Kewa"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kex", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kukna"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "key", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kupia"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kez", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kukele"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kfa", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kodava"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kfb", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Northwestern Kolami"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kfc", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Konda-Dora"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kfd", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Korra Koraga"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kfe", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kota (India)"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kff", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Koya"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kfg", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kudiya"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kfh", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kurichiya"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kfi", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kannada Kurumba"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kfj", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kemiehua"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kfk", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kinnauri"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kfl", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kung"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kfm", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Khunsari"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kfn", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kuk"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kfo", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Koro (Côte d'Ivoire)"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kfp", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Korwa"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kfq", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Korku"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kfr", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kachhi", @"Kutchi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kfs", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Bilaspuri"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kft", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kanjari"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kfu", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Katkari"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kfv", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kurmukar"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kfw", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kharam Naga"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kfx", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kullu Pahari"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kfy", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kumaoni"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kfz", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Koromfé"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kga", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Koyaga"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kgb", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kawe"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kgc", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, Deprecated = new DateOnly(2016, 5, 30), PreferredValue = "tdf", + Tag = null, Description = [@"Kasseng"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kgd", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, Deprecated = new DateOnly(2017, 2, 23), + PreferredValue = null, + Tag = null, Description = [@"Kataang"], Comments = [@"see ncq, sct"], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kge", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Komering"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kgf", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kube"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kgg", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kusunda"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kgh", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, Deprecated = new DateOnly(2012, 8, 12), PreferredValue = "kml", + Tag = null, Description = [@"Upper Tanudan Kalinga"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kgi", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Selangor Sign Language"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kgj", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Gamale Kham"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kgk", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kaiwá"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kgl", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kunggari"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kgm", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, Deprecated = new DateOnly(2023, 3, 17), PreferredValue = "plu", + Tag = null, Description = [@"Karipúna"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kgn", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Karingani"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kgo", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Krongo"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kgp", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kaingang"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kgq", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kamoro"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kgr", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Abun"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kgs", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kumbainggar"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kgt", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Somyev"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kgu", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kobol"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kgv", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Karas"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kgw", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Karon Dori"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kgx", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kamaru"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kgy", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kyerung"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kha", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Khasi"], Comments = [@"as of 2008-04-21 this subtag does not include Lyngngam; see lyg"], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "khb", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Lü"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "khc", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Tukang Besi North"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "khd", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Bädi Kanum"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "khe", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Korowai"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "khf", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Khuen"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "khg", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Khams Tibetan"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "khh", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kehu"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "khi", Added = new DateOnly(2005, 10, 16), - Scope = RecordScope.Collection, + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.Collection, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Khoisan languages"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "khj", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kuturmi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "khk", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "mn", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Halh Mongolian"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "khl", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Lusi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "khn", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Khandesi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kho", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Khotanese", @"Sakan"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "khp", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kapori", @"Kapauri"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "khq", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Koyra Chiini Songhay"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "khr", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kharia"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "khs", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kasua"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kht", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Khamti"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "khu", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Nkhumbi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "khv", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Khvarshi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "khw", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Khowar"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "khx", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kanu"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "khy", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kele (Democratic Republic of Congo)"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "khz", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Keapara"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kia", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kim"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kib", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Koalib"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kic", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kickapoo"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kid", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Koshin"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kie", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kibet"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kif", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Eastern Parbate Kham"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kig", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kimaama", @"Kimaghima"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kih", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kilmeri"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kii", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kitsai"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kij", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kilivila"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kil", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kariya"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kim", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Karagas"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kio", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kiowa"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kip", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Sheshi Kham"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kiq", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kosadle", @"Kosare"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kis", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kis"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kit", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Agob"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kiu", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "zza", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kirmanjki (individual language)"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kiv", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kimbu"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kiw", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Northeast Kiwai"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kix", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Khiamniungan Naga"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kiy", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kirikiri"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kiz", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kisi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kja", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Mlap"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kjb", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Q'anjob'al", @"Kanjobal"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kjc", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Coastal Konjo"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kjd", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Southern Kiwai"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kje", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kisar"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kjf", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, Deprecated = new DateOnly(2020, 3, 28), + PreferredValue = null, + Tag = null, Description = [@"Khalaj [Indo-Iranian]"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kjg", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Khmu"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kjh", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Khakas"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kji", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Zabana"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kjj", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Khinalugh"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kjk", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Highland Konjo"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kjl", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Western Parbate Kham"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kjm", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kháng"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kjn", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kunjen"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kjo", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Harijan Kinnauri"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kjp", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Pwo Eastern Karen"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kjq", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Western Keres"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kjr", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kurudu"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kjs", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"East Kewa"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kjt", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Phrae Pwo Karen"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kju", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kashaya"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kjv", Added = new DateOnly(2015, 2, 12), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kaikavian Literary Language"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kjx", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ramopa"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kjy", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Erave"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kjz", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Bumthangkha"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kka", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kakanda"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kkb", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kwerisa"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kkc", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Odoodee"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kkd", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kinuku"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kke", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kakabe"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kkf", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kalaktang Monpa"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kkg", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Mabaka Valley Kalinga"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kkh", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Khün"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kki", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kagulu"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kkj", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kako"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kkk", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kokota"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kkl", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kosarek Yale"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kkm", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kiong"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kkn", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kon Keu"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kko", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Karko"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kkp", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Gugubera", @"Koko-Bera"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kkq", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kaeku"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kkr", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kir-Balar"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kks", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Giiwo"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kkt", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Koi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kku", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Tumi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kkv", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kangean"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kkw", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Teke-Kukuya"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kkx", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kohin"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kky", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Guugu Yimidhirr", @"Guguyimidjir"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kkz", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kaska"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kla", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Klamath-Modoc"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "klb", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kiliwa"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "klc", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kolbila"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kld", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Gamilaraay"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kle", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kulung (Nepal)"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "klf", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kendeje"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "klg", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Tagakaulo"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "klh", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Weliki"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kli", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kalumpang"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "klj", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Khalaj"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "klk", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kono (Nigeria)"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kll", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kagan Kalagan"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "klm", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Migum"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kln", Added = new DateOnly(2009, 7, 29), - Scope = RecordScope.MacroLanguage, + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.MacroLanguage, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kalenjin"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "klo", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kapya"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "klp", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kamasa"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "klq", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Rumu"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "klr", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Khaling"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kls", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kalasha"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "klt", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Nukna"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "klu", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Klao"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "klv", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Maskelynes"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "klw", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Tado", @"Lindu"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "klx", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Koluwawa"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kly", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kalao"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "klz", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kabola"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kma", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Konni"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kmb", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kimbundu"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kmc", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Southern Dong"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kmd", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Majukayang Kalinga"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kme", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Bakole"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kmf", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kare (Papua New Guinea)"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kmg", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kâte"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kmh", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kalam"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kmi", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kami (Nigeria)"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kmj", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kumarbhag Paharia"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kmk", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Limos Kalinga"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kml", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Tanudan Kalinga"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kmm", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kom (India)"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kmn", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Awtuw"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kmo", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kwoma"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kmp", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Gimme"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kmq", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kwama"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kmr", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "ku", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Northern Kurdish"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kms", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kamasau"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kmt", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kemtuik"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kmu", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kanite"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kmv", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Karipúna Creole French"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kmw", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Komo (Democratic Republic of Congo)"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kmx", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Waboda"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kmy", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Koma"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kmz", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Khorasani Turkish"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kna", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Dera (Nigeria)"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "knb", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Lubuagan Kalinga"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "knc", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "kr", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Central Kanuri"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "knd", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Konda"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kne", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kankanaey"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "knf", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Mankanya"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kng", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "kg", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Koongo"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kni", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kanufi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "knj", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Western Kanjobal"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "knk", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kuranko"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "knl", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Keninjal"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "knm", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kanamarí"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "knn", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "kok", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Konkani (individual language)"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kno", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kono (Sierra Leone)"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "knp", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kwanja"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "knq", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kintaq"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "knr", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kaningra"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kns", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kensiu"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "knt", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Panoan Katukína"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "knu", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kono (Guinea)"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "knv", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Tabo"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "knw", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kung-Ekoka"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "knx", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kendayan", @"Salako"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kny", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kanyok"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "knz", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kalamsé"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "koa", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Konomala"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "koc", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kpati"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kod", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kodi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "koe", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kacipo-Bale Suri"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kof", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kubi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kog", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Cogui", @"Kogi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "koh", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Koyo"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "koi", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "kv", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Komi-Permyak"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "koj", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, Deprecated = new DateOnly(2015, 2, 12), PreferredValue = "kwv", + Tag = null, Description = [@"Sara Dunjo"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kok", Added = new DateOnly(2005, 10, 16), SuppressScript = "Deva", - Scope = RecordScope.MacroLanguage, + Scope = Rfc5646Record.RecordScope.MacroLanguage, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Konkani (macrolanguage)"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kol", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kol (Papua New Guinea)"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "koo", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Konzo"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kop", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Waube"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "koq", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kota (Gabon)"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kos", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kosraean"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kot", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Lagwan"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kou", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Koke"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kov", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kudu-Camo"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kow", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kugama"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kox", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, Deprecated = new DateOnly(2016, 5, 30), + PreferredValue = null, + Tag = null, Description = [@"Coxima"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "koy", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Koyukon"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "koz", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Korak"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kpa", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kutto"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kpb", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Mullu Kurumba"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kpc", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Curripaco"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kpd", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Koba"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kpe", Added = new DateOnly(2005, 10, 16), - Scope = RecordScope.MacroLanguage, + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.MacroLanguage, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kpelle"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kpf", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Komba"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kpg", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kapingamarangi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kph", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kplang"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kpi", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kofei"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kpj", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Karajá"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kpk", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kpan"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kpl", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kpala"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kpm", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Koho"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kpn", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kepkiriwát"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kpo", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ikposo"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kpp", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, Deprecated = new DateOnly(2012, 8, 12), + PreferredValue = null, + Tag = null, Description = [@"Paku Karen"], Comments = [@"see jkm, jkp"], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kpq", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Korupun-Sela"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kpr", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Korafe-Yegha"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kps", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Tehit"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kpt", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Karata"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kpu", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kafoa"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kpv", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "kv", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Komi-Zyrian"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kpw", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kobon"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kpx", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Mountain Koiali"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kpy", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Koryak"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kpz", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kupsabiny"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kqa", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Mum"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kqb", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kovai"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kqc", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Doromu-Koki"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kqd", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Koy Sanjaq Surat"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kqe", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kalagan"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kqf", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kakabai"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kqg", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Khe"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kqh", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kisankasa"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kqi", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Koitabu"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kqj", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Koromira"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kqk", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kotafon Gbe"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kql", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kyenele"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kqm", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Khisa"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kqn", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kaonde"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kqo", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Eastern Krahn"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kqp", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kimré"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kqq", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Krenak"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kqr", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kimaragang"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kqs", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Northern Kissi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kqt", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Klias River Kadazan"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kqu", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Seroa"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kqv", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Okolod"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kqw", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kandas"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kqx", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Mser"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kqy", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Koorete"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kqz", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Korana"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kra", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kumhali"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "krb", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Karkin"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "krc", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Karachay-Balkar"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "krd", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kairui-Midiki"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kre", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Panará"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "krf", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Koro (Vanuatu)"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "krh", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kurama"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kri", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Krio"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "krj", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kinaray-A"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "krk", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kerek"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "krl", Added = new DateOnly(2006, 3, 8), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Karelian"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "krm", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, Deprecated = new DateOnly(2017, 2, 23), PreferredValue = "bmf", + Tag = null, Description = [@"Krim"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "krn", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Sapo"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kro", Added = new DateOnly(2005, 10, 16), - Scope = RecordScope.Collection, + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.Collection, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kru languages"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "krp", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Durop"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "krr", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Krung"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "krs", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Gbaya (Sudan)"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "krt", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "kr", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Tumari Kanuri"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kru", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kurukh"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "krv", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kavet"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "krw", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Western Krahn"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "krx", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Karon"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kry", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kryts"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "krz", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Sota Kanum"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ksa", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, Deprecated = new DateOnly(2023, 3, 17), + PreferredValue = null, + Tag = null, Description = [@"Shuwa-Zamani"], Comments = [@"see izm, rsw"], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ksb", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Shambala"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ksc", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Southern Kalinga"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ksd", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kuanua"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kse", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kuni"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ksf", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Bafia"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ksg", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kusaghe"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ksh", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kölsch"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ksi", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Krisa", @"I'saka"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ksj", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Uare"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ksk", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kansa"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ksl", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kumalu"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ksm", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kumba"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ksn", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kasiguranin"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kso", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kofa"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ksp", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kaba"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ksq", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kwaami"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ksr", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Borong"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kss", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Southern Kisi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kst", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Winyé"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ksu", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Khamyang"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ksv", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kusu"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ksw", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"S'gaw Karen"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ksx", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kedang"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ksy", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kharia Thar"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ksz", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kodaku"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kta", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Katua"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ktb", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kambaata"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ktc", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kholok"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ktd", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kokata", @"Kukatha"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kte", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Nubri"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ktf", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kwami"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ktg", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kalkutung"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kth", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Karanga"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kti", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"North Muyu"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ktj", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Plapo Krumen"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ktk", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kaniet"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ktl", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Koroshi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ktm", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kurti"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ktn", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Karitiâna"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kto", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kuot"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ktp", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kaduo"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ktq", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Katabaga"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ktr", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, Deprecated = new DateOnly(2016, 5, 30), PreferredValue = "dtp", + Tag = null, Description = [@"Kota Marudu Tinagas"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kts", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"South Muyu"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ktt", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ketum"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ktu", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kituba (Democratic Republic of Congo)"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ktv", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Eastern Katu"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ktw", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kato"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ktx", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kaxararí"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kty", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kango (Bas-Uélé District)"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ktz", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Juǀʼhoan", @"Juǀʼhoansi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kub", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kutep"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kuc", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kwinsu"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kud", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"'Auhelawa"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kue", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kuman (Papua New Guinea)"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kuf", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Western Katu"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kug", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kupa"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kuh", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kushi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kui", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kuikúro-Kalapálo", @"Kalapalo"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kuj", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kuria"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kuk", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kepo'"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kul", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kulere"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kum", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kumyk"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kun", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kunama"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kuo", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kumukio"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kup", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kunimaipa"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kuq", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Karipuna"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kus", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kusaal"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kut", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kutenai"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kuu", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Upper Kuskokwim"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kuv", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kur"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kuw", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kpagua"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kux", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kukatja"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kuy", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kuuku-Ya'u"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kuz", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kunza"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kva", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Bagvalal"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kvb", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "ms", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kubu"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kvc", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kove"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kvd", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kui (Indonesia)"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kve", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kalabakan"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kvf", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kabalai"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kvg", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kuni-Boazi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kvh", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Komodo"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kvi", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kwang"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kvj", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Psikye"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kvk", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Korean Sign Language"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kvl", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kayaw"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kvm", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kendem"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kvn", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Border Kuna"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kvo", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Dobel"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kvp", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kompane"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kvq", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Geba Karen"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kvr", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "ms", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kerinci"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kvs", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, Deprecated = new DateOnly(2016, 5, 30), PreferredValue = "gdj", + Tag = null, Description = [@"Kunggara"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kvt", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Lahta Karen", @"Lahta"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kvu", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Yinbaw Karen"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kvv", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kola"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kvw", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Wersing"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kvx", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Parkari Koli"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kvy", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Yintale Karen", @"Yintale"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kvz", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Tsakwambo", @"Tsaukambo"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kwa", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Dâw"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kwb", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kwa"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kwc", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Likwala"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kwd", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kwaio"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kwe", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kwerba"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kwf", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kwara'ae"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kwg", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Sara Kaba Deme"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kwh", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kowiai"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kwi", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Awa-Cuaiquer"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kwj", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kwanga"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kwk", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kwak'wala", @"Kwakiutl"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kwl", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kofyar"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kwm", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kwambi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kwn", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kwangali"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kwo", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kwomtari"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kwp", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kodia"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kwq", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, Deprecated = new DateOnly(2015, 2, 12), PreferredValue = "yam", + Tag = null, Description = [@"Kwak"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kwr", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kwer"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kws", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kwese"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kwt", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kwesten"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kwu", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kwakum"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kwv", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Sara Kaba Náà"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kww", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kwinti"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kwx", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Khirwar"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kwy", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "kg", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"San Salvador Kongo"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kwz", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kwadi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kxa", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kairiru"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kxb", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Krobu"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kxc", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Konso", @"Khonso"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kxd", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "ms", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Brunei"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kxe", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, Deprecated = new DateOnly(2015, 2, 12), PreferredValue = "tvd", + Tag = null, Description = [@"Kakihum"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kxf", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Manumanaw Karen", @"Manumanaw"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kxh", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Karo (Ethiopia)"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kxi", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Keningau Murut"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kxj", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kulfa"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kxk", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Zayein Karen"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kxl", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, Deprecated = new DateOnly(2020, 3, 28), PreferredValue = "kru", + Tag = null, Description = [@"Nepali Kurux"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kxm", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Northern Khmer"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kxn", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kanowit-Tanjong Melanau"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kxo", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kanoé"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kxp", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Wadiyara Koli"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kxq", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Smärky Kanum"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kxr", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Koro (Papua New Guinea)"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kxs", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kangjia"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kxt", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Koiwat"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kxu", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, Deprecated = new DateOnly(2020, 3, 28), + PreferredValue = null, + Tag = null, Description = [@"Kui (India)"], Comments = [@"see dwk, uki"], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kxv", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kuvi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kxw", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Konai"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kxx", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Likuba"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kxy", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kayong"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kxz", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kerewo"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kya", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kwaya"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kyb", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Butbut Kalinga"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kyc", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kyaka"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kyd", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Karey"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kye", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Krache"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kyf", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kouya"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kyg", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Keyagana"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kyh", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Karok"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kyi", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kiput"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kyj", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Karao"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kyk", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kamayo"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kyl", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kalapuya"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kym", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kpatili"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kyn", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Northern Binukidnon"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kyo", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kelon"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kyp", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kang"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kyq", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kenga"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kyr", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kuruáya"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kys", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Baram Kayan"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kyt", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kayagar"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kyu", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Western Kayah"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kyv", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kayort"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kyw", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kudmali"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kyx", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Rapoisi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kyy", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kambaira"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kyz", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kayabí"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kza", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Western Karaboro"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kzb", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kaibobo"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kzc", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Bondoukou Kulango"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kzd", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kadai"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kze", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kosena"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kzf", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Da'a Kaili"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kzg", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kikai"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kzh", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, Deprecated = new DateOnly(2012, 8, 12), + PreferredValue = null, + Tag = null, Description = [@"Kenuzi-Dongola"], Comments = [@"see dgl, xnz"], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kzi", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kelabit"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kzj", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, Deprecated = new DateOnly(2016, 5, 30), PreferredValue = "dtp", + Tag = null, Description = [@"Coastal Kadazan"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kzk", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kazukuru"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kzl", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kayeli"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kzm", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kais"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kzn", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kokola"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kzo", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kaningi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kzp", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kaidipang"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kzq", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kaike"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kzr", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Karang"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kzs", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Sugut Dusun"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kzt", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, Deprecated = new DateOnly(2016, 5, 30), PreferredValue = "dtp", + Tag = null, Description = [@"Tambunan Dusun"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kzu", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kayupulau"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kzv", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Komyandaret"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kzw", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Karirí-Xocó"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kzx", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kamarian"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kzy", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kango (Tshopo District)"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "kzz", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kalabra"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "laa", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Southern Subanen"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "lab", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Linear A"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "lac", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Lacandon"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "lad", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ladino"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "lae", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Pattani"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "laf", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Lafofa"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "lag", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Rangi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "lah", Added = new DateOnly(2005, 10, 16), - Scope = RecordScope.MacroLanguage, + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.MacroLanguage, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Lahnda"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "lai", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Lambya"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "laj", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Lango (Uganda)"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "lak", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, Deprecated = new DateOnly(2022, 2, 25), PreferredValue = "ksp", + Tag = null, Description = [@"Laka (Nigeria)"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "lal", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Lalia"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "lam", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Lamba"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "lan", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Laru"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "lap", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Laka (Chad)"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "laq", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Qabiao"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "lar", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Larteh"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "las", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Lama (Togo)"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "lau", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Laba"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "law", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Lauje"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "lax", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Tiwa"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "lay", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Lama Bai"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "laz", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Aribwatsa"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "lba", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, Deprecated = new DateOnly(2019, 4, 16), + PreferredValue = null, + Tag = null, Description = [@"Lui"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "lbb", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Label"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "lbc", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Lakkia"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "lbe", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Lak"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "lbf", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Tinani"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "lbg", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Laopang"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "lbi", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"La'bi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "lbj", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ladakhi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "lbk", Added = new DateOnly(2010, 3, 11), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "bnc", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Central Bontok"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "lbl", Added = new DateOnly(2010, 3, 11), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "bik", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Libon Bikol"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "lbm", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Lodhi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "lbn", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Rmeet"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "lbo", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Laven"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "lbq", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Wampar"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "lbr", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Lohorung"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "lbs", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Libyan Sign Language"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "lbt", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Lachi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "lbu", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Labu"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "lbv", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Lavatbura-Lamusong"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "lbw", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Tolaki"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "lbx", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Lawangan"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "lby", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Lamalama", @"Lamu-Lamu"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "lbz", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Lardil"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "lcc", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Legenyem"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "lcd", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Lola"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "lce", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "ms", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Loncong", @"Sekak"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "lcf", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "ms", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Lubu"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "lch", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Luchazi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "lcl", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Lisela"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "lcm", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Tungag"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "lcp", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Western Lawa"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "lcq", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Luhu"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "lcs", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Lisabata-Nuniali"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "lda", Added = new DateOnly(2013, 9, 10), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kla-Dan"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ldb", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Dũya"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ldd", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Luri"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ldg", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Lenyima"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ldh", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Lamja-Dengsa-Tola"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ldi", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "kg", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Laari"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ldj", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Lemoro"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ldk", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Leelau"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ldl", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kaan"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ldm", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Landoma"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ldn", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Láadan"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ldo", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Loo"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ldp", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Tso"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ldq", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Lufu"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "lea", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Lega-Shabunda"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "leb", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Lala-Bisa"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "lec", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Leco"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "led", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Lendu"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "lee", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Lyélé"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "lef", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Lelemi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "leg", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, Deprecated = new DateOnly(2014, 2, 28), + PreferredValue = null, + Tag = null, Description = [@"Lengua"], Comments = [@"see enl, enx"], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "leh", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Lenje"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "lei", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Lemio"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "lej", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Lengola"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "lek", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Leipon"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "lel", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Lele (Democratic Republic of Congo)"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "lem", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Nomaande"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "len", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Lenca"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "leo", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Leti (Cameroon)"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "lep", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Lepcha"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "leq", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Lembena"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ler", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Lenkau"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "les", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Lese"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "let", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Lesing-Gelimi", @"Amio-Gelimi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "leu", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kara (Papua New Guinea)"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "lev", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Lamma"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "lew", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ledo Kaili"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "lex", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Luang"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ley", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Lemolang"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "lez", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Lezghian"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "lfa", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Lefa"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "lfn", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Lingua Franca Nova"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "lga", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Lungga"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "lgb", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Laghu"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "lgg", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Lugbara"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "lgh", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Laghuu"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "lgi", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Lengilu"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "lgk", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Lingarak", @"Neverver"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "lgl", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Wala"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "lgm", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Lega-Mwenga"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "lgn", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"T'apo", @"Opuuo"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "lgo", Added = new DateOnly(2022, 2, 25), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Lango (South Sudan)"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "lgq", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Logba"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "lgr", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Lengo"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "lgs", Added = new DateOnly(2023, 3, 17), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Guinea-Bissau Sign Language", @"Língua Gestual Guineense"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "lgt", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Pahi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "lgu", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Longgu"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "lgz", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ligenza"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "lha", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Laha (Viet Nam)"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "lhh", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Laha (Indonesia)"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "lhi", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Lahu Shi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "lhl", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Lahul Lohar"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "lhm", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Lhomi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "lhn", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Lahanan"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "lhp", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Lhokpu"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "lhs", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Mlahsö"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "lht", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Lo-Toga"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "lhu", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Lahu"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "lia", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"West-Central Limba"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "lib", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Likum"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "lic", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Hlai"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "lid", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Nyindrou"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "lie", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Likila"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "lif", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Limbu"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "lig", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ligbi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "lih", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Lihir"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "lii", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, Deprecated = new DateOnly(2015, 2, 12), PreferredValue = "raq", + Tag = null, Description = [@"Lingkhim"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "lij", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ligurian"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "lik", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Lika"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "lil", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Lillooet"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "lio", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Liki"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "lip", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Sekpele"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "liq", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Libido"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "lir", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Liberian English"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "lis", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Lisu"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "liu", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Logorik"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "liv", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Liv"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "liw", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "ms", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Col"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "lix", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Liabuku"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "liy", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Banda-Bambari"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "liz", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Libinza"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "lja", Added = new DateOnly(2013, 9, 10), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Golpa"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "lje", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Rampi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "lji", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Laiyolo"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ljl", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Li'o"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ljp", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Lampung Api"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ljw", Added = new DateOnly(2013, 9, 10), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Yirandali"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ljx", Added = new DateOnly(2013, 9, 10), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Yuru"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "lka", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Lakalei"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "lkb", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "luy", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kabras", @"Lukabaras"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "lkc", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kucong"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "lkd", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Lakondê"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "lke", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kenyi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "lkh", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Lakha"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "lki", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Laki"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "lkj", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Remun"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "lkl", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Laeko-Libuat"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "lkm", Added = new DateOnly(2013, 9, 10), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kalaamaya"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "lkn", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Lakon", @"Vure"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "lko", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "luy", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Khayo", @"Olukhayo"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "lkr", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Päri"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "lks", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "luy", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kisa", @"Olushisa"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "lkt", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Lakota"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "lku", Added = new DateOnly(2013, 9, 10), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kungkari"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "lky", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Lokoya"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "lla", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Lala-Roba"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "llb", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Lolo"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "llc", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Lele (Guinea)"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "lld", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ladin"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "lle", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Lele (Papua New Guinea)"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "llf", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Hermit"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "llg", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Lole"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "llh", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Lamu"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "lli", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Teke-Laali"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "llj", Added = new DateOnly(2012, 8, 12), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ladji Ladji"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "llk", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Lelak"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "lll", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Lilau"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "llm", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Lasalimu"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "lln", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Lele (Chad)"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "llo", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, Deprecated = new DateOnly(2019, 4, 16), PreferredValue = "ngt", + Tag = null, Description = [@"Khlor"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "llp", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"North Efate"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "llq", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Lolak"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "lls", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Lithuanian Sign Language"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "llu", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Lau"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "llx", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Lauan"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "lma", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"East Limba"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "lmb", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Merei"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "lmc", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Limilngan"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "lmd", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Lumun"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "lme", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Pévé"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "lmf", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"South Lembata"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "lmg", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Lamogai"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "lmh", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Lambichhong"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "lmi", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Lombi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "lmj", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"West Lembata"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "lmk", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Lamkang"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "lml", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Hano"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "lmm", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, Deprecated = new DateOnly(2014, 2, 28), PreferredValue = "rmx", + Tag = null, Description = [@"Lamam"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "lmn", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Lambadi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "lmo", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Lombard"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "lmp", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Limbum"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "lmq", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Lamatuka"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "lmr", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Lamalera"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "lmu", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Lamenu"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "lmv", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Lomaiviti"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "lmw", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Lake Miwok"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "lmx", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Laimbue"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "lmy", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Lamboya"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "lmz", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, Deprecated = new DateOnly(2020, 3, 28), + PreferredValue = null, + Tag = null, Description = [@"Lumbee"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "lna", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Langbashe"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "lnb", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Mbalanhu"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "lnd", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Lundayeh", @"Lun Bawang"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "lng", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Langobardic"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "lnh", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Lanoh"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "lni", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Daantanai'"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "lnj", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Leningitij"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "lnl", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"South Central Banda"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "lnm", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Langam"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "lnn", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Lorediakarkar"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "lno", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, Deprecated = new DateOnly(2022, 2, 25), + PreferredValue = null, + Tag = null, Description = [@"Lango (South Sudan)"], Comments = [@"see imt, lgo, lqr, oie"], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "lns", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Lamnso'"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "lnu", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Longuda"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "lnw", Added = new DateOnly(2013, 9, 10), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Lanima"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "lnz", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Lonzo"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "loa", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Loloda"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "lob", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Lobi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "loc", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Inonhan"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "loe", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Saluan"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "lof", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Logol"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "log", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Logo"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "loh", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Laarim", @"Narim"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "loi", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Loma (Côte d'Ivoire)"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "loj", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Lou"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "lok", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Loko"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "lol", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Mongo"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "lom", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Loma (Liberia)"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "lon", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Malawi Lomwe"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "loo", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Lombo"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "lop", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Lopa"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "loq", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Lobala"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "lor", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Téén"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "los", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Loniu"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "lot", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Otuho"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "lou", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Louisiana Creole"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "lov", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Lopi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "low", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Tampias Lobu"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "lox", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Loun"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "loy", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Loke"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "loz", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Lozi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "lpa", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Lelepa"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "lpe", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Lepki"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "lpn", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Long Phuri Naga"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "lpo", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Lipo"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "lpx", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Lopit"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "lqr", Added = new DateOnly(2022, 2, 25), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Logir"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "lra", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Rara Bakati'"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "lrc", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Northern Luri"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "lre", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Laurentian"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "lrg", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Laragia"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "lri", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "luy", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Marachi", @"Olumarachi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "lrk", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Loarki"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "lrl", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Lari"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "lrm", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "luy", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Marama", @"Olumarama"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "lrn", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Lorang"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "lro", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Laro"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "lrr", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Southern Yamphu"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "lrt", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Larantuka Malay"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "lrv", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Larevat"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "lrz", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Lemerig"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "lsa", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Lasgerdi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "lsb", Added = new DateOnly(2021, 2, 20), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Burundian Sign Language", @"Langue des Signes Burundaise"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "lsc", Added = new DateOnly(2022, 2, 25), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Albarradas Sign Language", @"Lengua de señas Albarradas"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "lsd", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Lishana Deni"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "lse", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Lusengo"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "lsg", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, Deprecated = new DateOnly(2018, 3, 8), + PreferredValue = null, + Tag = null, Description = [@"Lyons Sign Language"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "lsh", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Lish"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "lsi", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Lashi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "lsl", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Latvian Sign Language"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "lsm", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "luy", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Saamia", @"Olusamia"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "lsn", Added = new DateOnly(2019, 4, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Tibetan Sign Language"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "lso", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Laos Sign Language"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "lsp", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Panamanian Sign Language", @"Lengua de Señas Panameñas"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "lsr", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Aruop"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "lss", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Lasi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "lst", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Trinidad and Tobago Sign Language"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "lsv", Added = new DateOnly(2019, 4, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Sivia Sign Language"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "lsw", Added = new DateOnly(2022, 2, 25), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [ @"Seychelles Sign Language", @@ -36909,10966 +60475,18105 @@ public static Rfc5646Data Create() => }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "lsy", Added = new DateOnly(2010, 3, 11), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Mauritian Sign Language"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ltc", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Late Middle Chinese"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ltg", Added = new DateOnly(2010, 3, 11), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "lv", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Latgalian"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "lth", Added = new DateOnly(2017, 2, 23), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Thur"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "lti", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Leti (Indonesia)"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ltn", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Latundê"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "lto", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "luy", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Tsotso", @"Olutsotso"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "lts", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "luy", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Tachoni", @"Lutachoni"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ltu", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Latu"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "lua", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Luba-Lulua"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "luc", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Aringa"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "lud", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ludian"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "lue", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Luvale"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "luf", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Laua"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "luh", Added = new DateOnly(2024, 12, 12), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "zh", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Leizhou Chinese"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "lui", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Luiseno"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "luj", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Luna"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "luk", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Lunanakha"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "lul", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Olu'bo"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "lum", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Luimbi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "lun", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Lunda"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "luo", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Luo (Kenya and Tanzania)", @"Dholuo"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "lup", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Lumbu"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "luq", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Lucumi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "lur", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Laura"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "lus", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Lushai"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "lut", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Lushootseed"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "luu", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Lumba-Yakkha"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "luv", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Luwati"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "luw", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Luo (Cameroon)"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "luy", Added = new DateOnly(2009, 7, 29), - Scope = RecordScope.MacroLanguage, + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.MacroLanguage, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Luyia", @"Oluluyia"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "luz", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Southern Luri"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "lva", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Maku'a"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "lvi", Added = new DateOnly(2019, 4, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Lavi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "lvk", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Lavukaleve"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "lvl", Added = new DateOnly(2023, 3, 17), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Lwel"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "lvs", Added = new DateOnly(2010, 3, 11), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "lv", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Standard Latvian"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "lvu", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Levuka"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "lwa", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Lwalu"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "lwe", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Lewo Eleng"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "lwg", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "luy", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Wanga", @"Oluwanga"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "lwh", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"White Lachi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "lwl", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Eastern Lawa"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "lwm", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Laomian"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "lwo", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Luwo"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "lws", Added = new DateOnly(2018, 3, 8), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Malawian Sign Language"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "lwt", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Lewotobi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "lwu", Added = new DateOnly(2013, 9, 10), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Lawu"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "lww", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Lewo"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "lxm", Added = new DateOnly(2021, 2, 20), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Lakurumau"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "lya", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Layakha"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "lyg", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Lyngngam"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "lyn", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Luyana"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "lzh", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "zh", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Literary Chinese"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "lzl", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Litzlitz"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "lzn", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Leinong Naga"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "lzz", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Laz"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "maa", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"San Jerónimo Tecóatl Mazatec"], Comments = [@"see also pbm"], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mab", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Yutanduchi Mixtec"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mad", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Madurese"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mae", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Bo-Rukul"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "maf", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Mafa"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mag", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Magahi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mai", Added = new DateOnly(2005, 10, 16), SuppressScript = "Deva", + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Maithili"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "maj", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Jalapa De Díaz Mazatec"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mak", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Makasar"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mam", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Mam"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "man", Added = new DateOnly(2005, 10, 16), - Scope = RecordScope.MacroLanguage, + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.MacroLanguage, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Mandingo", @"Manding"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "map", Added = new DateOnly(2005, 10, 16), - Scope = RecordScope.Collection, + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.Collection, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Austronesian languages"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "maq", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Chiquihuitlán Mazatec"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mas", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Masai"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mat", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"San Francisco Matlatzinca"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mau", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Huautla Mazatec"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mav", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Sateré-Mawé"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "maw", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Mampruli"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "max", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "ms", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"North Moluccan Malay"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "maz", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Central Mazahua"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mba", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Higaonon"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mbb", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Western Bukidnon Manobo"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mbc", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Macushi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mbd", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Dibabawon Manobo"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mbe", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Molale"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mbf", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Baba Malay"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mbh", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Mangseng"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mbi", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ilianen Manobo"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mbj", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Nadëb"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mbk", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Malol"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mbl", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Maxakalí"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mbm", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ombamba"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mbn", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Macaguán"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mbo", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Mbo (Cameroon)"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mbp", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Malayo"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mbq", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Maisin"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mbr", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Nukak Makú"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mbs", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Sarangani Manobo"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mbt", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Matigsalug Manobo"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mbu", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Mbula-Bwazza"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mbv", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Mbulungish"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mbw", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Maring"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mbx", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Mari (East Sepik Province)"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mby", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Memoni"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mbz", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Amoltepec Mixtec"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mca", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Maca"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mcb", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Machiguenga"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mcc", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Bitur"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mcd", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Sharanahua"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mce", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Itundujia Mixtec"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mcf", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Matsés"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mcg", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Mapoyo"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mch", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Maquiritari"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mci", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Mese"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mcj", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Mvanip"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mck", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Mbunda"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mcl", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Macaguaje"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mcm", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Malaccan Creole Portuguese"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mcn", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Masana"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mco", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Coatlán Mixe"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mcp", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Makaa"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mcq", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ese"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mcr", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Menya"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mcs", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Mambai"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mct", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Mengisa"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mcu", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Cameroon Mambila"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mcv", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Minanibai"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mcw", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Mawa (Chad)"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mcx", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Mpiemo"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mcy", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"South Watut"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mcz", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Mawan"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mda", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Mada (Nigeria)"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mdb", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Morigi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mdc", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Male (Papua New Guinea)"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mdd", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Mbum"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mde", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Maba (Chad)"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mdf", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Moksha"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mdg", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Massalat"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mdh", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Maguindanaon"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mdi", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Mamvu"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mdj", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Mangbetu"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mdk", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Mangbutu"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mdl", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Maltese Sign Language"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mdm", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Mayogo"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mdn", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Mbati"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mdp", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Mbala"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mdq", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Mbole"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mdr", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Mandar"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mds", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Maria (Papua New Guinea)"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mdt", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Mbere"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mdu", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Mboko"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mdv", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Santa Lucía Monteverde Mixtec"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mdw", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Mbosi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mdx", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Dizin"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mdy", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Male (Ethiopia)"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mdz", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Suruí Do Pará"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mea", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Menka"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "meb", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ikobi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mec", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Marra"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "med", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Melpa"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mee", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Mengen"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mef", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Megam"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "meg", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, Deprecated = new DateOnly(2013, 9, 10), PreferredValue = "cir", + Tag = null, Description = [@"Mea"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "meh", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Southwestern Tlaxiaco Mixtec"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mei", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Midob"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mej", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Meyah"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mek", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Mekeo"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mel", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Central Melanau"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mem", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Mangala"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "men", Added = new DateOnly(2005, 10, 16), SuppressScript = "Latn", + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Mende (Sierra Leone)"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "meo", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "ms", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kedah Malay"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mep", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Miriwoong"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "meq", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Merey"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mer", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Meru"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mes", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Masmaje"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "met", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Mato"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "meu", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Motu"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mev", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Mano"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mew", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Maaka"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mey", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Hassaniyya"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mez", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Menominee"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mfa", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "ms", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Pattani Malay"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mfb", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "ms", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Bangka"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mfc", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Mba"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mfd", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Mendankwe-Nkwen"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mfe", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Morisyen"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mff", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Naki"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mfg", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Mogofin"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mfh", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Matal"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mfi", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Wandala"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mfj", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Mefele"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mfk", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"North Mofu"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mfl", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Putai"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mfm", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Marghi South"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mfn", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Cross River Mbembe"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mfo", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Mbe"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mfp", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Makassar Malay"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mfq", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Moba"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mfr", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Marrithiyel"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mfs", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Mexican Sign Language"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mft", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Mokerang"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mfu", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Mbwela"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mfv", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Mandjak"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mfw", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Mulaha"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mfx", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Melo"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mfy", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Mayo"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mfz", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Mabaan"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mga", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Middle Irish (900-1200)"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mgb", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Mararit"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mgc", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Morokodo"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mgd", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Moru"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mge", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Mango"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mgf", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Maklew"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mgg", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Mpumpong"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mgh", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Makhuwa-Meetto"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mgi", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Lijili"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mgj", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Abureni"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mgk", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Mawes"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mgl", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Maleu-Kilenge"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mgm", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Mambae"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mgn", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Mbangi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mgo", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Meta'"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mgp", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Eastern Magar"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mgq", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Malila"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mgr", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Mambwe-Lungu"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mgs", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Manda (Tanzania)"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mgt", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Mongol"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mgu", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Mailu"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mgv", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Matengo"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mgw", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Matumbi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mgx", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, Deprecated = new DateOnly(2012, 8, 12), + PreferredValue = null, + Tag = null, Description = [@"Omati"], Comments = [@"see jbk, jmw"], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mgy", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Mbunga"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mgz", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Mbugwe"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mha", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Manda (India)"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mhb", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Mahongwe"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mhc", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Mocho"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mhd", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Mbugu"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mhe", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Besisi", @"Mah Meri"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mhf", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Mamaa"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mhg", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Margu"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mhh", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, Deprecated = new DateOnly(2014, 2, 28), + PreferredValue = null, + Tag = null, Description = [@"Maskoy Pidgin"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mhi", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ma'di"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mhj", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Mogholi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mhk", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Mungaka"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mhl", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Mauwake"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mhm", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Makhuwa-Moniga"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mhn", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Mòcheno"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mho", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Mashi (Zambia)"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mhp", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Balinese Malay"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mhq", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Mandan"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mhr", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "chm", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Eastern Mari"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mhs", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Buru (Indonesia)"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mht", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Mandahuaca"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mhu", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Digaro-Mishmi", @"Darang Deng"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mhw", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Mbukushu"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mhx", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Maru", @"Lhaovo"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mhy", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ma'anyan"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mhz", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Mor (Mor Islands)"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mia", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Miami"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mib", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Atatláhuca Mixtec"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mic", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Mi'kmaq", @"Micmac"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mid", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Mandaic"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mie", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ocotepec Mixtec"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mif", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Mofu-Gudur"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mig", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"San Miguel El Grande Mixtec"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mih", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Chayuco Mixtec"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mii", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Chigmecatitlán Mixtec"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mij", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Abar", @"Mungbam"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mik", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Mikasuki"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mil", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Peñoles Mixtec"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mim", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Alacatlatzala Mixtec"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "min", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "ms", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Minangkabau"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mio", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Pinotepa Nacional Mixtec"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mip", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Apasco-Apoala Mixtec"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "miq", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Mískito"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mir", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Isthmus Mixe"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mis", Added = new DateOnly(2005, 10, 16), - Scope = RecordScope.Special, + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.Special, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Uncoded languages"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mit", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Southern Puebla Mixtec"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "miu", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Cacaloxtepec Mixtec"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "miw", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Akoye"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mix", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Mixtepec Mixtec"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "miy", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ayutla Mixtec"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "miz", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Coatzospan Mixtec"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mja", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, Deprecated = new DateOnly(2011, 8, 16), + PreferredValue = null, + Tag = null, Description = [@"Mahei"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mjb", Added = new DateOnly(2016, 5, 30), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Makalero"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mjc", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"San Juan Colorado Mixtec"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mjd", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Northwest Maidu"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mje", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Muskum"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mjg", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Tu"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mjh", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Mwera (Nyasa)"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mji", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kim Mun"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mjj", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Mawak"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mjk", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Matukar"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mjl", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Mandeali"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mjm", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Medebur"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mjn", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ma (Papua New Guinea)"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mjo", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Malankuravan"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mjp", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Malapandaram"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mjq", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Malaryan"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mjr", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Malavedan"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mjs", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Miship"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mjt", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Sauria Paharia"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mju", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Manna-Dora"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mjv", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Mannan"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mjw", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Karbi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mjx", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Mahali"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mjy", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Mahican"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mjz", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Majhi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mka", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Mbre"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mkb", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Mal Paharia"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mkc", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Siliput"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mke", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Mawchi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mkf", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Miya"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mkg", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Mak (China)"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mkh", Added = new DateOnly(2005, 10, 16), - Scope = RecordScope.Collection, + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.Collection, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Mon-Khmer languages"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mki", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Dhatki"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mkj", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Mokilese"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mkk", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Byep"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mkl", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Mokole"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mkm", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Moklen"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mkn", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kupang Malay"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mko", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Mingang Doso"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mkp", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Moikodi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mkq", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Bay Miwok"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mkr", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Malas"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mks", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Silacayoapan Mixtec"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mkt", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Vamale"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mku", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "man", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Konyanka Maninka"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mkv", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Mafea"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mkw", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kituba (Congo)"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mkx", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kinamiging Manobo"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mky", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"East Makian"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mkz", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Makasae"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mla", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Malo"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mlb", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Mbule"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mlc", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Cao Lan"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mld", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, Deprecated = new DateOnly(2013, 9, 10), + PreferredValue = null, + Tag = null, Description = [@"Malakhel"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mle", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Manambu"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mlf", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Mal"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mlh", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Mape"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mli", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Malimpung"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mlj", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Miltu"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mlk", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ilwana", @"Kiwilwana"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mll", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Malua Bay"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mlm", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Mulam"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mln", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Malango"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mlo", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Mlomp"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mlp", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Bargam"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mlq", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "man", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Western Maninkakan"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mlr", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Vame"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mls", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Masalit"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mlu", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"To'abaita"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mlv", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Motlav", @"Mwotlap"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mlw", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Moloko"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mlx", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Malfaxal", @"Naha'ai"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mlz", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Malaynon"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mma", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Mama"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mmb", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Momina"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mmc", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Michoacán Mazahua"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mmd", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Maonan"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mme", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Mae"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mmf", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Mundat"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mmg", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"North Ambrym"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mmh", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Mehináku"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mmi", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Hember Avu", @"Amben", @"Musar"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mmj", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Majhwar"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mmk", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Mukha-Dora"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mml", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Man Met"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mmm", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Maii"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mmn", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Mamanwa"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mmo", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Mangga Buang"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mmp", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Siawi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mmq", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Musak"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mmr", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "hmn", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Western Xiangxi Miao"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mmt", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Malalamai"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mmu", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Mmaala"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mmv", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Miriti"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mmw", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Emae"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mmx", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Madak"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mmy", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Migaama"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mmz", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Mabaale"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mna", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Mbula"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mnb", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Muna"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mnc", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Manchu"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mnd", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Mondé"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mne", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Naba"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mnf", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Mundani"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mng", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Eastern Mnong"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mnh", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Mono (Democratic Republic of Congo)"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mni", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Manipuri"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mnj", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Munji"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mnk", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "man", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Mandinka"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mnl", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Tiale"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mnm", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Mapena"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mnn", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Southern Mnong"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mno", Added = new DateOnly(2005, 10, 16), - Scope = RecordScope.Collection, + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.Collection, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Manobo languages"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mnp", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "zh", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Min Bei Chinese"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mnq", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Minriq"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mnr", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Mono (USA)"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mns", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Mansi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mnt", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, Deprecated = new DateOnly(2013, 9, 10), + PreferredValue = null, + Tag = null, Description = [@"Maykulan"], Comments = [@"see wnn, xyj, xyk, xyt"], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mnu", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Mer"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mnv", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Rennell-Bellona"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mnw", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Mon"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mnx", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Manikion"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mny", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Manyawa"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mnz", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Moni"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "moa", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Mwan"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "moc", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Mocoví"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mod", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Mobilian"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "moe", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Innu", @"Montagnais"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mof", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, Deprecated = new DateOnly(2010, 3, 11), + PreferredValue = null, + Tag = null, Description = [@"Mohegan-Montauk-Narragansett"], Comments = [@"see xnt, xpq"], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mog", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Mongondow"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "moh", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Mohawk"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "moi", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Mboi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "moj", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Monzombo"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mok", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Morori"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mom", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Mangue"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "moo", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Monom"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mop", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Mopán Maya"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "moq", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Mor (Bomberai Peninsula)"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mor", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Moro"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mos", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Mossi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mot", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Barí"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mou", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Mogum"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mov", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Mohave"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mow", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Moi (Congo)"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mox", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Molima"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "moy", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Shekkacho"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "moz", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Mukulu", @"Gergiko"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mpa", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Mpoto"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mpb", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Malak Malak", @"Mullukmulluk"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mpc", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Mangarrayi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mpd", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Machinere"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mpe", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Majang"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mpg", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Marba"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mph", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Maung"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mpi", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Mpade"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mpj", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Martu Wangka", @"Wangkajunga"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mpk", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Mbara (Chad)"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mpl", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Middle Watut"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mpm", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Yosondúa Mixtec"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mpn", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Mindiri"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mpo", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Miu"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mpp", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Migabac"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mpq", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Matís"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mpr", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Vangunu"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mps", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Dadibi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mpt", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Mian"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mpu", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Makuráp"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mpv", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Mungkip"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mpw", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Mapidian"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mpx", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Misima-Panaeati"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mpy", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Mapia"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mpz", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Mpi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mqa", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Maba (Indonesia)"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mqb", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Mbuko"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mqc", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Mangole"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mqe", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Matepi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mqf", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Momuna"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mqg", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "ms", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kota Bangun Kutai Malay"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mqh", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Tlazoyaltepec Mixtec"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mqi", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Mariri"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mqj", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Mamasa"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mqk", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Rajah Kabunsuwan Manobo"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mql", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Mbelime"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mqm", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"South Marquesan"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mqn", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Moronene"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mqo", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Modole"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mqp", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Manipa"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mqq", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Minokok"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mqr", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Mander"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mqs", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"West Makian"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mqt", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Mok"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mqu", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Mandari"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mqv", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Mosimo"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mqw", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Murupi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mqx", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Mamuju"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mqy", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Manggarai"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mqz", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Pano"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mra", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Mlabri"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mrb", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Marino"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mrc", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Maricopa"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mrd", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Western Magar"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mre", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Martha's Vineyard Sign Language"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mrf", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Elseng"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mrg", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Mising"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mrh", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Mara Chin"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mrj", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "chm", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Western Mari"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mrk", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Hmwaveke"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mrl", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Mortlockese"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mrm", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Merlav", @"Mwerlap"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mrn", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Cheke Holo"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mro", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Mru"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mrp", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Morouas"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mrq", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"North Marquesan"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mrr", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Maria (India)"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mrs", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Maragus"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mrt", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Marghi Central"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mru", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Mono (Cameroon)"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mrv", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Mangareva"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mrw", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Maranao"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mrx", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Maremgi", @"Dineor"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mry", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Mandaya"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mrz", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Marind"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "msb", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Masbatenyo"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "msc", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "man", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Sankaran Maninka"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "msd", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Yucatec Maya Sign Language"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mse", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Musey"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "msf", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Mekwei"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "msg", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Moraid"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "msh", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "mg", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Masikoro Malagasy"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "msi", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "ms", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Sabah Malay"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "msj", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ma (Democratic Republic of Congo)"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "msk", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Mansaka"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "msl", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Molof", @"Poule"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "msm", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Agusan Manobo"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "msn", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Vurës"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mso", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Mombum"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "msp", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Maritsauá"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "msq", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Caac"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "msr", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Mongolian Sign Language"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mss", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"West Masela"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mst", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, Deprecated = new DateOnly(2010, 3, 11), PreferredValue = "mry", + Tag = null, Description = [@"Cataelano Mandaya"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "msu", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Musom"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "msv", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Maslam"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "msw", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Mansoanka"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "msx", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Moresada"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "msy", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Aruamu"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "msz", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Momare"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mta", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Cotabato Manobo"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mtb", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Anyin Morofo"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mtc", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Munit"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mtd", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Mualang"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mte", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Mono (Solomon Islands)"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mtf", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Murik (Papua New Guinea)"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mtg", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Una"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mth", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Munggui"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mti", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Maiwa (Papua New Guinea)"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mtj", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Moskona"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mtk", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Mbe'"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mtl", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Montol"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mtm", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Mator"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mtn", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Matagalpa"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mto", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Totontepec Mixe"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mtp", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Wichí Lhamtés Nocten"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mtq", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Muong"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mtr", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "mwr", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Mewari"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mts", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Yora"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mtt", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Mota"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mtu", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Tututepec Mixtec"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mtv", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Asaro'o"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mtw", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Southern Binukidnon"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mtx", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Tidaá Mixtec"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mty", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Nabi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mua", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Mundang"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mub", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Mubi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "muc", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ajumbu"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mud", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Mednyj Aleut"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mue", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Media Lengua"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mug", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Musgu"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "muh", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Mündü"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mui", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "ms", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Musi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "muj", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Mabire"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "muk", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Mugom"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mul", Added = new DateOnly(2005, 10, 16), - Scope = RecordScope.Special, + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.Special, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Multiple languages"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mum", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Maiwala"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mun", Added = new DateOnly(2005, 10, 16), - Scope = RecordScope.Collection, + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.Collection, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Munda languages"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "muo", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Nyong"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mup", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "raj", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Malvi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "muq", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "hmn", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Eastern Xiangxi Miao"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mur", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Murle"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mus", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Creek"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mut", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Western Muria"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "muu", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Yaaku"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "muv", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Muthuvan"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mux", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Bo-Ung"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "muy", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Muyang"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "muz", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Mursi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mva", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Manam"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mvb", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Mattole"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mvd", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Mamboru"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mve", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "mwr", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Marwari (Pakistan)"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mvf", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "mn", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Peripheral Mongolian"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mvg", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Yucuañe Mixtec"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mvh", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Mulgi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mvi", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Miyako"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mvk", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Mekmek"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mvl", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Mbara (Australia)"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mvm", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, Deprecated = new DateOnly(2021, 2, 20), + PreferredValue = null, + Tag = null, Description = [@"Muya"], Comments = [@"see emq, wmg"], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mvn", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Minaveha"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mvo", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Marovo"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mvp", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Duri"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mvq", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Moere"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mvr", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Marau"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mvs", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Massep"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mvt", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Mpotovoro"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mvu", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Marfa"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mvv", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Tagal Murut"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mvw", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Machinga"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mvx", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Meoswar"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mvy", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Indus Kohistani"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mvz", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Mesqan"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mwa", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Mwatebu"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mwb", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Juwal"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mwc", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Are"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mwd", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, Deprecated = new DateOnly(2013, 9, 10), + PreferredValue = null, + Tag = null, Description = [@"Mudbura"], Comments = [@"see dmw, xrq"], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mwe", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Mwera (Chimwera)"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mwf", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Murrinh-Patha"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mwg", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Aiklep"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mwh", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Mouk-Aria"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mwi", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Labo", @"Ninde"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mwj", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, Deprecated = new DateOnly(2015, 2, 12), PreferredValue = "vaj", + Tag = null, Description = [@"Maligo"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mwk", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "man", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kita Maninkakan"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mwl", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Mirandese"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mwm", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Sar"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mwn", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Nyamwanga"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mwo", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Central Maewo"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mwp", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kala Lagaw Ya"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mwq", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Mün Chin"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mwr", Added = new DateOnly(2005, 10, 16), - Scope = RecordScope.MacroLanguage, + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.MacroLanguage, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Marwari"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mws", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Mwimbi-Muthambi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mwt", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Moken"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mwu", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Mittu"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mwv", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Mentawai"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mww", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "hmn", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Hmong Daw"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mwx", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, Deprecated = new DateOnly(2018, 3, 8), + PreferredValue = null, + Tag = null, Description = [@"Mediak"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mwy", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, Deprecated = new DateOnly(2018, 3, 8), + PreferredValue = null, + Tag = null, Description = [@"Mosiro"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mwz", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Moingi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mxa", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Northwest Oaxaca Mixtec"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mxb", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Tezoatlán Mixtec"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mxc", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Manyika"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mxd", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Modang"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mxe", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Mele-Fila"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mxf", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Malgbe"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mxg", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Mbangala"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mxh", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Mvuba"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mxi", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Mozarabic"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mxj", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Miju-Mishmi", @"Geman Deng"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mxk", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Monumbo"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mxl", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Maxi Gbe"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mxm", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Meramera"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mxn", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Moi (Indonesia)"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mxo", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Mbowe"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mxp", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Tlahuitoltepec Mixe"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mxq", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Juquila Mixe"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mxr", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Murik (Malaysia)"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mxs", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Huitepec Mixtec"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mxt", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Jamiltepec Mixtec"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mxu", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Mada (Cameroon)"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mxv", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Metlatónoc Mixtec"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mxw", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Namo"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mxx", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Mahou", @"Mawukakan"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mxy", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Southeastern Nochixtlán Mixtec"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mxz", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Central Masela"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "myb", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Mbay"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "myc", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Mayeka"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "myd", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, Deprecated = new DateOnly(2019, 4, 16), PreferredValue = "aog", + Tag = null, Description = [@"Maramba"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mye", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Myene"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "myf", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Bambassi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "myg", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Manta"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "myh", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Makah"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "myi", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, Deprecated = new DateOnly(2019, 4, 16), + PreferredValue = null, + Tag = null, Description = [@"Mina (India)"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "myj", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Mangayat"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "myk", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Mamara Senoufo"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "myl", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Moma"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mym", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Me'en"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "myn", Added = new DateOnly(2005, 10, 16), - Scope = RecordScope.Collection, + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.Collection, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Mayan languages"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "myo", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Anfillo"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "myp", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Pirahã"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "myq", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "man", Deprecated = new DateOnly(2013, 9, 10), + PreferredValue = null, + Tag = null, Description = [@"Forest Maninka"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "myr", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Muniche"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mys", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Mesmes"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "myt", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, Deprecated = new DateOnly(2010, 3, 11), PreferredValue = "mry", + Tag = null, Description = [@"Sangab Mandaya"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "myu", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Mundurukú"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "myv", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Erzya"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "myw", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Muyuw"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "myx", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Masaaba"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "myy", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Macuna"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "myz", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Classical Mandaic"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mza", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Santa María Zacatepec Mixtec"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mzb", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Tumzabt"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mzc", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Madagascar Sign Language"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mzd", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Malimba"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mze", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Morawa"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mzg", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Monastic Sign Language"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mzh", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Wichí Lhamtés Güisnay"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mzi", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ixcatlán Mazatec"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mzj", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Manya"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mzk", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Nigeria Mambila"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mzl", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Mazatlán Mixe"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mzm", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Mumuye"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mzn", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Mazanderani"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mzo", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Matipuhy"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mzp", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Movima"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mzq", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Mori Atas"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mzr", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Marúbo"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mzs", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Macanese"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mzt", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Mintil"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mzu", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Inapang"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mzv", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Manza"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mzw", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Deg"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mzx", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Mawayana"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mzy", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Mozambican Sign Language"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "mzz", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Maiadomu"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "naa", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Namla"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "nab", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Southern Nambikuára"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "nac", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Narak"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "nad", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, Deprecated = new DateOnly(2016, 5, 30), PreferredValue = "xny", + Tag = null, Description = [@"Nijadali"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "nae", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Naka'ela"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "naf", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Nabak"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "nag", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Naga Pidgin"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "nah", Added = new DateOnly(2005, 10, 16), - Scope = RecordScope.Collection, + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.Collection, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Nahuatl languages"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "nai", Added = new DateOnly(2005, 10, 16), - Scope = RecordScope.Collection, + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.Collection, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"North American Indian languages"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "naj", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Nalu"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "nak", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Nakanai"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "nal", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Nalik"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "nam", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ngan'gityemerri"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "nan", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "zh", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Min Nan Chinese"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "nao", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Naaba"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "nap", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Neapolitan"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "naq", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Khoekhoe", @"Nama (Namibia)"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "nar", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Iguta"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "nas", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Naasioi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "nat", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ca̱hungwa̱rya̱", @"Hungworo"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "naw", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Nawuri"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "nax", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Nakwi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "nay", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ngarrindjeri"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "naz", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Coatepec Nahuatl"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "nba", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Nyemba"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "nbb", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ndoe"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "nbc", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Chang Naga"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "nbd", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ngbinda"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "nbe", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Konyak Naga"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "nbf", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, Deprecated = new DateOnly(2011, 8, 16), + PreferredValue = null, + Tag = null, Description = [@"Naxi"], Comments = [@"see nru, nxq"], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "nbg", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Nagarchal"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "nbh", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ngamo"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "nbi", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Mao Naga"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "nbj", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ngarinyman"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "nbk", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Nake"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "nbm", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ngbaka Ma'bo"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "nbn", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kuri"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "nbo", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Nkukoli"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "nbp", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Nnam"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "nbq", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Nggem"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "nbr", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Numana"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "nbs", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Namibian Sign Language"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "nbt", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Na"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "nbu", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Rongmei Naga"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "nbv", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ngamambo"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "nbw", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Southern Ngbandi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "nbx", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, Deprecated = new DateOnly(2013, 9, 10), + PreferredValue = null, + Tag = null, Description = [@"Ngura"], Comments = [@"see ekc, gll, jbi, xpt, xwk"], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "nby", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ningera"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "nca", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Iyo"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ncb", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Central Nicobarese"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ncc", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ponam"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ncd", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Nachering"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "nce", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Yale"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ncf", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Notsi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ncg", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Nisga'a"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "nch", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Central Huasteca Nahuatl"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "nci", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Classical Nahuatl"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ncj", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Northern Puebla Nahuatl"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "nck", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Na-kara"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ncl", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Michoacán Nahuatl"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ncm", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Nambo"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ncn", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Nauna"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "nco", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Sibe"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ncp", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, Deprecated = new DateOnly(2018, 3, 8), PreferredValue = "kdz", + Tag = null, Description = [@"Ndaktup"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ncq", Added = new DateOnly(2017, 2, 23), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Northern Katang"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ncr", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ncane"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ncs", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Nicaraguan Sign Language"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "nct", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Chothe Naga"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ncu", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Chumburung"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ncx", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Central Puebla Nahuatl"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ncz", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Natchez"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "nda", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ndasa"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ndb", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kenswei Nsei"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ndc", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ndau"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ndd", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Nde-Nsele-Nta"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ndf", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Nadruvian"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ndg", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ndengereko"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ndh", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ndali"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ndi", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Samba Leko"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ndj", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ndamba"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ndk", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ndaka"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ndl", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ndolo"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ndm", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ndam"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ndn", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ngundi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ndp", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ndo"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ndq", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ndombe"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ndr", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ndoola"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "nds", Added = new DateOnly(2005, 10, 16), SuppressScript = "Latn", + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Low German", @"Low Saxon"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ndt", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ndunga"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ndu", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Dugun"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ndv", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ndut"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ndw", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ndobo"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ndx", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Nduga"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ndy", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Lutos"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ndz", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ndogo"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "nea", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Eastern Ngad'a"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "neb", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Toura (Côte d'Ivoire)"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "nec", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Nedebang"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ned", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Nde-Gbite"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "nee", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Nêlêmwa-Nixumwak"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "nef", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Nefamese"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "neg", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Negidal"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "neh", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Nyenkha"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "nei", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Neo-Hittite"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "nej", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Neko"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "nek", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Neku"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "nem", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Nemi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "nen", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Nengone"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "neo", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ná-Meo"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "neq", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"North Central Mixe"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ner", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Yahadian"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "nes", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Bhoti Kinnauri"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "net", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Nete"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "neu", Added = new DateOnly(2012, 8, 12), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Neo"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "nev", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Nyaheun"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "new", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Nepal Bhasa", @"Newar", @"Newari"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "nex", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Neme"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ney", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Neyo"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "nez", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Nez Perce"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "nfa", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Dhao"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "nfd", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ahwai"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "nfl", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ayiwo", @"Äiwoo"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "nfr", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Nafaanra"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "nfu", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Mfumte"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "nga", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ngbaka"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ngb", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Northern Ngbandi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ngc", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ngombe (Democratic Republic of Congo)"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ngd", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ngando (Central African Republic)"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "nge", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ngemba"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ngf", Added = new DateOnly(2009, 7, 29), - Scope = RecordScope.Collection, + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.Collection, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Trans-New Guinea languages"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ngg", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ngbaka Manza"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ngh", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Nǁng"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ngi", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ngizim"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ngj", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ngie"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ngk", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Dalabon"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ngl", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Lomwe"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ngm", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ngatik Men's Creole"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ngn", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ngwo"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ngo", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, Deprecated = new DateOnly(2021, 2, 20), + PreferredValue = null, + Tag = null, Description = [@"Ngoni"], Comments = [@"see xnj, xnq"], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ngp", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ngulu"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ngq", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ngurimi", @"Ngoreme"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ngr", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Engdewu"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ngs", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Gvoko"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ngt", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kriang", @"Ngeq"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ngu", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Guerrero Nahuatl"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ngv", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Nagumi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ngw", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ngwaba"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ngx", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Nggwahyi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ngy", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Tibea"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ngz", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ngungwel"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "nha", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Nhanda"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "nhb", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Beng"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "nhc", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Tabasco Nahuatl"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "nhd", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "gn", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Chiripá", @"Ava Guaraní"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "nhe", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Eastern Huasteca Nahuatl"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "nhf", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Nhuwala"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "nhg", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Tetelcingo Nahuatl"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "nhh", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Nahari"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "nhi", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Zacatlán-Ahuacatlán-Tepetzintla Nahuatl"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "nhk", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Isthmus-Cosoleacaque Nahuatl"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "nhm", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Morelos Nahuatl"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "nhn", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Central Nahuatl"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "nho", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Takuu"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "nhp", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Isthmus-Pajapan Nahuatl"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "nhq", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Huaxcaleca Nahuatl"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "nhr", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Naro"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "nht", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ometepec Nahuatl"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "nhu", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Noone"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "nhv", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Temascaltepec Nahuatl"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "nhw", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Western Huasteca Nahuatl"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "nhx", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Isthmus-Mecayapan Nahuatl"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "nhy", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Northern Oaxaca Nahuatl"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "nhz", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Santa María La Alta Nahuatl"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "nia", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Nias"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "nib", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Nakame"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "nic", Added = new DateOnly(2005, 10, 16), - Scope = RecordScope.Collection, + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.Collection, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Niger-Kordofanian languages"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "nid", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ngandi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "nie", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Niellim"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "nif", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Nek"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "nig", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ngalakgan"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "nih", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Nyiha (Tanzania)"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "nii", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Nii"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "nij", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ngaju"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "nik", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Southern Nicobarese"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "nil", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Nila"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "nim", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Nilamba"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "nin", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ninzo"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "nio", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Nganasan"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "niq", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "kln", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Nandi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "nir", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Nimboran"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "nis", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Nimi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "nit", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Southeastern Kolami"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "niu", Added = new DateOnly(2005, 10, 16), SuppressScript = "Latn", + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Niuean"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "niv", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Gilyak"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "niw", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Nimo"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "nix", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Hema"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "niy", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ngiti"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "niz", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ningil"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "nja", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Nzanyi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "njb", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Nocte Naga"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "njd", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ndonde Hamba"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "njh", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Lotha Naga"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "nji", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Gudanji"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "njj", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Njen"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "njl", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Njalgulgule"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "njm", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Angami Naga"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "njn", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Liangmai Naga"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "njo", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ao Naga"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "njr", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Njerep"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "njs", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Nisa"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "njt", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ndyuka-Trio Pidgin"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "nju", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ngadjunmaya"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "njx", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kunyi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "njy", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Njyem"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "njz", Added = new DateOnly(2012, 8, 12), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Nyishi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "nka", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Nkoya"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "nkb", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Khoibu Naga"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "nkc", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Nkongho"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "nkd", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Koireng"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "nke", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Duke"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "nkf", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Inpui Naga"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "nkg", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Nekgini"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "nkh", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Khezha Naga"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "nki", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Thangal Naga"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "nkj", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Nakai"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "nkk", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Nokuku"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "nkm", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Namat"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "nkn", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Nkangala"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "nko", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Nkonya"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "nkp", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Niuatoputapu"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "nkq", Added = new DateOnly(2010, 4, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Nkami"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "nkr", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Nukuoro"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "nks", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"North Asmat"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "nkt", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Nyika (Tanzania)"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "nku", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Bouna Kulango"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "nkv", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Nyika (Malawi and Zambia)"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "nkw", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Nkutu"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "nkx", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Nkoroo"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "nkz", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Nkari"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "nla", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ngombale"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "nlc", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Nalca"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "nle", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "luy", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"East Nyala"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "nlg", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Gela"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "nli", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Grangali"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "nlj", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Nyali"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "nlk", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ninia Yali"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "nll", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Nihali"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "nlm", Added = new DateOnly(2018, 3, 8), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Mankiyali"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "nln", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, Deprecated = new DateOnly(2012, 8, 12), + PreferredValue = null, + Tag = null, Description = [@"Durango Nahuatl"], Comments = [@"see azd, azn"], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "nlo", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ngul"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "nlq", Added = new DateOnly(2013, 9, 10), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Lao Naga"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "nlr", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, Deprecated = new DateOnly(2013, 9, 10), + PreferredValue = null, + Tag = null, Description = [@"Ngarla"], Comments = [@"see nrk, ywg"], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "nlu", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Nchumbulu"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "nlv", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Orizaba Nahuatl"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "nlw", Added = new DateOnly(2013, 9, 10), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Walangama"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "nlx", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Nahali"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "nly", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Nyamal"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "nlz", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Nalögo"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "nma", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Maram Naga"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "nmb", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Big Nambas", @"V'ënen Taut"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "nmc", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ngam"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "nmd", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ndumu"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "nme", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Mzieme Naga"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "nmf", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Tangkhul Naga (India)"], Comments = [@"see ntx"], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "nmg", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kwasio"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "nmh", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Monsang Naga"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "nmi", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Nyam"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "nmj", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ngombe (Central African Republic)"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "nmk", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Namakura"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "nml", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ndemli"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "nmm", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Manangba"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "nmn", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"ǃXóõ"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "nmo", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Moyon Naga"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "nmp", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Nimanbur"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "nmq", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Nambya"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "nmr", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Nimbari"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "nms", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Letemboi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "nmt", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Namonuito"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "nmu", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Northeast Maidu"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "nmv", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ngamini"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "nmw", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Nimoa", @"Rifao"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "nmx", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Nama (Papua New Guinea)"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "nmy", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Namuyi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "nmz", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Nawdm"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "nna", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Nyangumarta"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "nnb", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Nande"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "nnc", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Nancere"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "nnd", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"West Ambae"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "nne", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ngandyera"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "nnf", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ngaing"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "nng", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Maring Naga"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "nnh", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ngiemboon"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "nni", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"North Nuaulu"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "nnj", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Nyangatom"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "nnk", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Nankina"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "nnl", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Northern Rengma Naga"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "nnm", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Namia"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "nnn", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ngete"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "nnp", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Wancho Naga"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "nnq", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ngindo"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "nnr", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Narungga"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "nns", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, Deprecated = new DateOnly(2019, 4, 16), PreferredValue = "nbr", + Tag = null, Description = [@"Ningye"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "nnt", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Nanticoke"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "nnu", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Dwang"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "nnv", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Nugunu (Australia)"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "nnw", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Southern Nuni"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "nnx", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, Deprecated = new DateOnly(2015, 2, 12), PreferredValue = "ngv", + Tag = null, Description = [@"Ngong"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "nny", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Nyangga"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "nnz", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Nda'nda'"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "noa", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Woun Meu"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "noc", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Nuk"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "nod", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Northern Thai"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "noe", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Nimadi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "nof", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Nomane"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "nog", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Nogai"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "noh", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Nomu"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "noi", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Noiri"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "noj", Added = new DateOnly(2010, 3, 11), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Nonuya"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "nok", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Nooksack"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "nol", Added = new DateOnly(2013, 9, 10), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Nomlaki"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "nom", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, Deprecated = new DateOnly(2023, 3, 17), PreferredValue = "cbr", + Tag = null, Description = [@"Nocamán"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "non", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Old Norse"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "noo", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, Deprecated = new DateOnly(2011, 8, 16), + PreferredValue = null, + Tag = null, Description = [@"Nootka"], Comments = [@"see dtd, nuk"], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "nop", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Numanggang"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "noq", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ngongo"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "nos", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Eastern Nisu"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "not", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Nomatsiguenga"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "nou", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ewage-Notu"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "nov", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Novial"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "now", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Nyambo"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "noy", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Noy"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "noz", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Nayi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "npa", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Nar Phu"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "npb", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Nupbikha"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "npg", Added = new DateOnly(2012, 8, 12), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ponyo-Gongwang Naga"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "nph", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Phom Naga"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "npi", Added = new DateOnly(2012, 8, 12), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "ne", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Nepali (individual language)"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "npl", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Southeastern Puebla Nahuatl"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "npn", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Mondropolon"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "npo", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Pochuri Naga"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "nps", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Nipsan"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "npu", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Puimei Naga"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "npx", Added = new DateOnly(2017, 2, 23), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Noipx"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "npy", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Napu"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "nqg", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Southern Nago"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "nqk", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kura Ede Nago"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "nql", Added = new DateOnly(2017, 2, 23), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ngendelengo"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "nqm", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ndom"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "nqn", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Nen"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "nqo", Added = new DateOnly(2006, 6, 5), SuppressScript = "Nkoo", + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"N'Ko", @"N’Ko"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "nqq", Added = new DateOnly(2013, 9, 10), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kyan-Karyaw Naga"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "nqt", Added = new DateOnly(2021, 2, 20), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Nteng"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "nqy", Added = new DateOnly(2012, 8, 12), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Akyaung Ari Naga"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "nra", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ngom"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "nrb", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Nara"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "nrc", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Noric"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "nre", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Southern Rengma Naga"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "nrf", Added = new DateOnly(2015, 2, 12), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Jèrriais", @"Guernésiais", @"Sercquiais"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "nrg", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Narango"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "nri", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Chokri Naga"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "nrk", Added = new DateOnly(2013, 9, 10), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ngarla"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "nrl", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ngarluma"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "nrm", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Narom"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "nrn", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Norn"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "nrp", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"North Picene"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "nrr", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Norra", @"Nora"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "nrt", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Northern Kalapuya"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "nru", Added = new DateOnly(2011, 8, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Narua"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "nrx", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ngurmbur"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "nrz", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Lala"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "nsa", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Sangtam Naga"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "nsb", Added = new DateOnly(2020, 3, 28), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Lower Nossob"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "nsc", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Nshi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "nsd", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Southern Nisu"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "nse", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Nsenga"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "nsf", Added = new DateOnly(2012, 8, 12), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Northwestern Nisu"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "nsg", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ngasa"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "nsh", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ngoshie"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "nsi", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Nigerian Sign Language"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "nsk", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Naskapi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "nsl", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Norwegian Sign Language"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "nsm", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Sumi Naga"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "nsn", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Nehan"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "nso", Added = new DateOnly(2005, 10, 16), SuppressScript = "Latn", + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Pedi", @"Northern Sotho", @"Sepedi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "nsp", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Nepalese Sign Language"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "nsq", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Northern Sierra Miwok"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "nsr", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Maritime Sign Language"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "nss", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Nali"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "nst", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Tase Naga"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "nsu", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Sierra Negra Nahuatl"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "nsv", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Southwestern Nisu"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "nsw", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Navut"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "nsx", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Nsongo"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "nsy", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Nasal"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "nsz", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Nisenan"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ntd", Added = new DateOnly(2016, 5, 30), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Northern Tidung"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "nte", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, Deprecated = new DateOnly(2024, 12, 12), PreferredValue = "eko", + Tag = null, Description = [@"Nathembo"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ntg", Added = new DateOnly(2013, 9, 10), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ngantangarra"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "nti", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Natioro"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ntj", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ngaanyatjarra"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ntk", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ikoma-Nata-Isenye"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ntm", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Nateni"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "nto", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ntomba"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ntp", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Northern Tepehuan"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ntr", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Delo"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "nts", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, Deprecated = new DateOnly(2016, 5, 30), PreferredValue = "pij", + Tag = null, Description = [@"Natagaimas"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ntu", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Natügu"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ntw", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Nottoway"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ntx", Added = new DateOnly(2012, 8, 12), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Tangkhul Naga (Myanmar)"], Comments = [@"see nmf"], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "nty", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Mantsi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ntz", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Natanzi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "nua", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Yuanga"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "nub", Added = new DateOnly(2005, 10, 16), - Scope = RecordScope.Collection, + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.Collection, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Nubian languages"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "nuc", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Nukuini"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "nud", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ngala"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "nue", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ngundu"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "nuf", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Nusu"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "nug", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Nungali"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "nuh", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ndunda"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "nui", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ngumbi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "nuj", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Nyole"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "nuk", Added = new DateOnly(2011, 8, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Nuu-chah-nulth", @"Nuuchahnulth"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "nul", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Nusa Laut"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "num", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Niuafo'ou"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "nun", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Anong"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "nuo", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Nguôn"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "nup", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Nupe-Nupe-Tako"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "nuq", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Nukumanu"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "nur", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Nukuria"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "nus", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Nuer"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "nut", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Nung (Viet Nam)"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "nuu", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ngbundu"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "nuv", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Northern Nuni"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "nuw", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Nguluwan"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "nux", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Mehek"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "nuy", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Nunggubuyu"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "nuz", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Tlamacazapa Nahuatl"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "nvh", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Nasarian"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "nvm", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Namiae"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "nvo", Added = new DateOnly(2012, 8, 12), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Nyokon"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "nwa", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Nawathinehena"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "nwb", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Nyabwa"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "nwc", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Classical Newari", @"Classical Nepal Bhasa", @"Old Newari"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "nwe", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ngwe"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "nwg", Added = new DateOnly(2012, 8, 12), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ngayawung"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "nwi", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Southwest Tanna"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "nwm", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Nyamusa-Molo"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "nwo", Added = new DateOnly(2012, 8, 12), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Nauo"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "nwr", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Nawaru"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "nww", Added = new DateOnly(2022, 2, 25), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ndwewe"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "nwx", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Middle Newar"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "nwy", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Nottoway-Meherrin"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "nxa", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Nauete"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "nxd", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ngando (Democratic Republic of Congo)"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "nxe", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Nage"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "nxg", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ngad'a"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "nxi", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Nindi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "nxk", Added = new DateOnly(2012, 8, 12), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Koki Naga"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "nxl", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"South Nuaulu"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "nxm", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Numidian"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "nxn", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ngawun"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "nxo", Added = new DateOnly(2015, 2, 12), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ndambomo"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "nxq", Added = new DateOnly(2011, 8, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Naxi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "nxr", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ninggerum"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "nxu", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, Deprecated = new DateOnly(2020, 3, 28), PreferredValue = "bpp", + Tag = null, Description = [@"Narau"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "nxx", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Nafri"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "nyb", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Nyangbo"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "nyc", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Nyanga-li"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "nyd", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "luy", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Nyore", @"Olunyole"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "nye", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Nyengo"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "nyf", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Giryama", @"Kigiryama"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "nyg", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Nyindu"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "nyh", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Nyikina"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "nyi", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ama (Sudan)"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "nyj", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Nyanga"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "nyk", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Nyaneka"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "nyl", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Nyeu"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "nym", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Nyamwezi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "nyn", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Nyankole"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "nyo", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Nyoro"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "nyp", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Nyang'i"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "nyq", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Nayini"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "nyr", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Nyiha (Malawi)"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "nys", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Nyungar"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "nyt", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Nyawaygi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "nyu", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Nyungwe"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "nyv", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Nyulnyul"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "nyw", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Nyaw"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "nyx", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Nganyaywana"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "nyy", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Nyakyusa-Ngonde"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "nza", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Tigon Mbembe"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "nzb", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Njebi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "nzd", Added = new DateOnly(2018, 3, 8), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Nzadi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "nzi", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Nzima"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "nzk", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Nzakara"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "nzm", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Zeme Naga"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "nzr", Added = new DateOnly(2023, 3, 17), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Dir-Nyamzak-Mbarimi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "nzs", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"New Zealand Sign Language"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "nzu", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Teke-Nzikou"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "nzy", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Nzakambay"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "nzz", Added = new DateOnly(2010, 3, 11), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Nanga Dama Dogon"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "oaa", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Orok"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "oac", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Oroch"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "oak", Added = new DateOnly(2025, 5, 14), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Noakhali", @"Noakhailla"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "oar", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [ @"Old Aramaic (up to 700 BCE)", @@ -47879,3133 +78584,5160 @@ public static Rfc5646Data Create() => }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "oav", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Old Avar"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "obi", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Obispeño"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "obk", Added = new DateOnly(2010, 3, 11), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "bnc", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Southern Bontok"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "obl", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Oblo"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "obm", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Moabite"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "obo", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Obo Manobo"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "obr", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Old Burmese"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "obt", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Old Breton"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "obu", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Obulom"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "oca", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ocaina"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "och", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Old Chinese"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ocm", Added = new DateOnly(2021, 2, 20), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Old Cham"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "oco", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Old Cornish"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ocu", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Atzingo Matlatzinca"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "oda", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Odut"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "odk", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Od"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "odt", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Old Dutch"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "odu", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Odual"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ofo", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ofo"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ofs", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Old Frisian"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ofu", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Efutop"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ogb", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ogbia"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ogc", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ogbah"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "oge", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Old Georgian"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ogg", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ogbogolo"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ogo", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Khana"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ogu", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ogbronuagum"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "oht", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Old Hittite"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ohu", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Old Hungarian"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "oia", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Oirata"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "oie", Added = new DateOnly(2022, 2, 25), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Okolie"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "oin", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Inebu One"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ojb", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "oj", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Northwestern Ojibwa"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ojc", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "oj", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Central Ojibwa"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ojg", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "oj", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Eastern Ojibwa"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ojp", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Old Japanese"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ojs", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "oj", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Severn Ojibwa"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ojv", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ontong Java"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ojw", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "oj", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Western Ojibwa"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "oka", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Okanagan"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "okb", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Okobo"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "okc", Added = new DateOnly(2021, 2, 20), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kobo"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "okd", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Okodia"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "oke", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Okpe (Southwestern Edo)"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "okg", Added = new DateOnly(2012, 8, 12), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Koko Babangk"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "okh", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Koresh-e Rostam"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "oki", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "kln", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Okiek"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "okj", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Oko-Juwoi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "okk", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kwamtim One"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "okl", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Old Kentish Sign Language"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "okm", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Middle Korean (10th-16th cent.)"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "okn", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Oki-No-Erabu"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "oko", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Old Korean (3rd-9th cent.)"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "okr", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kirike"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "oks", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Oko-Eni-Osayen"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "oku", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Oku"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "okv", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Orokaiva"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "okx", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Okpe (Northwestern Edo)"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "okz", Added = new DateOnly(2021, 2, 20), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Old Khmer"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ola", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Walungge"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "old", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Mochi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ole", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Olekha"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "olk", Added = new DateOnly(2013, 9, 10), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Olkol"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "olm", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Oloma"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "olo", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Livvi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "olr", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Olrat"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "olt", Added = new DateOnly(2014, 2, 28), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Old Lithuanian"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "olu", Added = new DateOnly(2016, 5, 30), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kuvale"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "oma", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Omaha-Ponca"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "omb", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"East Ambae"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "omc", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Mochica"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ome", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, Deprecated = new DateOnly(2016, 5, 30), + PreferredValue = null, + Tag = null, Description = [@"Omejes"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "omg", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Omagua"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "omi", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Omi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "omk", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Omok"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "oml", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ombo"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "omn", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Minoan"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "omo", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Utarmbung"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "omp", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Old Manipuri"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "omq", Added = new DateOnly(2009, 7, 29), - Scope = RecordScope.Collection, + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.Collection, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Oto-Manguean languages"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "omr", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Old Marathi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "omt", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Omotik"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "omu", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Omurano"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "omv", Added = new DateOnly(2009, 7, 29), - Scope = RecordScope.Collection, + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.Collection, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Omotic languages"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "omw", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"South Tairora"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "omx", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Old Mon"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "omy", Added = new DateOnly(2021, 2, 20), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Old Malay"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ona", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ona"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "onb", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Lingao"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "one", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Oneida"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ong", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Olo"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "oni", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Onin"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "onj", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Onjob"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "onk", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kabore One"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "onn", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Onobasulu"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ono", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Onondaga"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "onp", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Sartang"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "onr", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Northern One"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ons", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ono"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ont", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ontenu"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "onu", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Unua"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "onw", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Old Nubian"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "onx", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Onin Based Pidgin"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ood", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Tohono O'odham"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "oog", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ong"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "oon", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Önge"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "oor", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Oorlams"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "oos", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Old Ossetic"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "opa", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Okpamheri"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "opk", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kopkaka"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "opm", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Oksapmin"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "opo", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Opao"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "opt", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Opata"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "opy", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ofayé"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ora", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Oroha"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "orc", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "om", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Orma"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ore", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Orejón"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "org", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Oring"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "orh", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Oroqen"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "orn", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "ms", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Orang Kanaq"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "oro", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Orokolo"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "orr", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Oruma"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ors", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "ms", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Orang Seletar"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ort", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Adivasi Oriya"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "oru", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ormuri"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "orv", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Old Russian"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "orw", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Oro Win"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "orx", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Oro"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ory", Added = new DateOnly(2012, 8, 12), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "or", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Odia (individual language)", @"Oriya (individual language)"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "orz", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ormu"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "osa", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Osage"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "osc", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Oscan"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "osi", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Osing"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "osn", Added = new DateOnly(2021, 2, 20), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Old Sundanese"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "oso", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ososo"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "osp", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Old Spanish"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ost", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Osatu"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "osu", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Southern One"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "osx", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Old Saxon"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ota", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ottoman Turkish (1500-1928)"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "otb", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Old Tibetan"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "otd", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ot Danum"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ote", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Mezquital Otomi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "oti", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Oti"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "otk", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Old Turkish"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "otl", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Tilapa Otomi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "otm", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Eastern Highland Otomi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "otn", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Tenango Otomi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "oto", Added = new DateOnly(2005, 10, 16), - Scope = RecordScope.Collection, + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.Collection, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Otomian languages"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "otq", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Querétaro Otomi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "otr", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Otoro"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ots", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Estado de México Otomi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ott", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Temoaya Otomi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "otu", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Otuke"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "otw", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "oj", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ottawa"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "otx", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Texcatepec Otomi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "oty", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Old Tamil"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "otz", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ixtenco Otomi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "oua", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Tagargrent"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "oub", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Glio-Oubi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "oue", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Oune"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "oui", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Old Uighur"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "oum", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ouma"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "oun", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, Deprecated = new DateOnly(2015, 2, 12), PreferredValue = "vaj", + Tag = null, Description = [@"ǃOǃung"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ovd", Added = new DateOnly(2016, 6, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Elfdalian", @"Övdalian"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "owi", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Owiniga"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "owl", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Old Welsh"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "oyb", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Oy"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "oyd", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Oyda"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "oym", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Wayampi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "oyy", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Oya'oya"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ozm", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Koonzime"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "paa", Added = new DateOnly(2005, 10, 16), - Scope = RecordScope.Collection, + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.Collection, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Papuan languages"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "pab", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Parecís"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "pac", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Pacoh"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "pad", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Paumarí"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "pae", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Pagibete"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "paf", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Paranawát"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "pag", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Pangasinan"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "pah", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Tenharim"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "pai", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Pe"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "pak", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Parakanã"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "pal", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Pahlavi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "pam", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Pampanga", @"Kapampangan"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "pao", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Northern Paiute"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "pap", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Papiamento"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "paq", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Parya"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "par", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Panamint", @"Timbisha"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "pas", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Papasena"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "pat", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, Deprecated = new DateOnly(2021, 2, 20), PreferredValue = "kxr", + Tag = null, Description = [@"Papitalai"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "pau", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Palauan"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "pav", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Pakaásnovos"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "paw", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Pawnee"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "pax", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Pankararé"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "pay", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Pech"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "paz", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Pankararú"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "pbb", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Páez"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "pbc", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Patamona"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "pbe", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Mezontla Popoloca"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "pbf", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Coyotepec Popoloca"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "pbg", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Paraujano"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "pbh", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"E'ñapa Woromaipu"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "pbi", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Parkwa"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "pbl", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Mak (Nigeria)"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "pbm", Added = new DateOnly(2018, 3, 8), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Puebla Mazatec"], Comments = [@"see also maa"], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "pbn", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kpasam"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "pbo", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Papel"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "pbp", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Badyara"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "pbr", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Pangwa"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "pbs", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Central Pame"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "pbt", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "ps", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Southern Pashto"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "pbu", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "ps", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Northern Pashto"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "pbv", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Pnar"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "pby", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Pyu (Papua New Guinea)"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "pbz", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, Deprecated = new DateOnly(2012, 8, 12), + PreferredValue = null, + Tag = null, Description = [@"Palu"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "pca", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Santa Inés Ahuatempan Popoloca"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "pcb", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Pear"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "pcc", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Bouyei"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "pcd", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Picard"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "pce", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ruching Palaung"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "pcf", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Paliyan"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "pcg", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Paniya"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "pch", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Pardhan"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "pci", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Duruwa"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "pcj", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Parenga"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "pck", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Paite Chin"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "pcl", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Pardhi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "pcm", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Nigerian Pidgin"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "pcn", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Piti"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "pcp", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Pacahuara"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "pcr", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, Deprecated = new DateOnly(2013, 9, 10), PreferredValue = "adx", + Tag = null, Description = [@"Panang"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "pcw", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Pyapun"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "pda", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Anam"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "pdc", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Pennsylvania German"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "pdi", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Pa Di"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "pdn", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Podena", @"Fedan"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "pdo", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Padoe"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "pdt", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Plautdietsch"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "pdu", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kayan"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "pea", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Peranakan Indonesian"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "peb", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Eastern Pomo"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ped", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Mala (Papua New Guinea)"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "pee", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Taje"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "pef", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Northeastern Pomo"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "peg", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Pengo"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "peh", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Bonan"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "pei", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Chichimeca-Jonaz"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "pej", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Northern Pomo"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "pek", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Penchal"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "pel", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "ms", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Pekal"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "pem", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Phende"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "peo", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Old Persian (ca. 600-400 B.C.)"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "pep", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kunja"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "peq", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Southern Pomo"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "pes", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "fa", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Iranian Persian"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "pev", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Pémono"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "pex", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Petats"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "pey", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Petjo"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "pez", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Eastern Penan"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "pfa", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Pááfang"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "pfe", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Pere"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "pfl", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Pfaelzisch"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "pga", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "ar", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Sudanese Creole Arabic"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "pgd", Added = new DateOnly(2015, 2, 12), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Gāndhārī"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "pgg", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Pangwali"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "pgi", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Pagi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "pgk", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Rerep"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "pgl", Added = new DateOnly(2011, 8, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Primitive Irish"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "pgn", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Paelignian"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "pgs", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Pangseng"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "pgu", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Pagu"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "pgy", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, Deprecated = new DateOnly(2012, 8, 12), + PreferredValue = null, + Tag = null, Description = [@"Pongyong"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "pgz", Added = new DateOnly(2016, 5, 30), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Papua New Guinean Sign Language"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "pha", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Pa-Hng"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "phd", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Phudagi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "phg", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Phuong"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "phh", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Phukha"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "phi", Added = new DateOnly(2005, 10, 16), - Scope = RecordScope.Collection, + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.Collection, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Philippine languages"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "phj", Added = new DateOnly(2022, 2, 25), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Pahari"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "phk", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Phake"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "phl", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Phalura", @"Palula"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "phm", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Phimbi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "phn", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Phoenician"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "pho", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Phunoi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "phq", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Phana'"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "phr", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "lah", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Pahari-Potwari"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "pht", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Phu Thai"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "phu", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Phuan"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "phv", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Pahlavani"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "phw", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Phangduwali"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "pia", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Pima Bajo"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "pib", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Yine"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "pic", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Pinji"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "pid", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Piaroa"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "pie", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Piro"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "pif", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Pingelapese"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "pig", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Pisabo"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "pih", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Pitcairn-Norfolk"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "pii", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, Deprecated = new DateOnly(2022, 2, 25), + PreferredValue = null, + Tag = null, Description = [@"Pini"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "pij", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Pijao"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "pil", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Yom"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "pim", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Powhatan"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "pin", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Piame"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "pio", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Piapoco"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "pip", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Pero"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "pir", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Piratapuyo"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "pis", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Pijin"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "pit", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Pitta Pitta"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "piu", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Pintupi-Luritja"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "piv", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Pileni", @"Vaeakau-Taumako"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "piw", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Pimbwe"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "pix", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Piu"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "piy", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Piya-Kwonci"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "piz", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Pije"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "pjt", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Pitjantjatjara"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "pka", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ardhamāgadhī Prākrit"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "pkb", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Pokomo", @"Kipfokomo"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "pkc", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Paekche"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "pkg", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Pak-Tong"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "pkh", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Pankhu"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "pkn", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Pakanha"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "pko", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "kln", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Pökoot"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "pkp", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Pukapuka"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "pkr", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Attapady Kurumba"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "pks", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Pakistan Sign Language"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "pkt", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Maleng"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "pku", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Paku"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "pla", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Miani"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "plb", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Polonombauk"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "plc", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Central Palawano"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "pld", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Polari"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ple", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Palu'e"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "plf", Added = new DateOnly(2009, 7, 29), - Scope = RecordScope.Collection, + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.Collection, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Central Malayo-Polynesian languages"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "plg", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Pilagá"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "plh", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Paulohi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "plj", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, Deprecated = new DateOnly(2023, 3, 17), + PreferredValue = null, + Tag = null, Description = [@"Polci"], Comments = [@"see nzr, pze, uly, zlu"], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "plk", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kohistani Shina"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "pll", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Shwe Palaung"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "pln", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Palenquero"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "plo", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Oluta Popoluca"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "plp", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, Deprecated = new DateOnly(2020, 3, 28), + PreferredValue = null, + Tag = null, Description = [@"Palpa"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "plq", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Palaic"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "plr", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Palaka Senoufo"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "pls", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [ @"San Marcos Tlacoyalco Popoloca", @@ -51016,486 +83748,795 @@ public static Rfc5646Data Create() => }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "plt", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "mg", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Plateau Malagasy"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "plu", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Palikúr"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "plv", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Southwest Palawano"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "plw", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Brooke's Point Palawano"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ply", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Bolyu"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "plz", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Paluan"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "pma", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Paama"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "pmb", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Pambia"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "pmc", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, Deprecated = new DateOnly(2016, 5, 30), PreferredValue = "huw", + Tag = null, Description = [@"Palumata"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "pmd", Added = new DateOnly(2012, 8, 12), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Pallanganmiddang"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "pme", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Pwaamei"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "pmf", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Pamona"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "pmh", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Māhārāṣṭri Prākrit"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "pmi", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Northern Pumi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "pmj", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Southern Pumi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "pmk", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, Deprecated = new DateOnly(2023, 3, 17), PreferredValue = "crr", + Tag = null, Description = [@"Pamlico"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "pml", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Lingua Franca"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "pmm", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Pomo"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "pmn", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Pam"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "pmo", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Pom"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "pmq", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Northern Pame"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "pmr", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Paynamar"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "pms", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Piemontese"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "pmt", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Tuamotuan"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "pmu", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "lah", Deprecated = new DateOnly(2015, 2, 12), PreferredValue = "phr", + Tag = null, Description = [@"Mirpur Panjabi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "pmw", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Plains Miwok"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "pmx", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Poumei Naga"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "pmy", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Papuan Malay"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "pmz", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Southern Pame"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "pna", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Punan Bah-Biau"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "pnb", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "lah", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Western Panjabi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "pnc", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Pannei"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "pnd", Added = new DateOnly(2019, 4, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Mpinda"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "pne", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Western Penan"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "png", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Pangu", @"Pongu"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "pnh", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Penrhyn"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "pni", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Aoheng"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "pnj", Added = new DateOnly(2013, 9, 10), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Pinjarup"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "pnk", Added = new DateOnly(2012, 8, 12), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Paunaka"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "pnl", Added = new DateOnly(2013, 9, 10), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Paleni"], Comments = [@"see also wbf"], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "pnm", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Punan Batu 1"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "pnn", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Pinai-Hagahai"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "pno", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Panobo"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "pnp", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Pancana"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "pnq", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Pana (Burkina Faso)"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "pnr", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Panim"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "pns", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ponosakan"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "pnt", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Pontic"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "pnu", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Jiongnai Bunu"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "pnv", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Pinigura"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "pnw", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Banyjima", @"Panytyima"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "pnx", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Phong-Kniang"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "pny", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Pinyin"], Comments = [ @@ -51505,4397 +84546,7170 @@ public static Rfc5646Data Create() => }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "pnz", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Pana (Central African Republic)"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "poc", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Poqomam"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "pod", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, Deprecated = new DateOnly(2016, 5, 30), + PreferredValue = null, + Tag = null, Description = [@"Ponares"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "poe", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"San Juan Atzingo Popoloca"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "pof", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Poke"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "pog", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Potiguára"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "poh", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Poqomchi'"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "poi", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Highland Popoluca"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "pok", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Pokangá"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "pom", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Southeastern Pomo"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "pon", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Pohnpeian"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "poo", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Central Pomo"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "pop", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Pwapwâ"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "poq", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Texistepec Popoluca"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "pos", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Sayula Popoluca"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "pot", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Potawatomi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "pov", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Upper Guinea Crioulo"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "pow", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"San Felipe Otlaltepec Popoloca"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "pox", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Polabian"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "poy", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Pogolo"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "poz", Added = new DateOnly(2009, 7, 29), - Scope = RecordScope.Collection, + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.Collection, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Malayo-Polynesian languages"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ppa", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, Deprecated = new DateOnly(2016, 5, 30), PreferredValue = "bfy", + Tag = null, Description = [@"Pao"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ppe", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Papi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ppi", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Paipai"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ppk", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Uma"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ppl", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Pipil", @"Nicarao"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ppm", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Papuma"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ppn", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Papapana"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ppo", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Folopa"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ppp", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Pelende"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ppq", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Pei"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ppr", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, Deprecated = new DateOnly(2013, 9, 10), PreferredValue = "lcq", + Tag = null, Description = [@"Piru"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "pps", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"San Luís Temalacayuca Popoloca"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ppt", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Pare"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ppu", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Papora"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "pqa", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Pa'a"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "pqe", Added = new DateOnly(2009, 7, 29), - Scope = RecordScope.Collection, + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.Collection, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Eastern Malayo-Polynesian languages"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "pqm", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Malecite-Passamaquoddy"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "pqw", Added = new DateOnly(2009, 7, 29), - Scope = RecordScope.Collection, + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.Collection, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Western Malayo-Polynesian languages"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "pra", Added = new DateOnly(2005, 10, 16), - Scope = RecordScope.Collection, + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.Collection, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Prakrit languages"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "prb", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, Deprecated = new DateOnly(2017, 2, 23), + PreferredValue = null, + Tag = null, Description = [@"Lua'"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "prc", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Parachi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "prd", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Parsi-Dari"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "pre", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Principense"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "prf", Added = new DateOnly(2010, 3, 11), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Paranan"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "prg", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Prussian"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "prh", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Porohanon"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "pri", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Paicî"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "prk", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Parauk"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "prl", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Peruvian Sign Language"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "prm", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kibiri"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "prn", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Prasuni"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "pro", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Old Provençal (to 1500)", @"Old Occitan (to 1500)"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "prp", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, Deprecated = new DateOnly(2023, 3, 17), PreferredValue = "gu", + Tag = null, Description = [@"Parsi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "prq", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ashéninka Perené"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "prr", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Puri"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "prs", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "fa", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Dari", @"Afghan Persian"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "prt", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Phai"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "pru", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Puragi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "prw", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Parawen"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "prx", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Purik"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "pry", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, Deprecated = new DateOnly(2016, 5, 30), PreferredValue = "prt", + Tag = null, Description = [@"Pray 3"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "prz", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Providencia Sign Language"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "psa", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Asue Awyu"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "psc", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Iranian Sign Language", @"Persian Sign Language"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "psd", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Plains Indian Sign Language"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "pse", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "ms", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Central Malay"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "psg", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Penang Sign Language"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "psh", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Southwest Pashai", @"Southwest Pashayi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "psi", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Southeast Pashai", @"Southeast Pashayi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "psl", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Puerto Rican Sign Language"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "psm", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Pauserna"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "psn", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Panasuan"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "pso", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Polish Sign Language"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "psp", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Philippine Sign Language"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "psq", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Pasi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "psr", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Portuguese Sign Language"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "pss", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kaulong"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "pst", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "ps", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Central Pashto"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "psu", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Sauraseni Prākrit"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "psw", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Port Sandwich"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "psy", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Piscataway"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "pta", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Pai Tavytera"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "pth", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Pataxó Hã-Ha-Hãe"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "pti", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Pindiini", @"Wangkatha"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ptn", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Patani"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "pto", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Zo'é"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ptp", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Patep"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ptq", Added = new DateOnly(2014, 4, 6), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Pattapu"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ptr", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Piamatsina"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ptt", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Enrekang"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ptu", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Bambam"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ptv", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Port Vato"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ptw", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Pentlatch"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "pty", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Pathiya"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "pua", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Western Highland Purepecha"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "pub", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Purum"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "puc", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Punan Merap"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "pud", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Punan Aput"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "pue", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Puelche"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "puf", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Punan Merah"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "pug", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Phuie"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "pui", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Puinave"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "puj", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Punan Tubu"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "puk", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, Deprecated = new DateOnly(2017, 2, 23), + PreferredValue = null, + Tag = null, Description = [@"Pu Ko"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "pum", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Puma"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "puo", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Puoc"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "pup", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Pulabu"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "puq", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Puquina"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "pur", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Puruborá"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "put", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Putoh"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "puu", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Punu"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "puw", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Puluwatese"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "pux", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Puare"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "puy", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Purisimeño"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "puz", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, Deprecated = new DateOnly(2014, 2, 28), PreferredValue = "pub", + Tag = null, Description = [@"Purum Naga"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "pwa", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Pawaia"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "pwb", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Panawa"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "pwg", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Gapapaiwa"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "pwi", Added = new DateOnly(2013, 9, 10), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Patwin"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "pwm", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Molbog"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "pwn", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Paiwan"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "pwo", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Pwo Western Karen"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "pwr", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Powari"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "pww", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Pwo Northern Karen"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "pxm", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Quetzaltepec Mixe"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "pye", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Pye Krumen"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "pym", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Fyam"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "pyn", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Poyanáwa"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "pys", Added = new DateOnly(2010, 3, 11), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Paraguayan Sign Language", @"Lengua de Señas del Paraguay"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "pyu", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Puyuma"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "pyx", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Pyu (Myanmar)"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "pyy", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Pyen"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "pze", Added = new DateOnly(2023, 3, 17), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Pesse"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "pzh", Added = new DateOnly(2022, 2, 25), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Pazeh"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "pzn", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Jejara Naga", @"Para Naga"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "qaa..qtz", Added = new DateOnly(2005, 10, 16), - Scope = RecordScope.PrivateUse, + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.PrivateUse, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Private use"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "qua", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Quapaw"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "qub", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "qu", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Huallaga Huánuco Quechua"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "quc", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"K'iche'", @"Quiché"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "qud", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "qu", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Calderón Highland Quichua"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "quf", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "qu", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Lambayeque Quechua"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "qug", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "qu", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Chimborazo Highland Quichua"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "quh", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "qu", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"South Bolivian Quechua"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "qui", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Quileute"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "quk", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "qu", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Chachapoyas Quechua"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "qul", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "qu", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"North Bolivian Quechua"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "qum", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Sipacapense"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "qun", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Quinault"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "qup", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "qu", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Southern Pastaza Quechua"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "quq", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Quinqui"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "qur", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "qu", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Yanahuanca Pasco Quechua"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "qus", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "qu", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Santiago del Estero Quichua"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "quv", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Sacapulteco"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "quw", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "qu", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Tena Lowland Quichua"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "qux", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "qu", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Yauyos Quechua"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "quy", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "qu", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ayacucho Quechua"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "quz", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "qu", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Cusco Quechua"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "qva", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "qu", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ambo-Pasco Quechua"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "qvc", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "qu", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Cajamarca Quechua"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "qve", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "qu", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Eastern Apurímac Quechua"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "qvh", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "qu", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Huamalíes-Dos de Mayo Huánuco Quechua"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "qvi", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "qu", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Imbabura Highland Quichua"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "qvj", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "qu", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Loja Highland Quichua"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "qvl", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "qu", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Cajatambo North Lima Quechua"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "qvm", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "qu", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Margos-Yarowilca-Lauricocha Quechua"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "qvn", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "qu", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"North Junín Quechua"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "qvo", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "qu", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Napo Lowland Quechua"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "qvp", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "qu", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Pacaraos Quechua"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "qvs", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "qu", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"San Martín Quechua"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "qvw", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "qu", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Huaylla Wanca Quechua"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "qvy", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Queyu"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "qvz", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "qu", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Northern Pastaza Quichua"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "qwa", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "qu", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Corongo Ancash Quechua"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "qwc", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "qu", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Classical Quechua"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "qwe", Added = new DateOnly(2009, 7, 29), - Scope = RecordScope.Collection, + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.Collection, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Quechuan (family)"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "qwh", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "qu", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Huaylas Ancash Quechua"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "qwm", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kuman (Russia)"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "qws", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "qu", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Sihuas Ancash Quechua"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "qwt", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kwalhioqua-Tlatskanai"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "qxa", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "qu", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Chiquián Ancash Quechua"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "qxc", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "qu", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Chincha Quechua"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "qxh", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "qu", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Panao Huánuco Quechua"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "qxl", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "qu", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Salasaca Highland Quichua"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "qxn", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "qu", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Northern Conchucos Ancash Quechua"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "qxo", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "qu", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Southern Conchucos Ancash Quechua"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "qxp", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "qu", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Puno Quechua"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "qxq", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Qashqa'i"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "qxr", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "qu", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Cañar Highland Quichua"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "qxs", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Southern Qiang"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "qxt", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "qu", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Santa Ana de Tusi Pasco Quechua"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "qxu", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "qu", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Arequipa-La Unión Quechua"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "qxw", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "qu", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Jauja Wanca Quechua"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "qya", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Quenya"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "qyp", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Quiripi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "raa", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Dungmali"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "rab", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Camling"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "rac", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Rasawa"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "rad", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Rade"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "raf", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Western Meohang"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "rag", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "luy", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Logooli", @"Lulogooli"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "rah", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Rabha"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "rai", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ramoaaina"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "raj", Added = new DateOnly(2005, 10, 16), - Scope = RecordScope.MacroLanguage, + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.MacroLanguage, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Rajasthani"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "rak", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Tulu-Bohuai"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ral", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ralte"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ram", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Canela"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ran", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Riantana"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "rao", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Rao"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "rap", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Rapanui"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "raq", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Saam"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "rar", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Rarotongan", @"Cook Islands Maori"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ras", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Tegali"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "rat", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Razajerdi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "rau", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Raute"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "rav", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Sampang"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "raw", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Rawang"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "rax", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Rang"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ray", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Rapa"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "raz", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Rahambuu"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "rbb", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Rumai Palaung"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "rbk", Added = new DateOnly(2010, 3, 11), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "bnc", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Northern Bontok"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "rbl", Added = new DateOnly(2010, 3, 11), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "bik", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Miraya Bikol"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "rbp", Added = new DateOnly(2012, 8, 12), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Barababaraba"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "rcf", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Réunion Creole French"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "rdb", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Rudbari"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "rea", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Rerau"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "reb", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Rembong"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ree", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Rejang Kayan"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "reg", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kara (Tanzania)"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "rei", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Reli"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "rej", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Rejang"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "rel", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Rendille"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "rem", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Remo"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ren", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Rengao"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "rer", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Rer Bare"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "res", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Reshe"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ret", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Retta"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "rey", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Reyesano"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "rga", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Roria"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "rge", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Romano-Greek"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "rgk", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Rangkas"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "rgn", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Romagnol"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "rgr", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Resígaro"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "rgs", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Southern Roglai"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "rgu", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ringgou"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "rhg", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Rohingya"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "rhp", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Yahang"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ria", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Riang (India)"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "rib", Added = new DateOnly(2022, 2, 25), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Bribri Sign Language"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "rie", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, Deprecated = new DateOnly(2017, 2, 23), + PreferredValue = null, + Tag = null, Description = [@"Rien"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "rif", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Tarifit"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ril", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Riang Lang", @"Riang (Myanmar)"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "rim", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Nyaturu"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "rin", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Nungu"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "rir", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ribun"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "rit", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ritharrngu"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "riu", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Riung"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "rjg", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Rajong"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "rji", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Raji"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "rjs", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Rajbanshi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "rka", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kraol"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "rkb", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Rikbaktsa"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "rkh", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Rakahanga-Manihiki"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "rki", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Rakhine"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "rkm", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Marka"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "rkt", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Rangpuri", @"Kamta"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "rkw", Added = new DateOnly(2013, 9, 10), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Arakwal"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "rma", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Rama"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "rmb", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Rembarrnga"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "rmc", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "rom", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Carpathian Romani"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "rmd", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Traveller Danish"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "rme", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Angloromani"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "rmf", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "rom", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kalo Finnish Romani"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "rmg", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Traveller Norwegian"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "rmh", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Murkim"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "rmi", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Lomavren"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "rmk", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Romkun"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "rml", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "rom", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Baltic Romani"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "rmm", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Roma"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "rmn", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "rom", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Balkan Romani"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "rmo", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "rom", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Sinte Romani"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "rmp", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Rempi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "rmq", Added = new DateOnly(2010, 3, 11), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Caló"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "rmr", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, Deprecated = new DateOnly(2010, 3, 11), + PreferredValue = null, + Tag = null, Description = [@"Caló"], Comments = [@"see emx, rmq"], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "rms", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Romanian Sign Language"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "rmt", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Domari"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "rmu", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Tavringer Romani"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "rmv", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Romanova"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "rmw", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "rom", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Welsh Romani"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "rmx", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Romam"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "rmy", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "rom", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Vlax Romani"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "rmz", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Marma"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "rna", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, Deprecated = new DateOnly(2016, 5, 30), + PreferredValue = null, + Tag = null, Description = [@"Runa"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "rnb", Added = new DateOnly(2022, 2, 25), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Brunca Sign Language"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "rnd", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ruund"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "rng", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ronga"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "rnl", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ranglong"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "rnn", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Roon"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "rnp", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Rongpo"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "rnr", Added = new DateOnly(2012, 8, 20), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Nari Nari"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "rnw", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Rungwa"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "roa", Added = new DateOnly(2005, 10, 16), - Scope = RecordScope.Collection, + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.Collection, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Romance languages"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "rob", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Tae'"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "roc", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Cacgia Roglai"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "rod", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Rogo"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "roe", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ronji"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "rof", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Rombo"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "rog", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Northern Roglai"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "rol", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Romblomanon"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "rom", Added = new DateOnly(2005, 10, 16), - Scope = RecordScope.MacroLanguage, + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.MacroLanguage, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Romany"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "roo", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Rotokas"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "rop", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kriol"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ror", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Rongga"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "rou", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Runga"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "row", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Dela-Oenale"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "rpn", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Repanbitip"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "rpt", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Rapting"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "rri", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ririo"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "rrm", Added = new DateOnly(2024, 3, 4), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Moriori"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "rro", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Waima"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "rrt", Added = new DateOnly(2012, 8, 12), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Arritinngithigh"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "rsb", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Romano-Serbian"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "rsi", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, Deprecated = new DateOnly(2017, 2, 23), + PreferredValue = null, + Tag = null, Description = [@"Rennellese Sign Language"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "rsk", Added = new DateOnly(2022, 2, 25), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ruthenian", @"Rusnak"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "rsl", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Russian Sign Language"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "rsm", Added = new DateOnly(2016, 5, 30), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Miriwoong Sign Language"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "rsn", Added = new DateOnly(2022, 2, 25), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Rwandan Sign Language"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "rsw", Added = new DateOnly(2023, 3, 17), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Rishiwa"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "rtc", Added = new DateOnly(2012, 8, 12), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Rungtu Chin"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "rth", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ratahan"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "rtm", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Rotuman"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "rts", Added = new DateOnly(2015, 2, 12), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Yurats"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "rtw", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Rathawi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "rub", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Gungu"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ruc", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ruuli"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "rue", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Rusyn"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ruf", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Luguru"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "rug", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Roviana"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ruh", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ruga"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "rui", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Rufiji"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ruk", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Che"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ruo", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Istro Romanian"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "rup", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Macedo-Romanian", @"Aromanian", @"Arumanian"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ruq", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Megleno Romanian"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "rut", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Rutul"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ruu", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Lanas Lobu"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ruy", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Mala (Nigeria)"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ruz", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ruma"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "rwa", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Rawo"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "rwk", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Rwa"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "rwl", Added = new DateOnly(2021, 2, 20), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ruwila"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "rwm", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Amba (Uganda)"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "rwo", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Rawa"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "rwr", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "mwr", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Marwari (India)"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "rxd", Added = new DateOnly(2013, 9, 10), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ngardi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "rxw", Added = new DateOnly(2013, 9, 10), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Karuwali", @"Garuwali"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ryn", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Northern Amami-Oshima"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "rys", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Yaeyama"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ryu", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Central Okinawan"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "rzh", Added = new DateOnly(2016, 5, 30), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Rāziḥī"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "saa", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Saba"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "sab", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Buglere"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "sac", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Meskwaki"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "sad", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Sandawe"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "sae", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Sabanê"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "saf", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Safaliba"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "sah", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Yakut"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "sai", Added = new DateOnly(2005, 10, 16), - Scope = RecordScope.Collection, + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.Collection, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"South American Indian languages"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "saj", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Sahu"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "sak", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Sake"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "sal", Added = new DateOnly(2005, 10, 16), - Scope = RecordScope.Collection, + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.Collection, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Salishan languages"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "sam", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Samaritan Aramaic"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "sao", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Sause"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "sap", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, Deprecated = new DateOnly(2014, 2, 28), + PreferredValue = null, + Tag = null, Description = [@"Sanapaná"], Comments = [@"see aqt, spn"], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "saq", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Samburu"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "sar", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Saraveca"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "sas", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Sasak"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "sat", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Santali"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "sau", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Saleman"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "sav", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Saafi-Saafi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "saw", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Sawi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "sax", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Sa"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "say", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Saya"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "saz", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Saurashtra"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "sba", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ngambay"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "sbb", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Simbo"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "sbc", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kele (Papua New Guinea)"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "sbd", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Southern Samo"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "sbe", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Saliba"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "sbf", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Chabu", @"Shabo"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "sbg", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Seget"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "sbh", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Sori-Harengan"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "sbi", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Seti"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "sbj", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Surbakhal"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "sbk", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Safwa"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "sbl", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Botolan Sambal"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "sbm", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Sagala"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "sbn", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Sindhi Bhil"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "sbo", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Sabüm"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "sbp", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Sangu (Tanzania)"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "sbq", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Sileibi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "sbr", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Sembakung Murut"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "sbs", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Subiya"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "sbt", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kimki"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "sbu", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Stod Bhoti"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "sbv", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Sabine"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "sbw", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Simba"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "sbx", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Seberuang"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "sby", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Soli"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "sbz", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Sara Kaba"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "sca", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, Deprecated = new DateOnly(2012, 8, 12), PreferredValue = "hle", + Tag = null, Description = [@"Sansu"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "scb", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Chut"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "sce", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Dongxiang"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "scf", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"San Miguel Creole French"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "scg", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Sanggau"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "sch", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Sakachep"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "sci", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Sri Lankan Creole Malay"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "sck", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Sadri"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "scl", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Shina"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "scn", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Sicilian"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "sco", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Scots"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "scp", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Hyolmo", @"Helambu Sherpa"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "scq", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Sa'och"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "scs", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "den", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"North Slavey"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "sct", Added = new DateOnly(2017, 2, 23), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Southern Katang"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "scu", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Shumcho"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "scv", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Sheni"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "scw", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Sha"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "scx", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Sicel"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "sda", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Toraja-Sa'dan"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "sdb", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Shabak"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "sdc", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "sc", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Sassarese Sardinian"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "sde", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Surubu"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "sdf", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Sarli"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "sdg", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Savi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "sdh", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "ku", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Southern Kurdish"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "sdj", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Suundi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "sdk", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Sos Kundi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "sdl", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Saudi Arabian Sign Language"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "sdm", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, Deprecated = new DateOnly(2020, 3, 28), + PreferredValue = null, + Tag = null, Description = [@"Semandang"], Comments = [@"see ebc, gef, sdq"], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "sdn", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "sc", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Gallurese Sardinian"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "sdo", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Bukar-Sadung Bidayuh"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "sdp", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Sherdukpen"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "sdq", Added = new DateOnly(2020, 3, 28), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Semandang"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "sdr", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Oraon Sadri"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "sds", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Sened"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "sdt", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Shuadit"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "sdu", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Sarudu"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "sdv", Added = new DateOnly(2009, 7, 29), - Scope = RecordScope.Collection, + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.Collection, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Eastern Sudanic languages"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "sdx", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Sibu Melanau"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "sdz", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Sallands"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "sea", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Semai"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "seb", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Shempire Senoufo"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "sec", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Sechelt", @"She shashishalhem"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "sed", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Sedang"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "see", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Seneca"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "sef", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Cebaara Senoufo"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "seg", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Segeju"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "seh", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Sena"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "sei", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Seri"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "sej", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Sene"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "sek", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Sekani"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "sel", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Selkup"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "sem", Added = new DateOnly(2005, 10, 16), - Scope = RecordScope.Collection, + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.Collection, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Semitic languages"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "sen", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Nanerigé Sénoufo"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "seo", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Suarmin"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "sep", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Sìcìté Sénoufo"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "seq", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Senara Sénoufo"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ser", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Serrano"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ses", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Koyraboro Senni Songhai"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "set", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Sentani"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "seu", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Serui-Laut"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "sev", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Nyarafolo Senoufo"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "sew", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Sewa Bay"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "sey", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Secoya"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "sez", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Senthang Chin"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "sfb", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [ @"Langue des signes de Belgique Francophone", @@ -55906,17896 +91720,29550 @@ public static Rfc5646Data Create() => }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "sfe", Added = new DateOnly(2012, 8, 12), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Eastern Subanen"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "sfm", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "hmn", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Small Flowery Miao"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "sfs", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"South African Sign Language"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "sfw", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Sehwi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "sga", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Old Irish (to 900)"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "sgb", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Mag-antsi Ayta"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "sgc", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "kln", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kipsigis"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "sgd", Added = new DateOnly(2010, 3, 11), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Surigaonon"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "sge", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Segai"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "sgg", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Swiss-German Sign Language"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "sgh", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Shughni"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "sgi", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Suga"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "sgj", Added = new DateOnly(2012, 8, 12), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Surgujia"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "sgk", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Sangkong"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "sgl", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, Deprecated = new DateOnly(2010, 3, 11), + PreferredValue = null, + Tag = null, Description = [@"Sanglechi-Ishkashimi"], Comments = [@"see isk, sgy"], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "sgm", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Singa"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "sgn", Added = new DateOnly(2005, 10, 16), - Scope = RecordScope.Collection, + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.Collection, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Sign languages"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "sgo", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, Deprecated = new DateOnly(2015, 2, 12), + PreferredValue = null, + Tag = null, Description = [@"Songa"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "sgp", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Singpho"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "sgr", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Sangisari"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "sgs", Added = new DateOnly(2010, 7, 26), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Samogitian"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "sgt", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Brokpake"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "sgu", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Salas"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "sgw", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Sebat Bet Gurage"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "sgx", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Sierra Leone Sign Language"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "sgy", Added = new DateOnly(2010, 3, 11), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Sanglechi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "sgz", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Sursurunga"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "sha", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Shall-Zwall"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "shb", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ninam"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "shc", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Sonde"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "shd", Added = new DateOnly(2010, 3, 11), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kundal Shahi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "she", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Sheko"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "shg", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Shua"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "shh", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Shoshoni"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "shi", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Tachelhit"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "shj", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Shatt"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "shk", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Shilluk"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "shl", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Shendu"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "shm", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Shahrudi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "shn", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Shan"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "sho", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Shanga"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "shp", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Shipibo-Conibo"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "shq", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Sala"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "shr", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Shi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "shs", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Shuswap", @"Secwepemctsín"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "sht", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Shasta"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "shu", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "ar", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Chadian Arabic"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "shv", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Shehri"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "shw", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Shwai"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "shx", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"She"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "shy", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Tachawit"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "shz", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Syenara Senoufo"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "sia", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Akkala Sami"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "sib", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Sebop"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "sid", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Sidamo"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "sie", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Simaa"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "sif", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Siamou"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "sig", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Paasaal"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "sih", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Zire", @"Sîshëë"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "sii", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Shom Peng"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "sij", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Numbami"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "sik", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Sikiana"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "sil", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Tumulung Sisaala"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "sim", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Mende (Papua New Guinea)"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "sio", Added = new DateOnly(2005, 10, 16), - Scope = RecordScope.Collection, + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.Collection, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Siouan languages"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "sip", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Sikkimese"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "siq", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Sonia"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "sir", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Siri"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "sis", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Siuslaw"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "sit", Added = new DateOnly(2005, 10, 16), - Scope = RecordScope.Collection, + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.Collection, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Sino-Tibetan languages"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "siu", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Sinagen"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "siv", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Sumariup"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "siw", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Siwai"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "six", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Sumau"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "siy", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Sivandi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "siz", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Siwi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "sja", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Epena"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "sjb", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Sajau Basap"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "sjc", Added = new DateOnly(2024, 12, 12), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "zh", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Shaojiang Chinese"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "sjd", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kildin Sami"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "sje", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Pite Sami"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "sjg", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Assangori"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "sjk", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kemi Sami"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "sjl", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Sajalong", @"Miji"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "sjm", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Mapun"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "sjn", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Sindarin"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "sjo", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Xibe"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "sjp", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Surjapuri"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "sjr", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Siar-Lak"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "sjs", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Senhaja De Srair"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "sjt", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ter Sami"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "sju", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ume Sami"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "sjw", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Shawnee"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ska", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Skagit"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "skb", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Saek"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "skc", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ma Manda"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "skd", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Southern Sierra Miwok"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ske", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Seke (Vanuatu)"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "skf", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Sakirabiá"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "skg", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "mg", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Sakalava Malagasy"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "skh", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Sikule"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ski", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Sika"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "skj", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Seke (Nepal)"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "skk", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, Deprecated = new DateOnly(2017, 2, 23), PreferredValue = "oyb", + Tag = null, Description = [@"Sok"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "skm", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kutong"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "skn", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kolibugan Subanon"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "sko", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Seko Tengah"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "skp", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Sekapan"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "skq", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Sininkere"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "skr", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "lah", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Saraiki", @"Seraiki"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "sks", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Maia"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "skt", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Sakata"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "sku", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Sakao"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "skv", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Skou"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "skw", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Skepi Creole Dutch"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "skx", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Seko Padang"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "sky", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Sikaiana"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "skz", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Sekar"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "sla", Added = new DateOnly(2005, 10, 16), - Scope = RecordScope.Collection, + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.Collection, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Slavic languages"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "slc", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Sáliba"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "sld", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Sissala"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "sle", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Sholaga"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "slf", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Swiss-Italian Sign Language"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "slg", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Selungai Murut"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "slh", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Southern Puget Sound Salish"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "sli", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Lower Silesian"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "slj", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Salumá"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "sll", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Salt-Yui"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "slm", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Pangutaran Sama"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "sln", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Salinan"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "slp", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Lamaholot"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "slq", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, Deprecated = new DateOnly(2023, 3, 17), + PreferredValue = null, + Tag = null, Description = [@"Salchuq"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "slr", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Salar"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "sls", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Singapore Sign Language"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "slt", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Sila"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "slu", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Selaru"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "slw", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Sialum"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "slx", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Salampasu"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "sly", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Selayar"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "slz", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ma'ya"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "sma", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Southern Sami"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "smb", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Simbari"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "smc", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Som"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "smd", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, Deprecated = new DateOnly(2022, 2, 25), PreferredValue = "kmb", + Tag = null, Description = [@"Sama"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "smf", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Auwe"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "smg", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Simbali"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "smh", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Samei"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "smi", Added = new DateOnly(2005, 10, 16), - Scope = RecordScope.Collection, + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.Collection, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Sami languages"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "smj", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Lule Sami"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "smk", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Bolinao"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "sml", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Central Sama"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "smm", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Musasa"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "smn", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Inari Sami"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "smp", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Samaritan"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "smq", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Samo"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "smr", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Simeulue"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "sms", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Skolt Sami"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "smt", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Simte"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "smu", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Somray"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "smv", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Samvedi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "smw", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Sumbawa"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "smx", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Samba"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "smy", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Semnani"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "smz", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Simeku"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "snb", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, Deprecated = new DateOnly(2022, 2, 25), PreferredValue = "iba", + Tag = null, Description = [@"Sebuyau"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "snc", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Sinaugoro"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "sne", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Bau Bidayuh"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "snf", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Noon"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "sng", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Sanga (Democratic Republic of Congo)"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "snh", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, Deprecated = new DateOnly(2017, 2, 23), + PreferredValue = null, + Tag = null, Description = [@"Shinabo"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "sni", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Sensi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "snj", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Riverain Sango"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "snk", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Soninke"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "snl", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Sangil"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "snm", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Southern Ma'di"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "snn", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Siona"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "sno", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Snohomish"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "snp", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Siane"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "snq", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Sangu (Gabon)"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "snr", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Sihan"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "sns", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"South West Bay", @"Nahavaq"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "snu", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Senggi", @"Viid"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "snv", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Sa'ban"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "snw", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Selee"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "snx", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Sam"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "sny", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Saniyo-Hiyewe"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "snz", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kou"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "soa", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Thai Song"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "sob", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Sobei"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "soc", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"So (Democratic Republic of Congo)"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "sod", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Songoora"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "soe", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Songomeno"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "sog", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Sogdian"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "soh", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Aka"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "soi", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Sonha"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "soj", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Soi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "sok", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Sokoro"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "sol", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Solos"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "son", Added = new DateOnly(2005, 10, 16), - Scope = RecordScope.Collection, + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.Collection, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Songhai languages"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "soo", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Songo"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "sop", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Songe"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "soq", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kanasi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "sor", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Somrai"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "sos", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Seeku"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "sou", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Southern Thai"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "sov", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Sonsorol"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "sow", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Sowanda"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "sox", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Swo"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "soy", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Miyobe"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "soz", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Temi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "spb", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Sepa (Indonesia)"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "spc", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Sapé"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "spd", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Saep"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "spe", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Sepa (Papua New Guinea)"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "spg", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Sian"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "spi", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Saponi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "spk", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Sengo"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "spl", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Selepet"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "spm", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Akukem"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "spn", Added = new DateOnly(2014, 2, 28), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Sanapaná"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "spo", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Spokane"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "spp", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Supyire Senoufo"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "spq", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Loreto-Ucayali Spanish"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "spr", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Saparua"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "sps", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Saposa"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "spt", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Spiti Bhoti"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "spu", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Sapuan"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "spv", Added = new DateOnly(2012, 8, 12), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "or", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Sambalpuri", @"Kosli"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "spx", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"South Picene"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "spy", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "kln", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Sabaot"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "sqa", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Shama-Sambuga"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "sqh", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Shau"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "sqj", Added = new DateOnly(2009, 7, 29), - Scope = RecordScope.Collection, + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.Collection, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Albanian languages"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "sqk", Added = new DateOnly(2012, 8, 12), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Albanian Sign Language"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "sqm", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Suma"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "sqn", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Susquehannock"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "sqo", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Sorkhei"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "sqq", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Sou"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "sqr", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Siculo Arabic"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "sqs", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Sri Lankan Sign Language"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "sqt", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Soqotri"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "squ", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Squamish", @"Sḵwx̱wú7mesh sníchim"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "sqx", Added = new DateOnly(2021, 2, 20), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kufr Qassem Sign Language (KQSL)"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "sra", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Saruga"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "srb", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Sora"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "src", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "sc", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Logudorese Sardinian"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "sre", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Sara"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "srf", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Nafi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "srg", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Sulod"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "srh", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Sarikoli"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "sri", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Siriano"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "srk", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Serudung Murut"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "srl", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Isirawa"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "srm", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Saramaccan"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "srn", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Sranan Tongo"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "sro", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "sc", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Campidanese Sardinian"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "srq", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Sirionó"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "srr", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Serer"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "srs", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Sarsi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "srt", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Sauri"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "sru", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Suruí"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "srv", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Southern Sorsoganon"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "srw", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Serua"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "srx", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Sirmauri"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "sry", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Sera"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "srz", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Shahmirzadi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ssa", Added = new DateOnly(2005, 10, 16), - Scope = RecordScope.Collection, + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.Collection, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Nilo-Saharan languages"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ssb", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Southern Sama"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ssc", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Suba-Simbiti"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ssd", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Siroi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "sse", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Balangingi", @"Bangingih Sama"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ssf", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Thao"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ssg", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Seimat"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ssh", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "ar", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Shihhi Arabic"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ssi", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Sansi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ssj", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Sausi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ssk", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Sunam"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ssl", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Western Sisaala"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ssm", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Semnam"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ssn", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Waata"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "sso", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Sissano"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ssp", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Spanish Sign Language"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ssq", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"So'a"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ssr", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Swiss-French Sign Language"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "sss", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Sô"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "sst", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Sinasina"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ssu", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Susuami"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ssv", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Shark Bay"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ssx", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Samberigi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ssy", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Saho"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ssz", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Sengseng"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "sta", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Settla"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "stb", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Northern Subanen"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "std", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Sentinel"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ste", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Liana-Seti"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "stf", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Seta"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "stg", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Trieng"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "sth", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Shelta"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "sti", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Bulo Stieng"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "stj", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Matya Samo"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "stk", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Arammba"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "stl", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Stellingwerfs"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "stm", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Setaman"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "stn", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Owa"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "sto", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Stoney"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "stp", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Southeastern Tepehuan"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "stq", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Saterfriesisch"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "str", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Straits Salish"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "sts", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Shumashti"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "stt", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Budeh Stieng"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "stu", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Samtao"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "stv", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Silt'e"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "stw", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Satawalese"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "sty", Added = new DateOnly(2013, 9, 10), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Siberian Tatar"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "sua", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Sulka"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "sub", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Suku"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "suc", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Western Subanon"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "sue", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Suena"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "sug", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Suganga"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "sui", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Suki"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "suj", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Shubi"], Comments = [@"see also xsj"], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "suk", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Sukuma"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "sul", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, Deprecated = new DateOnly(2010, 3, 11), + PreferredValue = null, + Tag = null, Description = [@"Surigaonon"], Comments = [@"see sgd, tgn"], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "sum", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, Deprecated = new DateOnly(2010, 3, 11), + PreferredValue = null, + Tag = null, Description = [@"Sumo-Mayangna"], Comments = [@"see ulw, yan"], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "suo", Added = new DateOnly(2021, 2, 20), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Bouni"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "suq", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Tirmaga-Chai Suri", @"Suri"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "sur", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Mwaghavul"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "sus", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Susu"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "sut", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Subtiaba"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "suv", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Puroik"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "suw", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Sumbwa"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "sux", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Sumerian"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "suy", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Suyá"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "suz", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Sunwar"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "sva", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Svan"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "svb", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ulau-Suain"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "svc", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Vincentian Creole English"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "sve", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Serili"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "svk", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Slovakian Sign Language"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "svm", Added = new DateOnly(2013, 9, 10), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Slavomolisano"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "svr", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, Deprecated = new DateOnly(2016, 5, 30), + PreferredValue = null, + Tag = null, Description = [@"Savara"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "svs", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Savosavo"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "svx", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Skalvian"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "swb", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Maore Comorian"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "swc", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "sw", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Congo Swahili"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "swf", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Sere"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "swg", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Swabian"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "swh", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "sw", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Swahili (individual language)", @"Kiswahili"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "swi", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Sui"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "swj", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Sira"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "swk", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Malawi Sena"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "swl", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Swedish Sign Language"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "swm", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Samosa"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "swn", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Sawknah"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "swo", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Shanenawa"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "swp", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Suau"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "swq", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Sharwa"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "swr", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Saweru"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "sws", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Seluwasan"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "swt", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Sawila"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "swu", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Suwawa"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "swv", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "mwr", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Shekhawati"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "sww", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Sowa"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "swx", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Suruahá"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "swy", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Sarua"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "sxb", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Suba"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "sxc", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Sicanian"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "sxe", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Sighu"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "sxg", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Shuhi", @"Shixing"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "sxk", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Southern Kalapuya"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "sxl", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Selian"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "sxm", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Samre"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "sxn", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Sangir"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "sxo", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Sorothaptic"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "sxr", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Saaroa"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "sxs", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Sasaru"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "sxu", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Upper Saxon"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "sxw", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Saxwe Gbe"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "sya", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Siang"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "syb", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Central Subanen"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "syc", Added = new DateOnly(2007, 4, 3), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Classical Syriac"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "syd", Added = new DateOnly(2009, 7, 29), - Scope = RecordScope.Collection, + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.Collection, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Samoyedic languages"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "syi", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Seki"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "syk", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Sukur"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "syl", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Sylheti"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "sym", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Maya Samo"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "syn", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Senaya"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "syo", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Suoy"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "syr", Added = new DateOnly(2005, 10, 16), - Scope = RecordScope.MacroLanguage, + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.MacroLanguage, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Syriac"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "sys", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Sinyar"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "syw", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kagate"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "syx", Added = new DateOnly(2015, 2, 12), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Samay"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "syy", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Al-Sayyid Bedouin Sign Language"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "sza", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Semelai"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "szb", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ngalum"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "szc", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Semaq Beri"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "szd", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, Deprecated = new DateOnly(2023, 3, 17), PreferredValue = "umi", + Tag = null, Description = [@"Seru"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "sze", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Seze"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "szg", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Sengele"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "szl", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Silesian"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "szn", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Sula"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "szp", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Suabo"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "szs", Added = new DateOnly(2017, 2, 23), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Solomon Islands Sign Language"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "szv", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Isu (Fako Division)"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "szw", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Sawai"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "szy", Added = new DateOnly(2019, 4, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Sakizaya"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "taa", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Lower Tanana"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "tab", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Tabassaran"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "tac", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Lowland Tarahumara"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "tad", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Tause"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "tae", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Tariana"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "taf", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Tapirapé"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "tag", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Tagoi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "tai", Added = new DateOnly(2005, 10, 16), - Scope = RecordScope.Collection, + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.Collection, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Tai languages"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "taj", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Eastern Tamang"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "tak", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Tala"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "tal", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Tal"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "tan", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Tangale"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "tao", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Yami"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "tap", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Taabwa"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "taq", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "tmh", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Tamasheq"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "tar", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Central Tarahumara"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "tas", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Tay Boi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "tau", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Upper Tanana"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "tav", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Tatuyo"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "taw", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Tai"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "tax", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Tamki"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "tay", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Atayal"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "taz", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Tocho"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "tba", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Aikanã"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "tbb", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, Deprecated = new DateOnly(2020, 3, 28), + PreferredValue = null, + Tag = null, Description = [@"Tapeba"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "tbc", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Takia"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "tbd", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kaki Ae"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "tbe", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Tanimbili"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "tbf", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Mandara"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "tbg", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"North Tairora"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "tbh", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Dharawal", @"Thurawal"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "tbi", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Gaam"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "tbj", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Tiang"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "tbk", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Calamian Tagbanwa"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "tbl", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Tboli"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "tbm", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Tagbu"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "tbn", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Barro Negro Tunebo"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "tbo", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Tawala"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "tbp", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Taworta", @"Diebroud"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "tbq", Added = new DateOnly(2009, 7, 29), - Scope = RecordScope.Collection, + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.Collection, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Tibeto-Burman languages"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "tbr", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Tumtum"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "tbs", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Tanguat"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "tbt", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Tembo (Kitembo)"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "tbu", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Tubar"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "tbv", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Tobo"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "tbw", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Tagbanwa"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "tbx", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kapin"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "tby", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Tabaru"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "tbz", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ditammari"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "tca", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ticuna"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "tcb", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Tanacross"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "tcc", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Datooga"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "tcd", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Tafi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "tce", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Southern Tutchone"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "tcf", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Malinaltepec Me'phaa", @"Malinaltepec Tlapanec"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "tcg", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Tamagario"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "tch", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Turks And Caicos Creole English"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "tci", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Wára"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "tck", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Tchitchege"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "tcl", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Taman (Myanmar)"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "tcm", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Tanahmerah"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "tcn", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Tichurong"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "tco", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Taungyo"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "tcp", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Tawr Chin"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "tcq", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kaiy"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "tcs", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Torres Strait Creole", @"Yumplatok"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "tct", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"T'en"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "tcu", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Southeastern Tarahumara"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "tcw", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Tecpatlán Totonac"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "tcx", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Toda"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "tcy", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Tulu"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "tcz", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Thado Chin"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "tda", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Tagdal"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "tdb", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Panchpargania"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "tdc", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Emberá-Tadó"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "tdd", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Tai Nüa"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "tde", Added = new DateOnly(2010, 3, 11), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Tiranige Diga Dogon"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "tdf", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Talieng"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "tdg", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Western Tamang"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "tdh", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Thulung"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "tdi", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Tomadino"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "tdj", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Tajio"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "tdk", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Tambas"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "tdl", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Sur"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "tdm", Added = new DateOnly(2016, 5, 30), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Taruma"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "tdn", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Tondano"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "tdo", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Teme"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "tdq", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Tita"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "tdr", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Todrah"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "tds", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Doutai"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "tdt", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Tetun Dili"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "tdu", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, Deprecated = new DateOnly(2016, 5, 30), PreferredValue = "dtp", + Tag = null, Description = [@"Tempasuk Dusun"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "tdv", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Toro"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "tdx", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "mg", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Tandroy-Mahafaly Malagasy"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "tdy", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Tadyawan"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "tea", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Temiar"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "teb", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Tetete"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "tec", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "kln", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Terik"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ted", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Tepo Krumen"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "tee", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Huehuetla Tepehua"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "tef", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Teressa"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "teg", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Teke-Tege"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "teh", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Tehuelche"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "tei", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Torricelli"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "tek", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ibali Teke"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "tem", Added = new DateOnly(2005, 10, 16), SuppressScript = "Latn", + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Timne"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ten", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Tama (Colombia)"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "teo", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Teso"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "tep", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Tepecano"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "teq", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Temein"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ter", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Tereno"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "tes", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Tengger"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "tet", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Tetum"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "teu", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Soo"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "tev", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Teor"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "tew", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Tewa (USA)"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "tex", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Tennet"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "tey", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Tulishi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "tez", Added = new DateOnly(2018, 3, 8), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Tetserret"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "tfi", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Tofin Gbe"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "tfn", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Tanaina"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "tfo", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Tefaro"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "tfr", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Teribe"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "tft", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ternate"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "tga", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Sagalla"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "tgb", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Tobilung"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "tgc", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Tigak"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "tgd", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ciwogai"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "tge", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Eastern Gorkha Tamang"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "tgf", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Chalikha"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "tgg", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, Deprecated = new DateOnly(2013, 9, 10), + PreferredValue = null, + Tag = null, Description = [@"Tangga"], Comments = [@"see bjp, hrc, hrw"], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "tgh", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Tobagonian Creole English"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "tgi", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Lawunuia"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "tgj", Added = new DateOnly(2012, 8, 12), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Tagin"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "tgn", Added = new DateOnly(2010, 3, 11), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Tandaganon"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "tgo", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Sudest"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "tgp", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Tangoa"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "tgq", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Tring"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "tgr", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Tareng"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "tgs", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Nume"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "tgt", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Central Tagbanwa"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "tgu", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Tanggu"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "tgv", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Tingui-Boto"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "tgw", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Tagwana Senoufo"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "tgx", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Tagish"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "tgy", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Togoyo"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "tgz", Added = new DateOnly(2012, 8, 12), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Tagalaka"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "thc", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, Deprecated = new DateOnly(2016, 5, 30), PreferredValue = "tpo", + Tag = null, Description = [@"Tai Hang Tong"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "thd", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kuuk Thaayorre", @"Thayore"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "the", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Chitwania Tharu"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "thf", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Thangmi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "thh", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Northern Tarahumara"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "thi", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Tai Long"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "thk", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Tharaka", @"Kitharaka"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "thl", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Dangaura Tharu"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "thm", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Aheu"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "thn", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Thachanadan"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "thp", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Thompson", @"Nłeʔkepmxcín", @"Thompson River Salish"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "thq", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kochila Tharu"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "thr", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Rana Tharu"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ths", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Thakali"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "tht", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Tahltan", @"Tāłtān"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "thu", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Thuri"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "thv", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "tmh", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Tahaggart Tamahaq"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "thw", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, Deprecated = new DateOnly(2020, 6, 8), PreferredValue = "ola", + Tag = null, Description = [@"Thudam"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "thx", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, Deprecated = new DateOnly(2015, 2, 12), PreferredValue = "oyb", + Tag = null, Description = [@"The"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "thy", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Tha"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "thz", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "tmh", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Tayart Tamajeq"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "tia", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Tidikelt Tamazight"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "tic", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Tira"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "tid", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, Deprecated = new DateOnly(2016, 5, 30), + PreferredValue = null, + Tag = null, Description = [@"Tidong"], Comments = [@"see itd, ntd"], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "tie", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, Deprecated = new DateOnly(2011, 8, 16), PreferredValue = "ras", + Tag = null, Description = [@"Tingal"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "tif", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Tifal"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "tig", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Tigre"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "tih", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Timugon Murut"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "tii", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Tiene"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "tij", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Tilung"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "tik", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Tikar"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "til", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Tillamook"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "tim", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Timbe"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "tin", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Tindi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "tio", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Teop"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "tip", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Trimuris"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "tiq", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Tiéfo"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "tis", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Masadiit Itneg"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "tit", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Tinigua"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "tiu", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Adasen"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "tiv", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Tiv"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "tiw", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Tiwi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "tix", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Southern Tiwa"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "tiy", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Tiruray"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "tiz", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Tai Hongjin"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "tja", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Tajuasohn"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "tjg", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Tunjung"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "tji", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Northern Tujia"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "tjj", Added = new DateOnly(2019, 4, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Tjungundji"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "tjl", Added = new DateOnly(2012, 8, 12), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Tai Laing"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "tjm", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Timucua"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "tjn", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Tonjon"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "tjo", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Temacine Tamazight"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "tjp", Added = new DateOnly(2019, 4, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Tjupany"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "tjs", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Southern Tujia"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "tju", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Tjurruru"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "tjw", Added = new DateOnly(2013, 9, 10), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Djabwurrung"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "tka", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Truká"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "tkb", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Buksa"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "tkd", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Tukudede"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "tke", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Takwane"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "tkf", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Tukumanféd"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "tkg", Added = new DateOnly(2011, 8, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "mg", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Tesaka Malagasy"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "tkk", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, Deprecated = new DateOnly(2011, 8, 16), PreferredValue = "twm", + Tag = null, Description = [@"Takpa"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "tkl", Added = new DateOnly(2005, 10, 16), SuppressScript = "Latn", + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Tokelau"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "tkm", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Takelma"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "tkn", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Toku-No-Shima"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "tkp", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Tikopia"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "tkq", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Tee"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "tkr", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Tsakhur"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "tks", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Takestani"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "tkt", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kathoriya Tharu"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "tku", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Upper Necaxa Totonac"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "tkv", Added = new DateOnly(2014, 2, 28), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Mur Pano"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "tkw", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Teanu"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "tkx", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Tangko"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "tkz", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Takua"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "tla", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Southwestern Tepehuan"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "tlb", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Tobelo"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "tlc", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Yecuatla Totonac"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "tld", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Talaud"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "tlf", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Telefol"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "tlg", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Tofanma"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "tlh", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Klingon", @"tlhIngan Hol"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "tli", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Tlingit"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "tlj", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Talinga-Bwisi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "tlk", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Taloki"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "tll", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Tetela"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "tlm", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Tolomako"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "tln", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Talondo'"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "tlo", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Talodi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "tlp", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Filomena Mata-Coahuitlán Totonac"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "tlq", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Tai Loi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "tlr", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Talise"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "tls", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Tambotalo"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "tlt", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Sou Nama", @"Teluti"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "tlu", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Tulehu"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "tlv", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Taliabu"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "tlw", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, Deprecated = new DateOnly(2012, 8, 12), PreferredValue = "weo", + Tag = null, Description = [@"South Wemale"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "tlx", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Khehek"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "tly", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Talysh"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "tma", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Tama (Chad)"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "tmb", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Katbol", @"Avava"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "tmc", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Tumak"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "tmd", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Haruai"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "tme", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Tremembé"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "tmf", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Toba-Maskoy"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "tmg", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ternateño"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "tmh", Added = new DateOnly(2005, 10, 16), SuppressScript = "Latn", - Scope = RecordScope.MacroLanguage, + Scope = Rfc5646Record.RecordScope.MacroLanguage, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Tamashek"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "tmi", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Tutuba"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "tmj", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Samarokena"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "tmk", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, Deprecated = new DateOnly(2023, 3, 17), PreferredValue = "tdg", + Tag = null, Description = [@"Northwestern Tamang"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "tml", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Tamnim Citak"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "tmm", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Tai Thanh"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "tmn", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Taman (Indonesia)"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "tmo", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Temoq"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "tmp", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, Deprecated = new DateOnly(2016, 5, 30), PreferredValue = "tyj", + Tag = null, Description = [@"Tai Mène"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "tmq", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Tumleo"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "tmr", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Jewish Babylonian Aramaic (ca. 200-1200 CE)"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "tms", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Tima"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "tmt", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Tasmate"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "tmu", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Iau"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "tmv", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Tembo (Motembo)"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "tmw", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "ms", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Temuan"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "tmy", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Tami"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "tmz", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Tamanaku"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "tna", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Tacana"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "tnb", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Western Tunebo"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "tnc", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Tanimuca-Retuarã"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "tnd", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Angosturas Tunebo"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "tne", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, Deprecated = new DateOnly(2016, 5, 30), PreferredValue = "kak", + Tag = null, Description = [@"Tinoc Kallahan"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "tnf", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, Deprecated = new DateOnly(2010, 3, 11), PreferredValue = "prs", + Tag = null, Description = [@"Tangshewi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "tng", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Tobanga"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "tnh", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Maiani"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "tni", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Tandia"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "tnk", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kwamera"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "tnl", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Lenakel"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "tnm", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Tabla"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "tnn", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"North Tanna"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "tno", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Toromono"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "tnp", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Whitesands"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "tnq", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Taino"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "tnr", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ménik"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "tns", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Tenis"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "tnt", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Tontemboan"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "tnu", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Tay Khang"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "tnv", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Tangchangya"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "tnw", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Tonsawang"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "tnx", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Tanema"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "tny", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Tongwe"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "tnz", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ten'edn"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "tob", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Toba"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "toc", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Coyutla Totonac"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "tod", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Toma"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "toe", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, Deprecated = new DateOnly(2016, 5, 30), + PreferredValue = null, + Tag = null, Description = [@"Tomedes"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "tof", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Gizrra"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "tog", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Tonga (Nyasa)"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "toh", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Gitonga"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "toi", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Tonga (Zambia)"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "toj", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Tojolabal"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "tok", Added = new DateOnly(2022, 2, 25), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Toki Pona"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "tol", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Tolowa"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "tom", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Tombulu"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "too", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Xicotepec De Juárez Totonac"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "top", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Papantla Totonac"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "toq", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Toposa"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "tor", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Togbo-Vara Banda"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "tos", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Highland Totonac"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "tou", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Tho"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "tov", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Upper Taromi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "tow", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Jemez"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "tox", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Tobian"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "toy", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Topoiyo"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "toz", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"To"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "tpa", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Taupota"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "tpc", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Azoyú Me'phaa", @"Azoyú Tlapanec"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "tpe", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Tippera"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "tpf", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Tarpia"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "tpg", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kula"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "tpi", Added = new DateOnly(2005, 10, 16), SuppressScript = "Latn", + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Tok Pisin"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "tpj", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Tapieté"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "tpk", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Tupinikin"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "tpl", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Tlacoapa Me'phaa", @"Tlacoapa Tlapanec"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "tpm", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Tampulma"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "tpn", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Tupinambá"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "tpo", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Tai Pao"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "tpp", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Pisaflores Tepehua"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "tpq", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Tukpa"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "tpr", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Tuparí"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "tpt", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Tlachichilco Tepehua"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "tpu", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Tampuan"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "tpv", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Tanapag"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "tpw", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, Deprecated = new DateOnly(2023, 3, 17), PreferredValue = "tpn", + Tag = null, Description = [@"Tupí"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "tpx", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Acatepec Me'phaa", @"Acatepec Tlapanec"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "tpy", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Trumai"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "tpz", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Tinputz"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "tqb", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Tembé"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "tql", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Lehali"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "tqm", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Turumsa"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "tqn", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Tenino"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "tqo", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Toaripi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "tqp", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Tomoip"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "tqq", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Tunni"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "tqr", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Torona"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "tqt", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Western Totonac"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "tqu", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Touo"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "tqw", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Tonkawa"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "tra", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Tirahi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "trb", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Terebu"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "trc", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Copala Triqui"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "trd", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Turi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "tre", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"East Tarangan"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "trf", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Trinidadian Creole English"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "trg", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Lishán Didán"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "trh", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Turaka"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "tri", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Trió"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "trj", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Toram"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "trk", Added = new DateOnly(2009, 7, 29), - Scope = RecordScope.Collection, + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.Collection, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Turkic languages"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "trl", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Traveller Scottish"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "trm", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Tregami"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "trn", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Trinitario"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "tro", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Tarao Naga"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "trp", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kok Borok"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "trq", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"San Martín Itunyoso Triqui"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "trr", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Taushiro"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "trs", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Chicahuaxtla Triqui"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "trt", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Tunggare"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "tru", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Turoyo", @"Surayt"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "trv", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Sediq", @"Seediq", @"Taroko"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "trw", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Torwali"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "trx", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Tringgus-Sembaan Bidayuh"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "try", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Turung"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "trz", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Torá"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "tsa", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Tsaangi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "tsb", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Tsamai"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "tsc", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Tswa"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "tsd", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Tsakonian"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "tse", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Tunisian Sign Language"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "tsf", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, Deprecated = new DateOnly(2015, 2, 12), PreferredValue = "taj", + Tag = null, Description = [@"Southwestern Tamang"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "tsg", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Tausug"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "tsh", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Tsuvan"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "tsi", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Tsimshian"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "tsj", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Tshangla"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "tsk", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Tseku"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "tsl", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ts'ün-Lao"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "tsm", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Turkish Sign Language", @"Türk İşaret Dili"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "tsp", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Northern Toussian"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "tsq", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Thai Sign Language"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "tsr", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Akei"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "tss", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Taiwan Sign Language"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "tst", Added = new DateOnly(2011, 8, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Tondi Songway Kiini"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "tsu", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Tsou"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "tsv", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Tsogo"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "tsw", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Tsishingini"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "tsx", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Mubami"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "tsy", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Tebul Sign Language"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "tsz", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Purepecha"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "tta", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Tutelo"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ttb", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Gaa"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ttc", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Tektiteko"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ttd", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Tauade"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "tte", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Bwanabwana"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ttf", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Tuotomb"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ttg", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Tutong"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "tth", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Upper Ta'oih"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "tti", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Tobati"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ttj", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Tooro"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ttk", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Totoro"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ttl", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Totela"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ttm", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Northern Tutchone"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ttn", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Towei"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "tto", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Lower Ta'oih"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ttp", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Tombelala"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ttq", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "tmh", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Tawallammat Tamajaq"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ttr", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Tera"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "tts", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Northeastern Thai"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ttt", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Muslim Tat"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ttu", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Torau"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ttv", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Titan"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ttw", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Long Wat"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "tty", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Sikaritai"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ttz", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Tsum"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "tua", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Wiarumus"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "tub", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Tübatulabal"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "tuc", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Mutu"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "tud", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Tuxá"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "tue", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Tuyuca"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "tuf", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Central Tunebo"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "tug", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Tunia"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "tuh", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Taulil"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "tui", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Tupuri"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "tuj", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Tugutil"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "tul", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Tula"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "tum", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Tumbuka"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "tun", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Tunica"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "tuo", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Tucano"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "tup", Added = new DateOnly(2005, 10, 16), - Scope = RecordScope.Collection, + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.Collection, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Tupi languages"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "tuq", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Tedaga"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "tus", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Tuscarora"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "tut", Added = new DateOnly(2005, 10, 16), - Scope = RecordScope.Collection, + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.Collection, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Altaic languages"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "tuu", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Tututni"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "tuv", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Turkana"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "tuw", Added = new DateOnly(2009, 7, 29), - Scope = RecordScope.Collection, + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.Collection, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Tungus languages"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "tux", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Tuxináwa"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "tuy", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "kln", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Tugen"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "tuz", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Turka"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "tva", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Vaghua"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "tvd", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Tsuvadi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "tve", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Te'un"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "tvi", Added = new DateOnly(2023, 3, 17), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Tulai"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "tvk", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Southeast Ambrym"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "tvl", Added = new DateOnly(2005, 10, 16), SuppressScript = "Latn", + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Tuvalu"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "tvm", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Tela-Masbuar"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "tvn", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Tavoyan"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "tvo", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Tidore"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "tvs", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Taveta"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "tvt", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Tutsa Naga"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "tvu", Added = new DateOnly(2012, 8, 12), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Tunen"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "tvw", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Sedoa"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "tvx", Added = new DateOnly(2019, 4, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Taivoan"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "tvy", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Timor Pidgin"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "twa", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Twana"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "twb", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Western Tawbuid"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "twc", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Teshenawa"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "twd", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Twents"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "twe", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Tewa (Indonesia)"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "twf", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Northern Tiwa"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "twg", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Tereweng"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "twh", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Tai Dón"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "twl", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Tawara"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "twm", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Tawang Monpa"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "twn", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Twendi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "two", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Tswapong"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "twp", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ere"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "twq", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Tasawaq"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "twr", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Southwestern Tarahumara"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "twt", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Turiwára"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "twu", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Termanu"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "tww", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Tuwari"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "twx", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Tewe"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "twy", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Tawoyan"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "txa", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Tombonuo"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "txb", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Tokharian B"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "txc", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Tsetsaut"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "txe", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Totoli"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "txg", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Tangut"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "txh", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Thracian"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "txi", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ikpeng"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "txj", Added = new DateOnly(2015, 2, 12), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Tarjumo"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "txm", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Tomini"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "txn", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"West Tarangan"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "txo", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Toto"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "txq", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Tii"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "txr", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Tartessian"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "txs", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Tonsea"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "txt", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Citak"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "txu", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kayapó"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "txx", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Tatana"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "txy", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "mg", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Tanosy Malagasy"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "tya", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Tauya"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "tye", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kyanga"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "tyh", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"O'du"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "tyi", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Teke-Tsaayi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "tyj", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Tai Do", @"Tai Yo"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "tyl", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Thu Lao"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "tyn", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kombai"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "typ", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Thaypan"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "tyr", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Tai Daeng"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "tys", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Tày Sa Pa"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "tyt", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Tày Tac"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "tyu", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kua"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "tyv", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Tuvinian"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "tyx", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Teke-Tyee"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "tyy", Added = new DateOnly(2021, 2, 20), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Tiyaa"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "tyz", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Tày"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "tza", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Tanzanian Sign Language"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "tzh", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Tzeltal"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "tzj", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Tz'utujil"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "tzl", Added = new DateOnly(2013, 9, 10), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Talossan"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "tzm", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Central Atlas Tamazight"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "tzn", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Tugun"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "tzo", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Tzotzil"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "tzx", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Tabriak"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "uam", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Uamué"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "uan", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kuan"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "uar", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Tairuma"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "uba", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ubang"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ubi", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ubi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ubl", Added = new DateOnly(2010, 3, 11), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "bik", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Buhi'non Bikol"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ubr", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ubir"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ubu", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Umbu-Ungu"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "uby", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ubykh"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "uda", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Uda"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ude", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Udihe"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "udg", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Muduga"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "udi", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Udi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "udj", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ujir"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "udl", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Wuzlam"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "udm", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Udmurt"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "udu", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Uduk"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ues", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kioko"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ufi", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ufim"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "uga", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ugaritic"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ugb", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kuku-Ugbanh"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "uge", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ughele"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ugh", Added = new DateOnly(2022, 2, 25), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kubachi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ugn", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ugandan Sign Language"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ugo", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ugong"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ugy", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Uruguayan Sign Language"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "uha", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Uhami"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "uhn", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Damal"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "uis", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Uisai"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "uiv", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Iyive"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "uji", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Tanjijili"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "uka", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kaburi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ukg", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ukuriguma"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ukh", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ukhwejo"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "uki", Added = new DateOnly(2020, 3, 28), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kui (India)"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ukk", Added = new DateOnly(2017, 2, 23), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Muak Sa-aak"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ukl", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ukrainian Sign Language"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ukp", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ukpe-Bayobiri"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ukq", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ukwa"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "uks", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Urubú-Kaapor Sign Language", @"Kaapor Sign Language"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "uku", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ukue"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ukv", Added = new DateOnly(2020, 3, 28), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kuku"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ukw", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ukwuani-Aboh-Ndoni"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "uky", Added = new DateOnly(2012, 8, 12), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kuuk-Yak"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ula", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Fungwa"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ulb", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ulukwumi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ulc", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ulch"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ule", Added = new DateOnly(2013, 9, 10), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Lule"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ulf", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Usku", @"Afra"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "uli", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ulithian"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ulk", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Meriam Mir"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ull", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ullatan"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ulm", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ulumanda'"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "uln", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Unserdeutsch"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ulu", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Uma' Lung"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ulw", Added = new DateOnly(2010, 3, 11), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ulwa"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "uly", Added = new DateOnly(2023, 3, 17), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Buli"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "uma", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Umatilla"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "umb", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Umbundu"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "umc", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Marrucinian"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "umd", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Umbindhamu"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "umg", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Morrobalama", @"Umbuygamu"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "umi", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ukit"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "umm", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Umon"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "umn", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Makyan Naga"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "umo", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Umotína"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ump", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Umpila"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "umr", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Umbugarla"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ums", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Pendau"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "umu", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "del", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Munsee"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "una", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"North Watut"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "und", Added = new DateOnly(2005, 10, 16), - Scope = RecordScope.Special, + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.Special, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Undetermined"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "une", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Uneme"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ung", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ngarinyin"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "uni", Added = new DateOnly(2021, 2, 20), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Uni"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "unk", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Enawené-Nawé"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "unm", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "del", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Unami"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "unn", Added = new DateOnly(2013, 9, 10), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kurnai"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "unp", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, Deprecated = new DateOnly(2012, 8, 12), + PreferredValue = null, + Tag = null, Description = [@"Worora"], Comments = [@"see wro, xgu"], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "unr", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Mundari"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "unu", Added = new DateOnly(2013, 9, 10), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Unubahe"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "unx", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Munda"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "unz", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Unde Kaili"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "uok", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, Deprecated = new DateOnly(2015, 2, 12), PreferredValue = "ema", + Tag = null, Description = [@"Uokha"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "uon", Added = new DateOnly(2022, 2, 25), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kulon"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "upi", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Umeda"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "upv", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Uripiv-Wala-Rano-Atchin"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ura", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Urarina"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "urb", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Urubú-Kaapor", @"Kaapor"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "urc", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Urningangg"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ure", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Uru"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "urf", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Uradhi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "urg", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Urigina"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "urh", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Urhobo"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "uri", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Urim"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "urj", Added = new DateOnly(2009, 7, 29), - Scope = RecordScope.Collection, + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.Collection, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Uralic languages"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "urk", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "ms", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Urak Lawoi'"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "url", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Urali"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "urm", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Urapmin"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "urn", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Uruangnirin"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "uro", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ura (Papua New Guinea)"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "urp", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Uru-Pa-In"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "urr", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Lehalurup", @"Löyöp"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "urt", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Urat"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "uru", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Urumi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "urv", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Uruava"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "urw", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Sop"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "urx", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Urimo"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ury", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Orya"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "urz", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Uru-Eu-Wau-Wau"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "usa", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Usarufa"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ush", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ushojo"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "usi", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Usui"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "usk", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Usaghade"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "usp", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Uspanteco"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "uss", Added = new DateOnly(2019, 4, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"us-Saare"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "usu", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Uya"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "uta", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Otank"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ute", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ute-Southern Paiute"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "uth", Added = new DateOnly(2019, 4, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"ut-Hun"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "utp", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Amba (Solomon Islands)"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "utr", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Etulo"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "utu", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Utu"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "uum", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Urum"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "uun", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, Deprecated = new DateOnly(2022, 2, 25), + PreferredValue = null, + Tag = null, Description = [@"Kulon-Pazeh"], Comments = [@"see pzh, uon"], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "uur", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ura (Vanuatu)"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "uuu", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"U"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "uve", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"West Uvean", @"Fagauvea"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "uvh", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Uri"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "uvl", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Lote"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "uwa", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kuku-Uwanh"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "uya", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Doko-Uyanga"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "uzn", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "uz", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Northern Uzbek"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "uzs", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "uz", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Southern Uzbek"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "vaa", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Vaagri Booli"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "vae", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Vale"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "vaf", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Vafsi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "vag", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Vagla"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "vah", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Varhadi-Nagpuri"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "vai", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Vai"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "vaj", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Sekele", @"Northwestern ǃKung", @"Vasekele"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "val", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Vehes"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "vam", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Vanimo"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "van", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Valman"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "vao", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Vao"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "vap", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Vaiphei"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "var", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Huarijio"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "vas", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Vasavi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "vau", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Vanuma"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "vav", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Varli"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "vay", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Wayu"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "vbb", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Southeast Babar"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "vbk", Added = new DateOnly(2010, 3, 11), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "bnc", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Southwestern Bontok"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "vec", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Venetian"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ved", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Veddah"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "vel", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Veluws"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "vem", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Vemgo-Mabas"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "veo", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ventureño"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "vep", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Veps"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ver", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Mom Jango"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "vgr", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Vaghri"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "vgt", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Vlaamse Gebarentaal", @"Flemish Sign Language"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "vic", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Virgin Islands Creole English"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "vid", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Vidunda"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "vif", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Vili"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "vig", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Viemo"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "vil", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Vilela"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "vin", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Vinza"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "vis", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Vishavan"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "vit", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Viti"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "viv", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Iduna"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "vjk", Added = new DateOnly(2023, 3, 17), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Bajjika"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "vka", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kariyarra"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "vki", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, Deprecated = new DateOnly(2021, 2, 20), + PreferredValue = null, + Tag = null, Description = [@"Ija-Zuba"], Comments = [@"see vkn, vkz"], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "vkj", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kujarge"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "vkk", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "ms", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kaur"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "vkl", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kulisusu"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "vkm", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kamakan"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "vkn", Added = new DateOnly(2021, 2, 20), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Koro Nulu"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "vko", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kodeoha"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "vkp", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Korlai Creole Portuguese"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "vkt", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "ms", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Tenggarong Kutai Malay"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "vku", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kurrama"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "vkz", Added = new DateOnly(2021, 2, 20), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Koro Zuba"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "vlp", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Valpei"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "vls", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Vlaams"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "vma", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Martuyhunira"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "vmb", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Barbaram"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "vmc", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Juxtlahuaca Mixtec"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "vmd", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Mudu Koraga"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "vme", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"East Masela"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "vmf", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Mainfränkisch"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "vmg", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Lungalunga"], Comments = [@"see also bxf"], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "vmh", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Maraghei"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "vmi", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Miwa"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "vmj", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ixtayutla Mixtec"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "vmk", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Makhuwa-Shirima"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "vml", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Malgana"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "vmm", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Mitlatongo Mixtec"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "vmp", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Soyaltepec Mazatec"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "vmq", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Soyaltepec Mixtec"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "vmr", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Marenje"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "vms", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Moksela"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "vmu", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Muluridyi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "vmv", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Valley Maidu"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "vmw", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Makhuwa"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "vmx", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Tamazola Mixtec"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "vmy", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ayautla Mazatec"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "vmz", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Mazatlán Mazatec"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "vnk", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Vano", @"Lovono"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "vnm", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Vinmavis", @"Neve'ei"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "vnp", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Vunapu"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "vor", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Voro"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "vot", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Votic"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "vra", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Vera'a"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "vro", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "et", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Võro"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "vrs", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Varisi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "vrt", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Burmbar", @"Banam Bay"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "vsi", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Moldova Sign Language"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "vsl", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Venezuelan Sign Language"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "vsn", Added = new DateOnly(2024, 3, 4), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "sa", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Vedic Sanskrit"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "vsv", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Valencian Sign Language", @"Llengua de signes valenciana"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "vto", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Vitou"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "vum", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Vumbu"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "vun", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Vunjo"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "vut", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Vute"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "vwa", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Awa (China)"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "waa", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Walla Walla"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "wab", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Wab"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "wac", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Wasco-Wishram"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "wad", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Wamesa", @"Wondama"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "wae", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Walser"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "waf", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Wakoná"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "wag", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Wa'ema"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "wah", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Watubela"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "wai", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Wares"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "waj", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Waffa"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "wak", Added = new DateOnly(2005, 10, 16), - Scope = RecordScope.Collection, + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.Collection, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Wakashan languages"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "wal", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Wolaytta", @"Wolaitta"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "wam", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Wampanoag"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "wan", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Wan"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "wao", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Wappo"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "wap", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Wapishana"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "waq", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Wagiman"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "war", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Waray (Philippines)"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "was", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Washo"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "wat", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kaninuwa"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "wau", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Waurá"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "wav", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Waka"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "waw", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Waiwai"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "wax", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Watam", @"Marangis"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "way", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Wayana"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "waz", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Wampur"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "wba", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Warao"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "wbb", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Wabo"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "wbe", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Waritai"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "wbf", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Wara"], Comments = [@"see also pnl"], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "wbh", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Wanda"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "wbi", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Vwanji"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "wbj", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Alagwa"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "wbk", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Waigali"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "wbl", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Wakhi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "wbm", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Wa"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "wbp", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Warlpiri"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "wbq", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Waddar"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "wbr", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "raj", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Wagdi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "wbs", Added = new DateOnly(2017, 2, 23), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"West Bengal Sign Language"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "wbt", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Warnman"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "wbv", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Wajarri"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "wbw", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Woi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "wca", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Yanomámi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "wci", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Waci Gbe"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "wdd", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Wandji"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "wdg", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Wadaginam"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "wdj", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Wadjiginy"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "wdk", Added = new DateOnly(2013, 9, 10), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Wadikali"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "wdt", Added = new DateOnly(2022, 2, 25), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Wendat"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "wdu", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Wadjigu"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "wdy", Added = new DateOnly(2013, 9, 10), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Wadjabangayi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "wea", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Wewaw"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "wec", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Wè Western"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "wed", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Wedau"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "weg", Added = new DateOnly(2013, 9, 10), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Wergaia"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "weh", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Weh"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "wei", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kiunum"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "wem", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Weme Gbe"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "wen", Added = new DateOnly(2005, 10, 16), - Scope = RecordScope.Collection, + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.Collection, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Sorbian languages"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "weo", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Wemale"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "wep", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Westphalien"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "wer", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Weri"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "wes", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Cameroon Pidgin"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "wet", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Perai"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "weu", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Rawngtu Chin"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "wew", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Wejewa"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "wfg", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Yafi", @"Zorop"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "wga", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Wagaya"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "wgb", Added = new DateOnly(2010, 3, 11), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Wagawaga"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "wgg", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Wangkangurru", @"Wangganguru"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "wgi", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Wahgi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "wgo", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Waigeo"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "wgu", Added = new DateOnly(2012, 8, 12), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Wirangu"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "wgw", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, Deprecated = new DateOnly(2010, 3, 11), + PreferredValue = null, + Tag = null, Description = [@"Wagawaga"], Comments = [@"see wgb, ylb"], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "wgy", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Warrgamay"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "wha", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Sou Upaa", @"Manusela"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "whg", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"North Wahgi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "whk", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Wahau Kenyah"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "whu", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Wahau Kayan"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "wib", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Southern Toussian"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "wic", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Wichita"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "wie", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Wik-Epa"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "wif", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Wik-Keyangan"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "wig", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Wik Ngathan"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "wih", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Wik-Me'anha"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "wii", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Minidien"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "wij", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Wik-Iiyanh"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "wik", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Wikalkan"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "wil", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Wilawila"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "wim", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Wik-Mungkan"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "win", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ho-Chunk"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "wir", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Wiraféd"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "wit", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, Deprecated = new DateOnly(2013, 9, 10), + PreferredValue = null, + Tag = null, Description = [@"Wintu"], Comments = [@"see nol, pwi, wnw"], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "wiu", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Wiru"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "wiv", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Vitu"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "wiw", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, Deprecated = new DateOnly(2012, 8, 12), + PreferredValue = null, + Tag = null, Description = [@"Wirangu"], Comments = [@"see nwo, wgu"], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "wiy", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Wiyot"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "wja", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Waja"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "wji", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Warji"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "wka", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kw'adza"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "wkb", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kumbaran"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "wkd", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Wakde", @"Mo"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "wkl", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kalanadi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "wkr", Added = new DateOnly(2019, 4, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Keerray-Woorroong"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "wku", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kunduvadi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "wkw", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Wakawaka"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "wky", Added = new DateOnly(2013, 9, 10), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Wangkayutyuru"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "wla", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Walio"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "wlc", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Mwali Comorian"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "wle", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Wolane"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "wlg", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kunbarlang"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "wlh", Added = new DateOnly(2020, 3, 28), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Welaun"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "wli", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Waioli"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "wlk", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Wailaki"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "wll", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Wali (Sudan)"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "wlm", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Middle Welsh"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "wlo", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Wolio"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "wlr", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Wailapa"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "wls", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Wallisian"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "wlu", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Wuliwuli"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "wlv", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Wichí Lhamtés Vejoz"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "wlw", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Walak"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "wlx", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Wali (Ghana)"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "wly", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Waling"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "wma", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Mawa (Nigeria)"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "wmb", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Wambaya"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "wmc", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Wamas"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "wmd", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Mamaindé"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "wme", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Wambule"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "wmg", Added = new DateOnly(2021, 2, 20), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Western Minyag"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "wmh", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Waima'a"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "wmi", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Wamin"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "wmm", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Maiwa (Indonesia)"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "wmn", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Waamwang"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "wmo", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Wom (Papua New Guinea)"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "wms", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Wambon"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "wmt", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Walmajarri"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "wmw", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Mwani"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "wmx", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Womo"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "wnb", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Mokati"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "wnc", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Wantoat"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "wnd", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Wandarang"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "wne", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Waneci"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "wng", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Wanggom"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "wni", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ndzwani Comorian"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "wnk", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Wanukaka"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "wnm", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Wanggamala"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "wnn", Added = new DateOnly(2013, 9, 10), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Wunumara"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "wno", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Wano"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "wnp", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Wanap"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "wnu", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Usan"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "wnw", Added = new DateOnly(2013, 9, 10), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Wintu"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "wny", Added = new DateOnly(2012, 8, 12), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Wanyi", @"Waanyi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "woa", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kuwema", @"Tyaraity"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "wob", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Wè Northern"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "woc", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Wogeo"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "wod", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Wolani"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "woe", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Woleaian"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "wof", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Gambian Wolof"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "wog", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Wogamusin"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "woi", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kamang"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "wok", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Longto"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "wom", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Wom (Nigeria)"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "won", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Wongo"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "woo", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Manombai"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "wor", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Woria"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "wos", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Hanga Hundi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "wow", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Wawonii"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "woy", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Weyto"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "wpc", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Maco"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "wra", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, Deprecated = new DateOnly(2021, 2, 20), + PreferredValue = null, + Tag = null, Description = [@"Warapu"], Comments = [@"see bpe, suo, uni"], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "wrb", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Waluwarra", @"Warluwara"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "wrd", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, Deprecated = new DateOnly(2022, 2, 25), + PreferredValue = null, + Tag = null, Description = [@"Warduji"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "wrg", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Warungu", @"Gudjal"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "wrh", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Wiradjuri"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "wri", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Wariyangga"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "wrk", Added = new DateOnly(2012, 8, 12), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Garrwa"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "wrl", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Warlmanpa"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "wrm", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Warumungu"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "wrn", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Warnang"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "wro", Added = new DateOnly(2012, 8, 12), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Worrorra"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "wrp", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Waropen"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "wrr", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Wardaman"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "wrs", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Waris"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "wru", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Waru"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "wrv", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Waruna"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "wrw", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Gugu Warra"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "wrx", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Wae Rana"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "wry", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "mwr", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Merwari"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "wrz", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Waray (Australia)"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "wsa", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Warembori"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "wsg", Added = new DateOnly(2016, 5, 30), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "gon", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Adilabad Gondi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "wsi", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Wusi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "wsk", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Waskia"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "wsr", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Owenia"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "wss", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Wasa"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "wsu", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Wasu"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "wsv", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Wotapuri-Katarqalai"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "wtb", Added = new DateOnly(2023, 3, 17), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Matambwe"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "wtf", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Watiwa"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "wth", Added = new DateOnly(2013, 9, 10), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Wathawurrung"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "wti", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Berta"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "wtk", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Watakataui"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "wtm", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Mewati"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "wtw", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Wotu"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "wua", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Wikngenchera"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "wub", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Wunambal"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "wud", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Wudu"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "wuh", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Wutunhua"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "wul", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Silimo"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "wum", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Wumbvu"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "wun", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Bungu"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "wur", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Wurrugu"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "wut", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Wutung"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "wuu", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "zh", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Wu Chinese"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "wuv", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Wuvulu-Aua"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "wux", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Wulna"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "wuy", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Wauyai"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "wwa", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Waama"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "wwb", Added = new DateOnly(2012, 8, 12), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Wakabunga"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "wwo", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Wetamut", @"Dorig"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "wwr", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Warrwa"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "www", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Wawa"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "wxa", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Waxianghua"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "wxw", Added = new DateOnly(2013, 9, 10), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Wardandi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "wya", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, Deprecated = new DateOnly(2022, 2, 25), + PreferredValue = null, + Tag = null, Description = [@"Wyandot"], Comments = [@"see wdt, wyn"], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "wyb", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Wangaaybuwan-Ngiyambaa"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "wyi", Added = new DateOnly(2013, 9, 10), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Woiwurrung"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "wym", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Wymysorys"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "wyn", Added = new DateOnly(2022, 2, 25), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Wyandot"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "wyr", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Wayoró"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "wyy", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Western Fijian"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "xaa", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Andalusian Arabic"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "xab", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Sambe"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "xac", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kachari"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "xad", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Adai"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "xae", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Aequian"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "xag", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Aghwan"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "xai", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kaimbé"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "xaj", Added = new DateOnly(2014, 2, 28), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ararandewára"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "xak", Added = new DateOnly(2016, 5, 30), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Máku"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "xal", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kalmyk", @"Oirat"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "xam", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"ǀXam"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "xan", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Xamtanga"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "xao", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Khao"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "xap", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Apalachee"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "xaq", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Aquitanian"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "xar", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Karami"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "xas", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kamas"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "xat", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Katawixi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "xau", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kauwera"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "xav", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Xavánte"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "xaw", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kawaiisu"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "xay", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kayan Mahakam"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "xba", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, Deprecated = new DateOnly(2016, 5, 30), PreferredValue = "cax", + Tag = null, Description = [@"Kamba (Brazil)"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "xbb", Added = new DateOnly(2010, 3, 11), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Lower Burdekin"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "xbc", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Bactrian"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "xbd", Added = new DateOnly(2013, 9, 10), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Bindal"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "xbe", Added = new DateOnly(2013, 9, 10), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Bigambal"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "xbg", Added = new DateOnly(2013, 9, 10), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Bunganditj"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "xbi", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kombio"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "xbj", Added = new DateOnly(2013, 9, 10), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Birrpayi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "xbm", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Middle Breton"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "xbn", Added = new DateOnly(2010, 3, 11), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kenaboi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "xbo", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Bolgarian"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "xbp", Added = new DateOnly(2013, 9, 10), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Bibbulman"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "xbr", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kambera"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "xbw", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kambiwá"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "xbx", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, Deprecated = new DateOnly(2016, 5, 30), + PreferredValue = null, + Tag = null, Description = [@"Kabixí"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "xby", Added = new DateOnly(2013, 9, 10), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Batjala", @"Batyala"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "xcb", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Cumbric"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "xcc", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Camunic"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "xce", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Celtiberian"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "xcg", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Cisalpine Gaulish"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "xch", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Chemakum", @"Chimakum"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "xcl", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Classical Armenian"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "xcm", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Comecrudo"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "xcn", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Cotoname"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "xco", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Chorasmian"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "xcr", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Carian"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "xct", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Classical Tibetan"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "xcu", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Curonian"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "xcv", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Chuvantsy"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "xcw", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Coahuilteco"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "xcy", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Cayuse"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "xda", Added = new DateOnly(2013, 9, 10), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Darkinyung"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "xdc", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Dacian"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "xdk", Added = new DateOnly(2013, 9, 10), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Dharuk"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "xdm", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Edomite"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "xdo", Added = new DateOnly(2017, 2, 23), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kwandu"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "xdq", Added = new DateOnly(2022, 2, 25), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kaitag"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "xdy", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Malayic Dayak"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "xeb", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Eblan"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "xed", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Hdi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "xeg", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"ǁXegwi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "xel", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kelo"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "xem", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kembayan"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "xep", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Epi-Olmec"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "xer", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Xerénte"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "xes", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kesawai"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "xet", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Xetá"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "xeu", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Keoru-Ahia"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "xfa", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Faliscan"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "xga", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Galatian"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "xgb", Added = new DateOnly(2012, 8, 12), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Gbin"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "xgd", Added = new DateOnly(2013, 9, 10), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Gudang"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "xgf", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Gabrielino-Fernandeño"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "xgg", Added = new DateOnly(2013, 9, 10), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Goreng"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "xgi", Added = new DateOnly(2013, 9, 10), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Garingbal"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "xgl", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Galindan"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "xgm", Added = new DateOnly(2013, 9, 10), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Dharumbal", @"Guwinmal"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "xgn", Added = new DateOnly(2009, 7, 29), - Scope = RecordScope.Collection, + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.Collection, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Mongolian languages"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "xgr", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Garza"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "xgu", Added = new DateOnly(2012, 8, 12), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Unggumi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "xgw", Added = new DateOnly(2013, 9, 10), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Guwa"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "xha", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Harami"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "xhc", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Hunnic"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "xhd", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Hadrami"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "xhe", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "lah", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Khetrani"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "xhm", Added = new DateOnly(2022, 2, 25), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Middle Khmer (1400 to 1850 CE)"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "xhr", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Hernican"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "xht", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Hattic"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "xhu", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Hurrian"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "xhv", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Khua"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "xia", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, Deprecated = new DateOnly(2013, 9, 10), PreferredValue = "acn", + Tag = null, Description = [@"Xiandao"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "xib", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Iberian"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "xii", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Xiri"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "xil", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Illyrian"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "xin", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Xinca"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "xip", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, Deprecated = new DateOnly(2016, 5, 30), + PreferredValue = null, + Tag = null, Description = [@"Xipináwa"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "xir", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Xiriâna"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "xis", Added = new DateOnly(2014, 2, 28), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kisan"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "xiv", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Indus Valley Language"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "xiy", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Xipaya"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "xjb", Added = new DateOnly(2013, 9, 10), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Minjungbal"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "xjt", Added = new DateOnly(2013, 9, 10), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Jaitmatang"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "xka", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kalkoti"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "xkb", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Northern Nago"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "xkc", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kho'ini"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "xkd", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Mendalam Kayan"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "xke", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kereho"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "xkf", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Khengkha"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "xkg", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kagoro"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "xkh", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, Deprecated = new DateOnly(2016, 5, 30), PreferredValue = "waw", + Tag = null, Description = [@"Karahawyana"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "xki", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kenyan Sign Language"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "xkj", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kajali"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "xkk", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kachok", @"Kaco'"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "xkl", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Mainstream Kenyah"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "xkn", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kayan River Kayan"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "xko", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kiorr"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "xkp", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kabatei"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "xkq", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Koroni"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "xkr", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Xakriabá"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "xks", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kumbewaha"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "xkt", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kantosi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "xku", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kaamba"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "xkv", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kgalagadi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "xkw", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kembra"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "xkx", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Karore"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "xky", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Uma' Lasan"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "xkz", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kurtokha"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "xla", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kamula"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "xlb", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Loup B"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "xlc", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Lycian"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "xld", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Lydian"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "xle", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Lemnian"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "xlg", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ligurian (Ancient)"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "xli", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Liburnian"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "xln", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Alanic"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "xlo", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Loup A"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "xlp", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Lepontic"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "xls", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Lusitanian"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "xlu", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Cuneiform Luwian"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "xly", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Elymian"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "xma", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Mushungulu"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "xmb", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Mbonga"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "xmc", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Makhuwa-Marrevone"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "xmd", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Mbudum"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "xme", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Median"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "xmf", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Mingrelian"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "xmg", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Mengaka"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "xmh", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kugu-Muminh"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "xmj", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Majera"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "xmk", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ancient Macedonian"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "xml", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Malaysian Sign Language"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "xmm", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "ms", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Manado Malay"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "xmn", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Manichaean Middle Persian"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "xmo", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Morerebi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "xmp", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kuku-Mu'inh"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "xmq", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kuku-Mangk"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "xmr", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Meroitic"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "xms", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Moroccan Sign Language"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "xmt", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Matbat"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "xmu", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kamu"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "xmv", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "mg", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Antankarana Malagasy", @"Tankarana Malagasy"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "xmw", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "mg", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Tsimihety Malagasy"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "xmx", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Salawati", @"Maden"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "xmy", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Mayaguduna"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "xmz", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Mori Bawah"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "xna", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ancient North Arabian"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "xnb", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kanakanabu"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "xnd", Added = new DateOnly(2009, 7, 29), - Scope = RecordScope.Collection, + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.Collection, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Na-Dene languages"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "xng", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Middle Mongolian"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "xnh", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kuanhua"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "xni", Added = new DateOnly(2013, 9, 10), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ngarigu"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "xnj", Added = new DateOnly(2021, 2, 20), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ngoni (Tanzania)"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "xnk", Added = new DateOnly(2013, 9, 10), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Nganakarti"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "xnm", Added = new DateOnly(2020, 3, 28), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ngumbarl"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "xnn", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Northern Kankanay"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "xno", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Anglo-Norman"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "xnq", Added = new DateOnly(2021, 2, 20), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ngoni (Mozambique)"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "xnr", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "doi", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kangri"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "xns", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kanashi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "xnt", Added = new DateOnly(2010, 3, 11), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Narragansett"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "xnu", Added = new DateOnly(2013, 9, 10), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Nukunul"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "xny", Added = new DateOnly(2013, 9, 10), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Nyiyaparli"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "xnz", Added = new DateOnly(2012, 8, 12), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kenzi", @"Mattoki"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "xoc", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"O'chi'chi'"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "xod", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kokoda"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "xog", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Soga"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "xoi", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kominimung"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "xok", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Xokleng"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "xom", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Komo (Sudan)"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "xon", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Konkomba"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "xoo", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Xukurú"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "xop", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kopar"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "xor", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Korubo"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "xow", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kowaki"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "xpa", Added = new DateOnly(2013, 9, 10), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Pirriya"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "xpb", Added = new DateOnly(2020, 3, 28), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Northeastern Tasmanian", @"Pyemmairrener"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "xpc", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Pecheneg"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "xpd", Added = new DateOnly(2020, 3, 28), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Oyster Bay Tasmanian"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "xpe", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "kpe", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Liberia Kpelle"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "xpf", Added = new DateOnly(2020, 3, 28), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Southeast Tasmanian", @"Nuenonne"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "xpg", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Phrygian"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "xph", Added = new DateOnly(2020, 3, 28), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"North Midlands Tasmanian", @"Tyerrenoterpanner"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "xpi", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Pictish"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "xpj", Added = new DateOnly(2012, 8, 12), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Mpalitjanh"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "xpk", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kulina Pano"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "xpl", Added = new DateOnly(2020, 3, 28), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Port Sorell Tasmanian"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "xpm", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Pumpokol"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "xpn", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kapinawá"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "xpo", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Pochutec"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "xpp", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Puyo-Paekche"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "xpq", Added = new DateOnly(2010, 3, 11), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Mohegan-Pequot"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "xpr", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Parthian"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "xps", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Pisidian"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "xpt", Added = new DateOnly(2013, 9, 10), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Punthamara"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "xpu", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Punic"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "xpv", Added = new DateOnly(2020, 3, 28), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Northern Tasmanian", @"Tommeginne"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "xpw", Added = new DateOnly(2020, 3, 28), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Northwestern Tasmanian", @"Peerapper"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "xpx", Added = new DateOnly(2020, 3, 28), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Southwestern Tasmanian", @"Toogee"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "xpy", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Puyo"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "xpz", Added = new DateOnly(2020, 3, 28), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Bruny Island Tasmanian"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "xqa", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Karakhanid"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "xqt", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Qatabanian"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "xra", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Krahô"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "xrb", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Eastern Karaboro"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "xrd", Added = new DateOnly(2013, 9, 10), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Gundungurra"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "xre", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kreye"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "xrg", Added = new DateOnly(2013, 9, 10), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Minang"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "xri", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Krikati-Timbira"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "xrm", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Armazic"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "xrn", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Arin"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "xrq", Added = new DateOnly(2013, 9, 10), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, Deprecated = new DateOnly(2020, 3, 28), PreferredValue = "dmw", + Tag = null, Description = [@"Karranga"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "xrr", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Raetic"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "xrt", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Aranama-Tamique"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "xru", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Marriammu"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "xrw", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Karawa"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "xsa", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Sabaean"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "xsb", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Sambal"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "xsc", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Scythian"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "xsd", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Sidetic"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "xse", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Sempan"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "xsh", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Shamang"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "xsi", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Sio"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "xsj", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Subi"], Comments = [@"see also suj"], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "xsl", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "den", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"South Slavey"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "xsm", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kasem"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "xsn", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Sanga (Nigeria)"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "xso", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Solano"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "xsp", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Silopi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "xsq", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Makhuwa-Saka"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "xsr", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Sherpa"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "xss", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, Deprecated = new DateOnly(2023, 3, 17), PreferredValue = "zko", + Tag = null, Description = [@"Assan"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "xsu", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Sanumá"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "xsv", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Sudovian"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "xsy", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Saisiyat"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "xta", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Alcozauca Mixtec"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "xtb", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Chazumba Mixtec"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "xtc", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Katcha-Kadugli-Miri"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "xtd", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Diuxi-Tilantongo Mixtec"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "xte", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ketengban"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "xtg", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Transalpine Gaulish"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "xth", Added = new DateOnly(2013, 9, 10), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Yitha Yitha"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "xti", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Sinicahua Mixtec"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "xtj", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"San Juan Teita Mixtec"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "xtl", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Tijaltepec Mixtec"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "xtm", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Magdalena Peñasco Mixtec"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "xtn", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Northern Tlaxiaco Mixtec"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "xto", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Tokharian A"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "xtp", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"San Miguel Piedras Mixtec"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "xtq", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Tumshuqese"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "xtr", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Early Tripuri"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "xts", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Sindihui Mixtec"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "xtt", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Tacahua Mixtec"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "xtu", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Cuyamecalco Mixtec"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "xtv", Added = new DateOnly(2013, 9, 10), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Thawa"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "xtw", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Tawandê"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "xty", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Yoloxochitl Mixtec"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "xtz", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, Deprecated = new DateOnly(2020, 3, 28), + PreferredValue = null, + Tag = null, Description = [@"Tasmanian"], Comments = [@"see xpb, xpd, xpf, xph, xpl, xpv, xpw, xpx, xpz"], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "xua", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Alu Kurumba"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "xub", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Betta Kurumba"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "xud", Added = new DateOnly(2012, 8, 12), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Umiida"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "xug", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kunigami"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "xuj", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Jennu Kurumba"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "xul", Added = new DateOnly(2013, 9, 10), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ngunawal", @"Nunukul"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "xum", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Umbrian"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "xun", Added = new DateOnly(2012, 8, 12), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Unggaranggu"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "xuo", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kuo"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "xup", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Upper Umpqua"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "xur", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Urartian"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "xut", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kuthant"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "xuu", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kxoe", @"Khwedam"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "xve", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Venetic"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "xvi", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kamviri"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "xvn", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Vandalic"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "xvo", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Volscian"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "xvs", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Vestinian"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "xwa", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kwaza"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "xwc", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Woccon"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "xwd", Added = new DateOnly(2013, 9, 10), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Wadi Wadi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "xwe", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Xwela Gbe"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "xwg", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kwegu"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "xwj", Added = new DateOnly(2013, 9, 10), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Wajuk"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "xwk", Added = new DateOnly(2013, 9, 10), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Wangkumara"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "xwl", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Western Xwla Gbe"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "xwo", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Written Oirat"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "xwr", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kwerba Mamberamo"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "xwt", Added = new DateOnly(2013, 9, 10), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Wotjobaluk"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "xww", Added = new DateOnly(2013, 9, 10), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Wemba Wemba"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "xxb", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Boro (Ghana)"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "xxk", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ke'o"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "xxm", Added = new DateOnly(2013, 9, 10), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Minkin"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "xxr", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Koropó"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "xxt", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Tambora"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "xya", Added = new DateOnly(2013, 9, 10), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Yaygir"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "xyb", Added = new DateOnly(2013, 9, 10), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Yandjibara"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "xyj", Added = new DateOnly(2013, 9, 10), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Mayi-Yapi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "xyk", Added = new DateOnly(2013, 9, 10), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Mayi-Kulan"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "xyl", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Yalakalore"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "xyt", Added = new DateOnly(2013, 9, 10), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Mayi-Thakurti"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "xyy", Added = new DateOnly(2012, 8, 12), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Yorta Yorta"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "xzh", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Zhang-Zhung"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "xzm", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Zemgalian"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "xzp", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ancient Zapotec"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "yaa", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Yaminahua"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "yab", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Yuhup"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "yac", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Pass Valley Yali"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "yad", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Yagua"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "yae", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Pumé"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "yaf", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Yaka (Democratic Republic of Congo)"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "yag", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Yámana"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "yah", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Yazgulyam"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "yai", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Yagnobi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "yaj", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Banda-Yangere"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "yak", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Yakama"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "yal", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Yalunka"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "yam", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Yamba"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "yan", Added = new DateOnly(2010, 3, 11), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Mayangna"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "yao", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Yao"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "yap", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Yapese"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "yaq", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Yaqui"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "yar", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Yabarana"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "yas", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Nugunu (Cameroon)"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "yat", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Yambeta"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "yau", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Yuwana"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "yav", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Yangben"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "yaw", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Yawalapití"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "yax", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Yauma"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "yay", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Agwagwune"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "yaz", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Lokaa"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "yba", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Yala"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ybb", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Yemba"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ybd", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, Deprecated = new DateOnly(2012, 8, 12), PreferredValue = "rki", + Tag = null, Description = [@"Yangbye"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ybe", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"West Yugur"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ybh", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Yakha"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ybi", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Yamphu"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ybj", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Hasha"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ybk", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Bokha"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ybl", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Yukuben"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ybm", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Yaben"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ybn", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Yabaâna"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ybo", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Yabong"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ybx", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Yawiyo"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "yby", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Yaweyuha"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ych", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Chesu"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ycl", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Lolopo"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ycn", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Yucuna"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ycp", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Chepya"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ycr", Added = new DateOnly(2023, 3, 17), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Yilan Creole"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "yda", Added = new DateOnly(2013, 9, 10), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Yanda"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ydd", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "yi", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Eastern Yiddish"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "yde", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Yangum Dey"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ydg", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Yidgha"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ydk", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Yoidik"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "yds", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, Deprecated = new DateOnly(2015, 2, 12), + PreferredValue = null, + Tag = null, Description = [@"Yiddish Sign Language"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "yea", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ravula"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "yec", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Yeniche"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "yee", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Yimas"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "yei", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Yeni"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "yej", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Yevanic"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "yel", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Yela"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "yen", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, Deprecated = new DateOnly(2012, 8, 12), + PreferredValue = null, + Tag = null, Description = [@"Yendang"], Comments = [@"see ynq, yot"], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "yer", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Tarok"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "yes", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Nyankpa"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "yet", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Yetfa"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "yeu", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Yerukula"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "yev", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Yapunda"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "yey", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Yeyi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "yga", Added = new DateOnly(2012, 8, 12), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Malyangapa"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ygi", Added = new DateOnly(2013, 9, 10), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Yiningayi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ygl", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Yangum Gel"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ygm", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Yagomi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ygp", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Gepo"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ygr", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Yagaria"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ygs", Added = new DateOnly(2014, 2, 28), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Yolŋu Sign Language"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ygu", Added = new DateOnly(2013, 9, 10), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Yugul"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ygw", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Yagwoia"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "yha", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Baha Buyang"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "yhd", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "jrb", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Judeo-Iraqi Arabic"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "yhl", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Hlepho Phowa"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "yhs", Added = new DateOnly(2015, 4, 17), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Yan-nhaŋu Sign Language"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "yia", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Yinggarda"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "yif", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ache"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "yig", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Wusa Nasu"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "yih", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "yi", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Western Yiddish"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "yii", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Yidiny"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "yij", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Yindjibarndi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "yik", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Dongshanba Lalo"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "yil", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Yindjilandji"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "yim", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Yimchungru Naga"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "yin", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Riang Lai", @"Yinchia"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "yip", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Pholo"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "yiq", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Miqie"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "yir", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"North Awyu"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "yis", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Yis"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "yit", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Eastern Lalu"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "yiu", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Awu"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "yiv", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Northern Nisu"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "yix", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Axi Yi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "yiy", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, Deprecated = new DateOnly(2013, 9, 10), + PreferredValue = null, + Tag = null, Description = [@"Yir Yoront"], Comments = [@"see yrm, yyr"], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "yiz", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Azhe"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "yka", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Yakan"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ykg", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Northern Yukaghir"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ykh", Added = new DateOnly(2023, 3, 17), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Khamnigan Mongol"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "yki", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Yoke"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ykk", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Yakaikeke"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ykl", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Khlula"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ykm", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kap"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ykn", Added = new DateOnly(2012, 8, 12), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kua-nsi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "yko", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Yasa"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ykr", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Yekora"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ykt", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kathu"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "yku", Added = new DateOnly(2012, 8, 12), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kuamasi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "yky", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Yakoma"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "yla", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Yaul"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ylb", Added = new DateOnly(2010, 3, 11), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Yaleba"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "yle", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Yele"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ylg", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Yelogu"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "yli", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Angguruk Yali"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "yll", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Yil"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ylm", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Limi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "yln", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Langnian Buyang"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ylo", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Naluo Yi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ylr", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Yalarnnga"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ylu", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Aribwaung"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "yly", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Nyâlayu", @"Nyelâyu"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "yma", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, Deprecated = new DateOnly(2012, 8, 12), PreferredValue = "lrr", + Tag = null, Description = [@"Yamphe"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ymb", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Yambes"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ymc", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Southern Muji"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ymd", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Muda"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "yme", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Yameo"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ymg", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Yamongeri"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ymh", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Mili"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ymi", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Moji"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ymk", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Makwe"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "yml", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Iamalele"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ymm", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Maay"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ymn", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Yamna", @"Sunum"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ymo", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Yangum Mon"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ymp", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Yamap"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ymq", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Qila Muji"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ymr", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Malasar"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "yms", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Mysian"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ymt", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, Deprecated = new DateOnly(2015, 2, 12), PreferredValue = "mtm", + Tag = null, Description = [@"Mator-Taygi-Karagas"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ymx", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Northern Muji"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ymz", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Muzi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "yna", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Aluo"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ynb", Added = new DateOnly(2025, 2, 6), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Yamben"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ynd", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Yandruwandha"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "yne", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Lang'e"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "yng", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Yango"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ynh", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, Deprecated = new DateOnly(2015, 2, 12), + PreferredValue = null, + Tag = null, Description = [@"Yangho"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ynk", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Naukan Yupik"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ynl", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Yangulam"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ynn", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Yana"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "yno", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Yong"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ynq", Added = new DateOnly(2012, 8, 12), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Yendang"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "yns", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Yansi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ynu", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Yahuna"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "yob", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Yoba"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "yog", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Yogad"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "yoi", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Yonaguni"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "yok", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Yokuts"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "yol", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Yola"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "yom", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Yombe"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "yon", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Yongkom"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "yos", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, Deprecated = new DateOnly(2013, 9, 10), PreferredValue = "zom", + Tag = null, Description = [@"Yos"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "yot", Added = new DateOnly(2012, 8, 12), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Yotti"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "yox", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Yoron"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "yoy", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Yoy"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ypa", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Phala"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ypb", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Labo Phowa"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ypg", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Phola"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "yph", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Phupha"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ypk", Added = new DateOnly(2005, 10, 16), - Scope = RecordScope.Collection, + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.Collection, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Yupik languages"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ypm", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Phuma"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ypn", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ani Phowa"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ypo", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Alo Phola"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ypp", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Phupa"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ypz", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Phuza"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "yra", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Yerakai"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "yrb", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Yareba"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "yre", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Yaouré"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "yri", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, Deprecated = new DateOnly(2016, 5, 30), + PreferredValue = null, + Tag = null, Description = [@"Yarí"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "yrk", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Nenets"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "yrl", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Nhengatu"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "yrm", Added = new DateOnly(2013, 9, 10), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Yirrk-Mel"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "yrn", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Yerong"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "yro", Added = new DateOnly(2016, 5, 30), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Yaroamë"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "yrs", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Yarsun"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "yrw", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Yarawata"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "yry", Added = new DateOnly(2013, 9, 10), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Yarluyandi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ysc", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Yassic"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ysd", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Samatao"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ysg", Added = new DateOnly(2012, 8, 12), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Sonaga"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ysl", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Yugoslavian Sign Language"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ysm", Added = new DateOnly(2021, 2, 20), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Myanmar Sign Language"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ysn", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Sani"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "yso", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Nisi (China)"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ysp", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Southern Lolopo"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ysr", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Sirenik Yupik"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "yss", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Yessan-Mayo"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ysy", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Sanie"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "yta", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Talu"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ytl", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Tanglang"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ytp", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Thopho"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ytw", Added = new DateOnly(2010, 3, 11), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Yout Wam"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "yty", Added = new DateOnly(2013, 9, 10), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Yatay"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "yua", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Yucateco", @"Yucatec Maya"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "yub", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Yugambal"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "yuc", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Yuchi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "yud", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "jrb", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Judeo-Tripolitanian Arabic"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "yue", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "zh", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Yue Chinese", @"Cantonese"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "yuf", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Havasupai-Walapai-Yavapai"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "yug", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Yug"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "yui", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Yurutí"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "yuj", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Karkar-Yuri"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "yuk", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Yuki"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "yul", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Yulu"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "yum", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Quechan"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "yun", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Bena (Nigeria)"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "yup", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Yukpa"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "yuq", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Yuqui"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "yur", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Yurok"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "yut", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Yopno"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "yuu", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, Deprecated = new DateOnly(2014, 2, 28), PreferredValue = "yug", + Tag = null, Description = [@"Yugh"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "yuw", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Yau (Morobe Province)"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "yux", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Southern Yukaghir"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "yuy", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"East Yugur"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "yuz", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Yuracare"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "yva", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Yawa"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "yvt", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Yavitero"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ywa", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kalou"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ywg", Added = new DateOnly(2013, 9, 10), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Yinhawangka"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ywl", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Western Lalu"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ywn", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Yawanawa"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ywq", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Wuding-Luquan Yi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ywr", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Yawuru"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ywt", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Xishanba Lalo", @"Central Lalo"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ywu", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Wumeng Nasu"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "yww", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Yawarawarga"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "yxa", Added = new DateOnly(2013, 9, 10), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Mayawali"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "yxg", Added = new DateOnly(2012, 8, 12), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Yagara"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "yxl", Added = new DateOnly(2013, 9, 10), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Yardliyawarra"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "yxm", Added = new DateOnly(2013, 9, 10), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Yinwum"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "yxu", Added = new DateOnly(2013, 9, 10), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Yuyu"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "yxy", Added = new DateOnly(2012, 8, 12), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Yabula Yabula"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "yyr", Added = new DateOnly(2013, 9, 3), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Yir Yoront"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "yyu", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Yau (Sandaun Province)"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "yyz", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ayizi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "yzg", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"E'ma Buyang"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "yzk", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Zokhuo"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "zaa", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "zap", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Sierra de Juárez Zapotec"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "zab", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "zap", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [ @"Western Tlacolula Valley Zapotec", @@ -73806,1762 +121274,2790 @@ public static Rfc5646Data Create() => }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "zac", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "zap", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ocotlán Zapotec"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "zad", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "zap", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Cajonos Zapotec"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "zae", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "zap", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Yareni Zapotec"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "zaf", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "zap", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ayoquesco Zapotec"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "zag", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Zaghawa"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "zah", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Zangwal"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "zai", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "zap", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Isthmus Zapotec"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "zaj", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Zaramo"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "zak", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Zanaki"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "zal", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Zauzou"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "zam", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "zap", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Miahuatlán Zapotec"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "zao", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "zap", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ozolotepec Zapotec"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "zap", Added = new DateOnly(2005, 10, 16), - Scope = RecordScope.MacroLanguage, + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.MacroLanguage, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Zapotec"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "zaq", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "zap", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Aloápam Zapotec"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "zar", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "zap", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Rincón Zapotec"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "zas", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "zap", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Santo Domingo Albarradas Zapotec"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "zat", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "zap", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Tabaa Zapotec"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "zau", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Zangskari"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "zav", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "zap", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Yatzachi Zapotec"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "zaw", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "zap", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Mitla Zapotec"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "zax", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "zap", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Xadani Zapotec"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "zay", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Zayse-Zergulla", @"Zaysete"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "zaz", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Zari"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "zba", Added = new DateOnly(2020, 3, 28), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Balaibalan"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "zbc", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Central Berawan"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "zbe", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"East Berawan"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "zbl", Added = new DateOnly(2007, 8, 21), SuppressScript = "Blis", + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Blissymbols", @"Bliss", @"Blissymbolics"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "zbt", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Batui"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "zbu", Added = new DateOnly(2021, 2, 20), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Bu (Bauchi State)"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "zbw", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"West Berawan"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "zca", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "zap", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Coatecas Altas Zapotec"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "zcd", Added = new DateOnly(2022, 2, 25), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "zap", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Las Delicias Zapotec"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "zch", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "za", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Central Hongshuihe Zhuang"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "zdj", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ngazidja Comorian"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "zea", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Zeeuws"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "zeg", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Zenag"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "zeh", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "za", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Eastern Hongshuihe Zhuang"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "zem", Added = new DateOnly(2023, 3, 17), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Zeem"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "zen", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Zenaga"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "zga", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kinga"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "zgb", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "za", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Guibei Zhuang"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "zgh", Added = new DateOnly(2013, 1, 25), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Standard Moroccan Tamazight"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "zgm", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "za", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Minz Zhuang"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "zgn", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "za", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Guibian Zhuang"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "zgr", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Magori"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "zhb", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Zhaba"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "zhd", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "za", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Dai Zhuang"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "zhi", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Zhire"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "zhn", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "za", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Nong Zhuang"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "zhw", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Zhoa"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "zhx", Added = new DateOnly(2009, 7, 29), - Scope = RecordScope.Collection, + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.Collection, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Chinese (family)"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "zia", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Zia"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "zib", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Zimbabwe Sign Language"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "zik", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Zimakani"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "zil", Added = new DateOnly(2011, 8, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Zialo"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "zim", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Mesme"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "zin", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Zinza"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "zir", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, Deprecated = new DateOnly(2020, 3, 28), PreferredValue = "scv", + Tag = null, Description = [@"Ziriya"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ziw", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Zigula"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ziz", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Zizilivakan"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "zka", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kaimbulawa"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "zkb", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, Deprecated = new DateOnly(2023, 3, 17), PreferredValue = "kjh", + Tag = null, Description = [@"Koibal"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "zkd", Added = new DateOnly(2012, 8, 12), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kadu"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "zkg", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Koguryo"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "zkh", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Khorezmian"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "zkk", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Karankawa"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "zkn", Added = new DateOnly(2012, 8, 12), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kanan"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "zko", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kott"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "zkp", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"São Paulo Kaingáng"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "zkr", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Zakhring"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "zkt", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kitan"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "zku", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kaurna"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "zkv", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Krevinian"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "zkz", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Khazar"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "zla", Added = new DateOnly(2021, 2, 20), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Zula"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "zle", Added = new DateOnly(2009, 7, 29), - Scope = RecordScope.Collection, + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.Collection, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"East Slavic languages"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "zlj", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "za", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Liujiang Zhuang"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "zlm", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "ms", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Malay (individual language)"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "zln", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "za", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Lianshan Zhuang"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "zlq", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "za", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Liuqian Zhuang"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "zls", Added = new DateOnly(2009, 7, 29), - Scope = RecordScope.Collection, + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.Collection, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"South Slavic languages"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "zlu", Added = new DateOnly(2023, 3, 17), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Zul"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "zlw", Added = new DateOnly(2009, 7, 29), - Scope = RecordScope.Collection, + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.Collection, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"West Slavic languages"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "zma", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Manda (Australia)"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "zmb", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Zimba"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "zmc", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Margany"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "zmd", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Maridan"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "zme", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Mangerr"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "zmf", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Mfinu"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "zmg", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Marti Ke"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "zmh", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Makolkol"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "zmi", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "ms", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Negeri Sembilan Malay"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "zmj", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Maridjabin"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "zmk", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Mandandanyi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "zml", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Matngala"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "zmm", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Marimanindji", @"Marramaninyshi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "zmn", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Mbangwe"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "zmo", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Molo"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "zmp", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Mbuun"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "zmq", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Mituku"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "zmr", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Maranunggu"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "zms", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Mbesa"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "zmt", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Maringarr"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "zmu", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Muruwari"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "zmv", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Mbariman-Gudhinma"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "zmw", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Mbo (Democratic Republic of Congo)"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "zmx", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Bomitaba"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "zmy", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Mariyedi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "zmz", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Mbandja"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "zna", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Zan Gula"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "znd", Added = new DateOnly(2005, 10, 16), - Scope = RecordScope.Collection, + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.Collection, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Zande languages"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "zne", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Zande (individual language)"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "zng", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Mang"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "znk", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Manangkari"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "zns", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Mangas"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "zoc", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Copainalá Zoque"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "zoh", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Chimalapa Zoque"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "zom", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Zou"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "zoo", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "zap", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Asunción Mixtepec Zapotec"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "zoq", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Tabasco Zoque"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "zor", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Rayón Zoque"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "zos", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Francisco León Zoque"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "zpa", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "zap", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Lachiguiri Zapotec"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "zpb", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "zap", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Yautepec Zapotec"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "zpc", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "zap", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Choapan Zapotec"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "zpd", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "zap", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Southeastern Ixtlán Zapotec"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "zpe", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "zap", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Petapa Zapotec"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "zpf", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "zap", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"San Pedro Quiatoni Zapotec"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "zpg", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "zap", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Guevea De Humboldt Zapotec"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "zph", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "zap", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Totomachapan Zapotec"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "zpi", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "zap", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Santa María Quiegolani Zapotec"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "zpj", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "zap", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Quiavicuzas Zapotec"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "zpk", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "zap", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Tlacolulita Zapotec"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "zpl", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "zap", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Lachixío Zapotec"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "zpm", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "zap", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Mixtepec Zapotec"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "zpn", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "zap", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Santa Inés Yatzechi Zapotec"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "zpo", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "zap", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Amatlán Zapotec"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "zpp", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "zap", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"El Alto Zapotec"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "zpq", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "zap", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Zoogocho Zapotec"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "zpr", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "zap", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Santiago Xanica Zapotec"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "zps", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "zap", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Coatlán Zapotec"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "zpt", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "zap", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"San Vicente Coatlán Zapotec"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "zpu", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "zap", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Yalálag Zapotec"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "zpv", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "zap", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Chichicapan Zapotec"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "zpw", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "zap", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Zaniza Zapotec"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "zpx", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "zap", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"San Baltazar Loxicha Zapotec"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "zpy", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "zap", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Mazaltepec Zapotec"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "zpz", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "zap", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Texmelucan Zapotec"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "zqe", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "za", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Qiubei Zhuang"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "zra", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kara (Korea)"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "zrg", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Mirgan"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "zrn", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Zerenkel"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "zro", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Záparo"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "zrp", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Zarphatic"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "zrs", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Mairasi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "zsa", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Sarasira"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "zsk", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kaskean"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "zsl", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Zambian Sign Language"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "zsm", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "ms", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Standard Malay"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "zsr", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "zap", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Southern Rincon Zapotec"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "zsu", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Sukurum"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "zte", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "zap", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Elotepec Zapotec"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ztg", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "zap", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Xanaguía Zapotec"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ztl", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "zap", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Lapaguía-Guivini Zapotec"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ztm", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "zap", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"San Agustín Mixtepec Zapotec"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ztn", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "zap", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Santa Catarina Albarradas Zapotec"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ztp", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "zap", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Loxicha Zapotec"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ztq", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "zap", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Quioquitani-Quierí Zapotec"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "zts", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "zap", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Tilquiapan Zapotec"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ztt", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "zap", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Tejalapan Zapotec"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ztu", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "zap", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Güilá Zapotec"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "ztx", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "zap", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Zaachila Zapotec"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "zty", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "zap", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Yatee Zapotec"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "zua", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, Deprecated = new DateOnly(2023, 3, 17), + PreferredValue = null, + Tag = null, Description = [@"Zeem"], Comments = [@"see cxh, dsk, dyr, tvi, zem"], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "zuh", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Tokano"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "zum", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kumzari"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "zun", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Zuni"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "zuy", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Zumaya"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "zwa", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Zay"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "zxx", Added = new DateOnly(2006, 3, 8), - Scope = RecordScope.Special, + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.Special, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"No linguistic content", @"Not applicable"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "zyb", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "za", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Yongbei Zhuang"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "zyg", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "za", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Yang Zhuang"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "zyj", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "za", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Youjiang Zhuang"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "zyn", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "za", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Yongnan Zhuang"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "zyp", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Zyphe Chin"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "zza", Added = new DateOnly(2006, 8, 24), - Scope = RecordScope.MacroLanguage, + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.MacroLanguage, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [ @"Zaza", @@ -75576,609 +124072,855 @@ public static Rfc5646Data Create() => }, new() { - Type = RecordType.Language, + Type = Rfc5646Record.RecordType.Language, SubTag = "zzj", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "za", + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Zuojiang Zhuang"], Comments = [], Prefix = [], }, new() { - Type = RecordType.ExtLanguage, + Type = Rfc5646Record.RecordType.ExtLanguage, SubTag = "aao", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "ar", + Deprecated = null, PreferredValue = "aao", + Tag = null, Description = [@"Algerian Saharan Arabic"], Comments = [], Prefix = [@"ar"], }, new() { - Type = RecordType.ExtLanguage, + Type = Rfc5646Record.RecordType.ExtLanguage, SubTag = "abh", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "ar", + Deprecated = null, PreferredValue = "abh", + Tag = null, Description = [@"Tajiki Arabic"], Comments = [], Prefix = [@"ar"], }, new() { - Type = RecordType.ExtLanguage, + Type = Rfc5646Record.RecordType.ExtLanguage, SubTag = "abv", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "ar", + Deprecated = null, PreferredValue = "abv", + Tag = null, Description = [@"Baharna Arabic"], Comments = [], Prefix = [@"ar"], }, new() { - Type = RecordType.ExtLanguage, + Type = Rfc5646Record.RecordType.ExtLanguage, SubTag = "acm", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "ar", + Deprecated = null, PreferredValue = "acm", + Tag = null, Description = [@"Mesopotamian Arabic"], Comments = [], Prefix = [@"ar"], }, new() { - Type = RecordType.ExtLanguage, + Type = Rfc5646Record.RecordType.ExtLanguage, SubTag = "acq", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "ar", + Deprecated = null, PreferredValue = "acq", + Tag = null, Description = [@"Ta'izzi-Adeni Arabic"], Comments = [], Prefix = [@"ar"], }, new() { - Type = RecordType.ExtLanguage, + Type = Rfc5646Record.RecordType.ExtLanguage, SubTag = "acw", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "ar", + Deprecated = null, PreferredValue = "acw", + Tag = null, Description = [@"Hijazi Arabic"], Comments = [], Prefix = [@"ar"], }, new() { - Type = RecordType.ExtLanguage, + Type = Rfc5646Record.RecordType.ExtLanguage, SubTag = "acx", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "ar", + Deprecated = null, PreferredValue = "acx", + Tag = null, Description = [@"Omani Arabic"], Comments = [], Prefix = [@"ar"], }, new() { - Type = RecordType.ExtLanguage, + Type = Rfc5646Record.RecordType.ExtLanguage, SubTag = "acy", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "ar", + Deprecated = null, PreferredValue = "acy", + Tag = null, Description = [@"Cypriot Arabic"], Comments = [], Prefix = [@"ar"], }, new() { - Type = RecordType.ExtLanguage, + Type = Rfc5646Record.RecordType.ExtLanguage, SubTag = "adf", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "ar", + Deprecated = null, PreferredValue = "adf", + Tag = null, Description = [@"Dhofari Arabic"], Comments = [], Prefix = [@"ar"], }, new() { - Type = RecordType.ExtLanguage, + Type = Rfc5646Record.RecordType.ExtLanguage, SubTag = "ads", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, PreferredValue = "ads", + Tag = null, Description = [@"Adamorobe Sign Language"], Comments = [], Prefix = [@"sgn"], }, new() { - Type = RecordType.ExtLanguage, + Type = Rfc5646Record.RecordType.ExtLanguage, SubTag = "aeb", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "ar", + Deprecated = null, PreferredValue = "aeb", + Tag = null, Description = [@"Tunisian Arabic"], Comments = [], Prefix = [@"ar"], }, new() { - Type = RecordType.ExtLanguage, + Type = Rfc5646Record.RecordType.ExtLanguage, SubTag = "aec", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "ar", + Deprecated = null, PreferredValue = "aec", + Tag = null, Description = [@"Saidi Arabic"], Comments = [], Prefix = [@"ar"], }, new() { - Type = RecordType.ExtLanguage, + Type = Rfc5646Record.RecordType.ExtLanguage, SubTag = "aed", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, PreferredValue = "aed", + Tag = null, Description = [@"Argentine Sign Language"], Comments = [], Prefix = [@"sgn"], }, new() { - Type = RecordType.ExtLanguage, + Type = Rfc5646Record.RecordType.ExtLanguage, SubTag = "aen", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, PreferredValue = "aen", + Tag = null, Description = [@"Armenian Sign Language"], Comments = [], Prefix = [@"sgn"], }, new() { - Type = RecordType.ExtLanguage, + Type = Rfc5646Record.RecordType.ExtLanguage, SubTag = "afb", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "ar", + Deprecated = null, PreferredValue = "afb", + Tag = null, Description = [@"Gulf Arabic"], Comments = [], Prefix = [@"ar"], }, new() { - Type = RecordType.ExtLanguage, + Type = Rfc5646Record.RecordType.ExtLanguage, SubTag = "afg", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, PreferredValue = "afg", + Tag = null, Description = [@"Afghan Sign Language"], Comments = [], Prefix = [@"sgn"], }, new() { - Type = RecordType.ExtLanguage, + Type = Rfc5646Record.RecordType.ExtLanguage, SubTag = "ajp", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "ar", Deprecated = new DateOnly(2023, 3, 17), PreferredValue = "ajp", + Tag = null, Description = [@"South Levantine Arabic"], Comments = [], Prefix = [@"ar"], }, new() { - Type = RecordType.ExtLanguage, + Type = Rfc5646Record.RecordType.ExtLanguage, SubTag = "ajs", Added = new DateOnly(2022, 2, 25), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, PreferredValue = "ajs", + Tag = null, Description = [@"Algerian Jewish Sign Language"], Comments = [], Prefix = [@"sgn"], }, new() { - Type = RecordType.ExtLanguage, + Type = Rfc5646Record.RecordType.ExtLanguage, SubTag = "apc", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "ar", + Deprecated = null, PreferredValue = "apc", + Tag = null, Description = [@"Levantine Arabic"], Comments = [], Prefix = [@"ar"], }, new() { - Type = RecordType.ExtLanguage, + Type = Rfc5646Record.RecordType.ExtLanguage, SubTag = "apd", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "ar", + Deprecated = null, PreferredValue = "apd", + Tag = null, Description = [@"Sudanese Arabic"], Comments = [], Prefix = [@"ar"], }, new() { - Type = RecordType.ExtLanguage, + Type = Rfc5646Record.RecordType.ExtLanguage, SubTag = "arb", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "ar", + Deprecated = null, PreferredValue = "arb", + Tag = null, Description = [@"Standard Arabic"], Comments = [], Prefix = [@"ar"], }, new() { - Type = RecordType.ExtLanguage, + Type = Rfc5646Record.RecordType.ExtLanguage, SubTag = "arq", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "ar", + Deprecated = null, PreferredValue = "arq", + Tag = null, Description = [@"Algerian Arabic"], Comments = [], Prefix = [@"ar"], }, new() { - Type = RecordType.ExtLanguage, + Type = Rfc5646Record.RecordType.ExtLanguage, SubTag = "ars", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "ar", + Deprecated = null, PreferredValue = "ars", + Tag = null, Description = [@"Najdi Arabic"], Comments = [], Prefix = [@"ar"], }, new() { - Type = RecordType.ExtLanguage, + Type = Rfc5646Record.RecordType.ExtLanguage, SubTag = "ary", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "ar", + Deprecated = null, PreferredValue = "ary", + Tag = null, Description = [@"Moroccan Arabic"], Comments = [], Prefix = [@"ar"], }, new() { - Type = RecordType.ExtLanguage, + Type = Rfc5646Record.RecordType.ExtLanguage, SubTag = "arz", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "ar", + Deprecated = null, PreferredValue = "arz", + Tag = null, Description = [@"Egyptian Arabic"], Comments = [], Prefix = [@"ar"], }, new() { - Type = RecordType.ExtLanguage, + Type = Rfc5646Record.RecordType.ExtLanguage, SubTag = "ase", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, PreferredValue = "ase", + Tag = null, Description = [@"American Sign Language"], Comments = [], Prefix = [@"sgn"], }, new() { - Type = RecordType.ExtLanguage, + Type = Rfc5646Record.RecordType.ExtLanguage, SubTag = "asf", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, PreferredValue = "asf", + Tag = null, Description = [@"Auslan", @"Australian Sign Language"], Comments = [], Prefix = [@"sgn"], }, new() { - Type = RecordType.ExtLanguage, + Type = Rfc5646Record.RecordType.ExtLanguage, SubTag = "asp", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, PreferredValue = "asp", + Tag = null, Description = [@"Algerian Sign Language"], Comments = [], Prefix = [@"sgn"], }, new() { - Type = RecordType.ExtLanguage, + Type = Rfc5646Record.RecordType.ExtLanguage, SubTag = "asq", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, PreferredValue = "asq", + Tag = null, Description = [@"Austrian Sign Language"], Comments = [], Prefix = [@"sgn"], }, new() { - Type = RecordType.ExtLanguage, + Type = Rfc5646Record.RecordType.ExtLanguage, SubTag = "asw", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, PreferredValue = "asw", + Tag = null, Description = [@"Australian Aborigines Sign Language"], Comments = [], Prefix = [@"sgn"], }, new() { - Type = RecordType.ExtLanguage, + Type = Rfc5646Record.RecordType.ExtLanguage, SubTag = "auz", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "ar", + Deprecated = null, PreferredValue = "auz", + Tag = null, Description = [@"Uzbeki Arabic"], Comments = [], Prefix = [@"ar"], }, new() { - Type = RecordType.ExtLanguage, + Type = Rfc5646Record.RecordType.ExtLanguage, SubTag = "avl", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "ar", + Deprecated = null, PreferredValue = "avl", + Tag = null, Description = [@"Eastern Egyptian Bedawi Arabic"], Comments = [], Prefix = [@"ar"], }, new() { - Type = RecordType.ExtLanguage, + Type = Rfc5646Record.RecordType.ExtLanguage, SubTag = "ayh", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "ar", + Deprecated = null, PreferredValue = "ayh", + Tag = null, Description = [@"Hadrami Arabic"], Comments = [], Prefix = [@"ar"], }, new() { - Type = RecordType.ExtLanguage, + Type = Rfc5646Record.RecordType.ExtLanguage, SubTag = "ayl", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "ar", + Deprecated = null, PreferredValue = "ayl", + Tag = null, Description = [@"Libyan Arabic"], Comments = [], Prefix = [@"ar"], }, new() { - Type = RecordType.ExtLanguage, + Type = Rfc5646Record.RecordType.ExtLanguage, SubTag = "ayn", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "ar", + Deprecated = null, PreferredValue = "ayn", + Tag = null, Description = [@"Sanaani Arabic"], Comments = [], Prefix = [@"ar"], }, new() { - Type = RecordType.ExtLanguage, + Type = Rfc5646Record.RecordType.ExtLanguage, SubTag = "ayp", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "ar", + Deprecated = null, PreferredValue = "ayp", + Tag = null, Description = [@"North Mesopotamian Arabic"], Comments = [], Prefix = [@"ar"], }, new() { - Type = RecordType.ExtLanguage, + Type = Rfc5646Record.RecordType.ExtLanguage, SubTag = "bbz", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "ar", Deprecated = new DateOnly(2020, 3, 28), PreferredValue = "bbz", + Tag = null, Description = [@"Babalia Creole Arabic"], Comments = [], Prefix = [@"ar"], }, new() { - Type = RecordType.ExtLanguage, + Type = Rfc5646Record.RecordType.ExtLanguage, SubTag = "bfi", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, PreferredValue = "bfi", + Tag = null, Description = [@"British Sign Language"], Comments = [], Prefix = [@"sgn"], }, new() { - Type = RecordType.ExtLanguage, + Type = Rfc5646Record.RecordType.ExtLanguage, SubTag = "bfk", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, PreferredValue = "bfk", + Tag = null, Description = [@"Ban Khor Sign Language"], Comments = [], Prefix = [@"sgn"], }, new() { - Type = RecordType.ExtLanguage, + Type = Rfc5646Record.RecordType.ExtLanguage, SubTag = "bjn", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "ms", + Deprecated = null, PreferredValue = "bjn", + Tag = null, Description = [@"Banjar"], Comments = [], Prefix = [@"ms"], }, new() { - Type = RecordType.ExtLanguage, + Type = Rfc5646Record.RecordType.ExtLanguage, SubTag = "bog", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, PreferredValue = "bog", + Tag = null, Description = [@"Bamako Sign Language"], Comments = [], Prefix = [@"sgn"], }, new() { - Type = RecordType.ExtLanguage, + Type = Rfc5646Record.RecordType.ExtLanguage, SubTag = "bqn", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, PreferredValue = "bqn", + Tag = null, Description = [@"Bulgarian Sign Language"], Comments = [], Prefix = [@"sgn"], }, new() { - Type = RecordType.ExtLanguage, + Type = Rfc5646Record.RecordType.ExtLanguage, SubTag = "bqy", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, PreferredValue = "bqy", + Tag = null, Description = [@"Bengkala Sign Language"], Comments = [], Prefix = [@"sgn"], }, new() { - Type = RecordType.ExtLanguage, + Type = Rfc5646Record.RecordType.ExtLanguage, SubTag = "btj", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "ms", + Deprecated = null, PreferredValue = "btj", + Tag = null, Description = [@"Bacanese Malay"], Comments = [], Prefix = [@"ms"], }, new() { - Type = RecordType.ExtLanguage, + Type = Rfc5646Record.RecordType.ExtLanguage, SubTag = "bve", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "ms", + Deprecated = null, PreferredValue = "bve", + Tag = null, Description = [@"Berau Malay"], Comments = [], Prefix = [@"ms"], }, new() { - Type = RecordType.ExtLanguage, + Type = Rfc5646Record.RecordType.ExtLanguage, SubTag = "bvl", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, PreferredValue = "bvl", + Tag = null, Description = [@"Bolivian Sign Language"], Comments = [], Prefix = [@"sgn"], }, new() { - Type = RecordType.ExtLanguage, + Type = Rfc5646Record.RecordType.ExtLanguage, SubTag = "bvu", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "ms", + Deprecated = null, PreferredValue = "bvu", + Tag = null, Description = [@"Bukit Malay"], Comments = [], Prefix = [@"ms"], }, new() { - Type = RecordType.ExtLanguage, + Type = Rfc5646Record.RecordType.ExtLanguage, SubTag = "bzs", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, PreferredValue = "bzs", + Tag = null, Description = [@"Brazilian Sign Language"], Comments = [], Prefix = [@"sgn"], }, new() { - Type = RecordType.ExtLanguage, + Type = Rfc5646Record.RecordType.ExtLanguage, SubTag = "cdo", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "zh", + Deprecated = null, PreferredValue = "cdo", + Tag = null, Description = [@"Min Dong Chinese"], Comments = [], Prefix = [@"zh"], }, new() { - Type = RecordType.ExtLanguage, + Type = Rfc5646Record.RecordType.ExtLanguage, SubTag = "cds", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, PreferredValue = "cds", + Tag = null, Description = [@"Chadian Sign Language"], Comments = [], Prefix = [@"sgn"], }, new() { - Type = RecordType.ExtLanguage, + Type = Rfc5646Record.RecordType.ExtLanguage, SubTag = "cjy", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "zh", + Deprecated = null, PreferredValue = "cjy", + Tag = null, Description = [@"Jinyu Chinese"], Comments = [], Prefix = [@"zh"], }, new() { - Type = RecordType.ExtLanguage, + Type = Rfc5646Record.RecordType.ExtLanguage, SubTag = "cmn", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "zh", + Deprecated = null, PreferredValue = "cmn", + Tag = null, Description = [@"Mandarin Chinese"], Comments = [], Prefix = [@"zh"], }, new() { - Type = RecordType.ExtLanguage, + Type = Rfc5646Record.RecordType.ExtLanguage, SubTag = "cnp", Added = new DateOnly(2020, 3, 28), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "zh", + Deprecated = null, PreferredValue = "cnp", + Tag = null, Description = [@"Northern Ping Chinese", @"Northern Pinghua"], Comments = [], Prefix = [@"zh"], }, new() { - Type = RecordType.ExtLanguage, + Type = Rfc5646Record.RecordType.ExtLanguage, SubTag = "coa", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "ms", + Deprecated = null, PreferredValue = "coa", + Tag = null, Description = [@"Cocos Islands Malay"], Comments = [], Prefix = [@"ms"], }, new() { - Type = RecordType.ExtLanguage, + Type = Rfc5646Record.RecordType.ExtLanguage, SubTag = "cpx", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "zh", + Deprecated = null, PreferredValue = "cpx", + Tag = null, Description = [@"Pu-Xian Chinese"], Comments = [], Prefix = [@"zh"], }, new() { - Type = RecordType.ExtLanguage, + Type = Rfc5646Record.RecordType.ExtLanguage, SubTag = "csc", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, PreferredValue = "csc", + Tag = null, Description = [ @"Catalan Sign Language", @@ -76190,274 +124932,405 @@ public static Rfc5646Data Create() => }, new() { - Type = RecordType.ExtLanguage, + Type = Rfc5646Record.RecordType.ExtLanguage, SubTag = "csd", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, PreferredValue = "csd", + Tag = null, Description = [@"Chiangmai Sign Language"], Comments = [], Prefix = [@"sgn"], }, new() { - Type = RecordType.ExtLanguage, + Type = Rfc5646Record.RecordType.ExtLanguage, SubTag = "cse", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, PreferredValue = "cse", + Tag = null, Description = [@"Czech Sign Language"], Comments = [], Prefix = [@"sgn"], }, new() { - Type = RecordType.ExtLanguage, + Type = Rfc5646Record.RecordType.ExtLanguage, SubTag = "csf", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, PreferredValue = "csf", + Tag = null, Description = [@"Cuba Sign Language"], Comments = [], Prefix = [@"sgn"], }, new() { - Type = RecordType.ExtLanguage, + Type = Rfc5646Record.RecordType.ExtLanguage, SubTag = "csg", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, PreferredValue = "csg", + Tag = null, Description = [@"Chilean Sign Language"], Comments = [], Prefix = [@"sgn"], }, new() { - Type = RecordType.ExtLanguage, + Type = Rfc5646Record.RecordType.ExtLanguage, SubTag = "csl", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, PreferredValue = "csl", + Tag = null, Description = [@"Chinese Sign Language"], Comments = [], Prefix = [@"sgn"], }, new() { - Type = RecordType.ExtLanguage, + Type = Rfc5646Record.RecordType.ExtLanguage, SubTag = "csn", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, PreferredValue = "csn", + Tag = null, Description = [@"Colombian Sign Language"], Comments = [], Prefix = [@"sgn"], }, new() { - Type = RecordType.ExtLanguage, + Type = Rfc5646Record.RecordType.ExtLanguage, SubTag = "csp", Added = new DateOnly(2020, 3, 28), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "zh", + Deprecated = null, PreferredValue = "csp", + Tag = null, Description = [@"Southern Ping Chinese", @"Southern Pinghua"], Comments = [], Prefix = [@"zh"], }, new() { - Type = RecordType.ExtLanguage, + Type = Rfc5646Record.RecordType.ExtLanguage, SubTag = "csq", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, PreferredValue = "csq", + Tag = null, Description = [@"Croatia Sign Language"], Comments = [], Prefix = [@"sgn"], }, new() { - Type = RecordType.ExtLanguage, + Type = Rfc5646Record.RecordType.ExtLanguage, SubTag = "csr", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, PreferredValue = "csr", + Tag = null, Description = [@"Costa Rican Sign Language"], Comments = [], Prefix = [@"sgn"], }, new() { - Type = RecordType.ExtLanguage, + Type = Rfc5646Record.RecordType.ExtLanguage, SubTag = "csx", Added = new DateOnly(2021, 2, 20), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, PreferredValue = "csx", + Tag = null, Description = [@"Cambodian Sign Language"], Comments = [], Prefix = [@"sgn"], }, new() { - Type = RecordType.ExtLanguage, + Type = Rfc5646Record.RecordType.ExtLanguage, SubTag = "czh", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "zh", + Deprecated = null, PreferredValue = "czh", + Tag = null, Description = [@"Huizhou Chinese"], Comments = [], Prefix = [@"zh"], }, new() { - Type = RecordType.ExtLanguage, + Type = Rfc5646Record.RecordType.ExtLanguage, SubTag = "czo", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "zh", + Deprecated = null, PreferredValue = "czo", + Tag = null, Description = [@"Min Zhong Chinese"], Comments = [], Prefix = [@"zh"], }, new() { - Type = RecordType.ExtLanguage, + Type = Rfc5646Record.RecordType.ExtLanguage, SubTag = "doq", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, PreferredValue = "doq", + Tag = null, Description = [@"Dominican Sign Language"], Comments = [], Prefix = [@"sgn"], }, new() { - Type = RecordType.ExtLanguage, + Type = Rfc5646Record.RecordType.ExtLanguage, SubTag = "dse", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, PreferredValue = "dse", + Tag = null, Description = [@"Dutch Sign Language"], Comments = [], Prefix = [@"sgn"], }, new() { - Type = RecordType.ExtLanguage, + Type = Rfc5646Record.RecordType.ExtLanguage, SubTag = "dsl", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, PreferredValue = "dsl", + Tag = null, Description = [@"Danish Sign Language"], Comments = [], Prefix = [@"sgn"], }, new() { - Type = RecordType.ExtLanguage, + Type = Rfc5646Record.RecordType.ExtLanguage, SubTag = "dsz", Added = new DateOnly(2022, 2, 25), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, PreferredValue = "dsz", + Tag = null, Description = [@"Mardin Sign Language"], Comments = [], Prefix = [@"sgn"], }, new() { - Type = RecordType.ExtLanguage, + Type = Rfc5646Record.RecordType.ExtLanguage, SubTag = "dup", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "ms", + Deprecated = null, PreferredValue = "dup", + Tag = null, Description = [@"Duano"], Comments = [], Prefix = [@"ms"], }, new() { - Type = RecordType.ExtLanguage, + Type = Rfc5646Record.RecordType.ExtLanguage, SubTag = "ecs", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, PreferredValue = "ecs", + Tag = null, Description = [@"Ecuadorian Sign Language"], Comments = [], Prefix = [@"sgn"], }, new() { - Type = RecordType.ExtLanguage, + Type = Rfc5646Record.RecordType.ExtLanguage, SubTag = "ehs", Added = new DateOnly(2021, 2, 20), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, PreferredValue = "ehs", + Tag = null, Description = [@"Miyakubo Sign Language"], Comments = [], Prefix = [@"sgn"], }, new() { - Type = RecordType.ExtLanguage, + Type = Rfc5646Record.RecordType.ExtLanguage, SubTag = "esl", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, PreferredValue = "esl", + Tag = null, Description = [@"Egypt Sign Language"], Comments = [], Prefix = [@"sgn"], }, new() { - Type = RecordType.ExtLanguage, + Type = Rfc5646Record.RecordType.ExtLanguage, SubTag = "esn", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, PreferredValue = "esn", + Tag = null, Description = [@"Salvadoran Sign Language"], Comments = [], Prefix = [@"sgn"], }, new() { - Type = RecordType.ExtLanguage, + Type = Rfc5646Record.RecordType.ExtLanguage, SubTag = "eso", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, PreferredValue = "eso", + Tag = null, Description = [@"Estonian Sign Language"], Comments = [], Prefix = [@"sgn"], }, new() { - Type = RecordType.ExtLanguage, + Type = Rfc5646Record.RecordType.ExtLanguage, SubTag = "eth", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, PreferredValue = "eth", + Tag = null, Description = [@"Ethiopian Sign Language"], Comments = [], Prefix = [@"sgn"], }, new() { - Type = RecordType.ExtLanguage, + Type = Rfc5646Record.RecordType.ExtLanguage, SubTag = "fcs", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, PreferredValue = "fcs", + Tag = null, Description = [@"Quebec Sign Language"], Comments = [], Prefix = [@"sgn"], }, new() { - Type = RecordType.ExtLanguage, + Type = Rfc5646Record.RecordType.ExtLanguage, SubTag = "fse", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, PreferredValue = "fse", + Tag = null, Description = [@"Finnish Sign Language"], Comments = [], Prefix = [@"sgn"], }, new() { - Type = RecordType.ExtLanguage, + Type = Rfc5646Record.RecordType.ExtLanguage, SubTag = "fsl", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, PreferredValue = "fsl", + Tag = null, Description = [@"French Sign Language"], Comments = [], Prefix = [@"sgn"], }, new() { - Type = RecordType.ExtLanguage, + Type = Rfc5646Record.RecordType.ExtLanguage, SubTag = "fss", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, PreferredValue = "fss", + Tag = null, Description = [ @"Finland-Swedish Sign Language", @@ -76469,606 +125342,885 @@ public static Rfc5646Data Create() => }, new() { - Type = RecordType.ExtLanguage, + Type = Rfc5646Record.RecordType.ExtLanguage, SubTag = "gan", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "zh", + Deprecated = null, PreferredValue = "gan", + Tag = null, Description = [@"Gan Chinese"], Comments = [], Prefix = [@"zh"], }, new() { - Type = RecordType.ExtLanguage, + Type = Rfc5646Record.RecordType.ExtLanguage, SubTag = "gds", Added = new DateOnly(2012, 8, 12), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, PreferredValue = "gds", + Tag = null, Description = [@"Ghandruk Sign Language"], Comments = [], Prefix = [@"sgn"], }, new() { - Type = RecordType.ExtLanguage, + Type = Rfc5646Record.RecordType.ExtLanguage, SubTag = "gom", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "kok", + Deprecated = null, PreferredValue = "gom", + Tag = null, Description = [@"Goan Konkani"], Comments = [], Prefix = [@"kok"], }, new() { - Type = RecordType.ExtLanguage, + Type = Rfc5646Record.RecordType.ExtLanguage, SubTag = "gse", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, PreferredValue = "gse", + Tag = null, Description = [@"Ghanaian Sign Language"], Comments = [], Prefix = [@"sgn"], }, new() { - Type = RecordType.ExtLanguage, + Type = Rfc5646Record.RecordType.ExtLanguage, SubTag = "gsg", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, PreferredValue = "gsg", + Tag = null, Description = [@"German Sign Language"], Comments = [], Prefix = [@"sgn"], }, new() { - Type = RecordType.ExtLanguage, + Type = Rfc5646Record.RecordType.ExtLanguage, SubTag = "gsm", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, PreferredValue = "gsm", + Tag = null, Description = [@"Guatemalan Sign Language"], Comments = [], Prefix = [@"sgn"], }, new() { - Type = RecordType.ExtLanguage, + Type = Rfc5646Record.RecordType.ExtLanguage, SubTag = "gss", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, PreferredValue = "gss", + Tag = null, Description = [@"Greek Sign Language"], Comments = [], Prefix = [@"sgn"], }, new() { - Type = RecordType.ExtLanguage, + Type = Rfc5646Record.RecordType.ExtLanguage, SubTag = "gus", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, PreferredValue = "gus", + Tag = null, Description = [@"Guinean Sign Language"], Comments = [], Prefix = [@"sgn"], }, new() { - Type = RecordType.ExtLanguage, + Type = Rfc5646Record.RecordType.ExtLanguage, SubTag = "hab", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, PreferredValue = "hab", + Tag = null, Description = [@"Hanoi Sign Language"], Comments = [], Prefix = [@"sgn"], }, new() { - Type = RecordType.ExtLanguage, + Type = Rfc5646Record.RecordType.ExtLanguage, SubTag = "haf", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, PreferredValue = "haf", + Tag = null, Description = [@"Haiphong Sign Language"], Comments = [], Prefix = [@"sgn"], }, new() { - Type = RecordType.ExtLanguage, + Type = Rfc5646Record.RecordType.ExtLanguage, SubTag = "hak", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "zh", + Deprecated = null, PreferredValue = "hak", + Tag = null, Description = [@"Hakka Chinese"], Comments = [], Prefix = [@"zh"], }, new() { - Type = RecordType.ExtLanguage, + Type = Rfc5646Record.RecordType.ExtLanguage, SubTag = "hds", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, PreferredValue = "hds", + Tag = null, Description = [@"Honduras Sign Language"], Comments = [], Prefix = [@"sgn"], }, new() { - Type = RecordType.ExtLanguage, + Type = Rfc5646Record.RecordType.ExtLanguage, SubTag = "hji", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "ms", + Deprecated = null, PreferredValue = "hji", + Tag = null, Description = [@"Haji"], Comments = [], Prefix = [@"ms"], }, new() { - Type = RecordType.ExtLanguage, + Type = Rfc5646Record.RecordType.ExtLanguage, SubTag = "hks", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, PreferredValue = "hks", + Tag = null, Description = [@"Hong Kong Sign Language", @"Heung Kong Sau Yue"], Comments = [], Prefix = [@"sgn"], }, new() { - Type = RecordType.ExtLanguage, + Type = Rfc5646Record.RecordType.ExtLanguage, SubTag = "hnm", Added = new DateOnly(2024, 12, 12), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "zh", + Deprecated = null, PreferredValue = "hnm", + Tag = null, Description = [@"Hainanese"], Comments = [], Prefix = [@"zh"], }, new() { - Type = RecordType.ExtLanguage, + Type = Rfc5646Record.RecordType.ExtLanguage, SubTag = "hos", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, PreferredValue = "hos", + Tag = null, Description = [@"Ho Chi Minh City Sign Language"], Comments = [], Prefix = [@"sgn"], }, new() { - Type = RecordType.ExtLanguage, + Type = Rfc5646Record.RecordType.ExtLanguage, SubTag = "hps", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, PreferredValue = "hps", + Tag = null, Description = [@"Hawai'i Sign Language (HSL)", @"Hawai'i Pidgin Sign Language"], Comments = [], Prefix = [@"sgn"], }, new() { - Type = RecordType.ExtLanguage, + Type = Rfc5646Record.RecordType.ExtLanguage, SubTag = "hsh", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, PreferredValue = "hsh", + Tag = null, Description = [@"Hungarian Sign Language"], Comments = [], Prefix = [@"sgn"], }, new() { - Type = RecordType.ExtLanguage, + Type = Rfc5646Record.RecordType.ExtLanguage, SubTag = "hsl", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, PreferredValue = "hsl", + Tag = null, Description = [@"Hausa Sign Language"], Comments = [], Prefix = [@"sgn"], }, new() { - Type = RecordType.ExtLanguage, + Type = Rfc5646Record.RecordType.ExtLanguage, SubTag = "hsn", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "zh", + Deprecated = null, PreferredValue = "hsn", + Tag = null, Description = [@"Xiang Chinese"], Comments = [], Prefix = [@"zh"], }, new() { - Type = RecordType.ExtLanguage, + Type = Rfc5646Record.RecordType.ExtLanguage, SubTag = "icl", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, PreferredValue = "icl", + Tag = null, Description = [@"Icelandic Sign Language"], Comments = [], Prefix = [@"sgn"], }, new() { - Type = RecordType.ExtLanguage, + Type = Rfc5646Record.RecordType.ExtLanguage, SubTag = "iks", Added = new DateOnly(2015, 2, 12), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, PreferredValue = "iks", + Tag = null, Description = [@"Inuit Sign Language"], Comments = [], Prefix = [@"sgn"], }, new() { - Type = RecordType.ExtLanguage, + Type = Rfc5646Record.RecordType.ExtLanguage, SubTag = "ils", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, PreferredValue = "ils", + Tag = null, Description = [@"International Sign"], Comments = [], Prefix = [@"sgn"], }, new() { - Type = RecordType.ExtLanguage, + Type = Rfc5646Record.RecordType.ExtLanguage, SubTag = "inl", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, PreferredValue = "inl", + Tag = null, Description = [@"Indonesian Sign Language"], Comments = [], Prefix = [@"sgn"], }, new() { - Type = RecordType.ExtLanguage, + Type = Rfc5646Record.RecordType.ExtLanguage, SubTag = "ins", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, PreferredValue = "ins", + Tag = null, Description = [@"Indian Sign Language"], Comments = [], Prefix = [@"sgn"], }, new() { - Type = RecordType.ExtLanguage, + Type = Rfc5646Record.RecordType.ExtLanguage, SubTag = "ise", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, PreferredValue = "ise", + Tag = null, Description = [@"Italian Sign Language"], Comments = [], Prefix = [@"sgn"], }, new() { - Type = RecordType.ExtLanguage, + Type = Rfc5646Record.RecordType.ExtLanguage, SubTag = "isg", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, PreferredValue = "isg", + Tag = null, Description = [@"Irish Sign Language"], Comments = [], Prefix = [@"sgn"], }, new() { - Type = RecordType.ExtLanguage, + Type = Rfc5646Record.RecordType.ExtLanguage, SubTag = "isr", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, PreferredValue = "isr", + Tag = null, Description = [@"Israeli Sign Language"], Comments = [], Prefix = [@"sgn"], }, new() { - Type = RecordType.ExtLanguage, + Type = Rfc5646Record.RecordType.ExtLanguage, SubTag = "jak", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "ms", + Deprecated = null, PreferredValue = "jak", + Tag = null, Description = [@"Jakun"], Comments = [], Prefix = [@"ms"], }, new() { - Type = RecordType.ExtLanguage, + Type = Rfc5646Record.RecordType.ExtLanguage, SubTag = "jax", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "ms", + Deprecated = null, PreferredValue = "jax", + Tag = null, Description = [@"Jambi Malay"], Comments = [], Prefix = [@"ms"], }, new() { - Type = RecordType.ExtLanguage, + Type = Rfc5646Record.RecordType.ExtLanguage, SubTag = "jcs", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, PreferredValue = "jcs", + Tag = null, Description = [@"Jamaican Country Sign Language"], Comments = [], Prefix = [@"sgn"], }, new() { - Type = RecordType.ExtLanguage, + Type = Rfc5646Record.RecordType.ExtLanguage, SubTag = "jhs", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, PreferredValue = "jhs", + Tag = null, Description = [@"Jhankot Sign Language"], Comments = [], Prefix = [@"sgn"], }, new() { - Type = RecordType.ExtLanguage, + Type = Rfc5646Record.RecordType.ExtLanguage, SubTag = "jks", Added = new DateOnly(2021, 2, 20), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, PreferredValue = "jks", + Tag = null, Description = [@"Amami Koniya Sign Language"], Comments = [], Prefix = [@"sgn"], }, new() { - Type = RecordType.ExtLanguage, + Type = Rfc5646Record.RecordType.ExtLanguage, SubTag = "jls", Added = new DateOnly(2010, 3, 11), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, PreferredValue = "jls", + Tag = null, Description = [@"Jamaican Sign Language"], Comments = [], Prefix = [@"sgn"], }, new() { - Type = RecordType.ExtLanguage, + Type = Rfc5646Record.RecordType.ExtLanguage, SubTag = "jos", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, PreferredValue = "jos", + Tag = null, Description = [@"Jordanian Sign Language"], Comments = [], Prefix = [@"sgn"], }, new() { - Type = RecordType.ExtLanguage, + Type = Rfc5646Record.RecordType.ExtLanguage, SubTag = "jsl", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, PreferredValue = "jsl", + Tag = null, Description = [@"Japanese Sign Language"], Comments = [], Prefix = [@"sgn"], }, new() { - Type = RecordType.ExtLanguage, + Type = Rfc5646Record.RecordType.ExtLanguage, SubTag = "jus", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, PreferredValue = "jus", + Tag = null, Description = [@"Jumla Sign Language"], Comments = [], Prefix = [@"sgn"], }, new() { - Type = RecordType.ExtLanguage, + Type = Rfc5646Record.RecordType.ExtLanguage, SubTag = "kgi", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, PreferredValue = "kgi", + Tag = null, Description = [@"Selangor Sign Language"], Comments = [], Prefix = [@"sgn"], }, new() { - Type = RecordType.ExtLanguage, + Type = Rfc5646Record.RecordType.ExtLanguage, SubTag = "knn", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "kok", + Deprecated = null, PreferredValue = "knn", + Tag = null, Description = [@"Konkani (individual language)"], Comments = [], Prefix = [@"kok"], }, new() { - Type = RecordType.ExtLanguage, + Type = Rfc5646Record.RecordType.ExtLanguage, SubTag = "kvb", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "ms", + Deprecated = null, PreferredValue = "kvb", + Tag = null, Description = [@"Kubu"], Comments = [], Prefix = [@"ms"], }, new() { - Type = RecordType.ExtLanguage, + Type = Rfc5646Record.RecordType.ExtLanguage, SubTag = "kvk", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, PreferredValue = "kvk", + Tag = null, Description = [@"Korean Sign Language"], Comments = [], Prefix = [@"sgn"], }, new() { - Type = RecordType.ExtLanguage, + Type = Rfc5646Record.RecordType.ExtLanguage, SubTag = "kvr", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "ms", + Deprecated = null, PreferredValue = "kvr", + Tag = null, Description = [@"Kerinci"], Comments = [], Prefix = [@"ms"], }, new() { - Type = RecordType.ExtLanguage, + Type = Rfc5646Record.RecordType.ExtLanguage, SubTag = "kxd", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "ms", + Deprecated = null, PreferredValue = "kxd", + Tag = null, Description = [@"Brunei"], Comments = [], Prefix = [@"ms"], }, new() { - Type = RecordType.ExtLanguage, + Type = Rfc5646Record.RecordType.ExtLanguage, SubTag = "lbs", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, PreferredValue = "lbs", + Tag = null, Description = [@"Libyan Sign Language"], Comments = [], Prefix = [@"sgn"], }, new() { - Type = RecordType.ExtLanguage, + Type = Rfc5646Record.RecordType.ExtLanguage, SubTag = "lce", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "ms", + Deprecated = null, PreferredValue = "lce", + Tag = null, Description = [@"Loncong", @"Sekak"], Comments = [], Prefix = [@"ms"], }, new() { - Type = RecordType.ExtLanguage, + Type = Rfc5646Record.RecordType.ExtLanguage, SubTag = "lcf", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "ms", + Deprecated = null, PreferredValue = "lcf", + Tag = null, Description = [@"Lubu"], Comments = [], Prefix = [@"ms"], }, new() { - Type = RecordType.ExtLanguage, + Type = Rfc5646Record.RecordType.ExtLanguage, SubTag = "lgs", Added = new DateOnly(2023, 3, 17), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, PreferredValue = "lgs", + Tag = null, Description = [@"Guinea-Bissau Sign Language", @"Língua Gestual Guineense"], Comments = [], Prefix = [@"sgn"], }, new() { - Type = RecordType.ExtLanguage, + Type = Rfc5646Record.RecordType.ExtLanguage, SubTag = "liw", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "ms", + Deprecated = null, PreferredValue = "liw", + Tag = null, Description = [@"Col"], Comments = [], Prefix = [@"ms"], }, new() { - Type = RecordType.ExtLanguage, + Type = Rfc5646Record.RecordType.ExtLanguage, SubTag = "lls", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, PreferredValue = "lls", + Tag = null, Description = [@"Lithuanian Sign Language"], Comments = [], Prefix = [@"sgn"], }, new() { - Type = RecordType.ExtLanguage, + Type = Rfc5646Record.RecordType.ExtLanguage, SubTag = "lsb", Added = new DateOnly(2021, 2, 20), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, PreferredValue = "lsb", + Tag = null, Description = [@"Burundian Sign Language", @"Langue des Signes Burundaise"], Comments = [], Prefix = [@"sgn"], }, new() { - Type = RecordType.ExtLanguage, + Type = Rfc5646Record.RecordType.ExtLanguage, SubTag = "lsc", Added = new DateOnly(2022, 2, 25), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, PreferredValue = "lsc", + Tag = null, Description = [@"Albarradas Sign Language", @"Lengua de señas Albarradas"], Comments = [], Prefix = [@"sgn"], }, new() { - Type = RecordType.ExtLanguage, + Type = Rfc5646Record.RecordType.ExtLanguage, SubTag = "lsg", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, Deprecated = new DateOnly(2018, 3, 8), PreferredValue = "lsg", + Tag = null, Description = [@"Lyons Sign Language"], Comments = [], Prefix = [@"sgn"], }, new() { - Type = RecordType.ExtLanguage, + Type = Rfc5646Record.RecordType.ExtLanguage, SubTag = "lsl", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, PreferredValue = "lsl", + Tag = null, Description = [@"Latvian Sign Language"], Comments = [], Prefix = [@"sgn"], }, new() { - Type = RecordType.ExtLanguage, + Type = Rfc5646Record.RecordType.ExtLanguage, SubTag = "lsn", Added = new DateOnly(2019, 4, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, PreferredValue = "lsn", + Tag = null, Description = [@"Tibetan Sign Language"], Comments = [], Prefix = [@"sgn"], }, new() { - Type = RecordType.ExtLanguage, + Type = Rfc5646Record.RecordType.ExtLanguage, SubTag = "lso", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, PreferredValue = "lso", + Tag = null, Description = [@"Laos Sign Language"], Comments = [], Prefix = [@"sgn"], }, new() { - Type = RecordType.ExtLanguage, + Type = Rfc5646Record.RecordType.ExtLanguage, SubTag = "lsp", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, PreferredValue = "lsp", + Tag = null, Description = [@"Panamanian Sign Language", @"Lengua de Señas Panameñas"], Comments = [], Prefix = [@"sgn"], }, new() { - Type = RecordType.ExtLanguage, + Type = Rfc5646Record.RecordType.ExtLanguage, SubTag = "lst", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, PreferredValue = "lst", + Tag = null, Description = [@"Trinidad and Tobago Sign Language"], Comments = [], Prefix = [@"sgn"], }, new() { - Type = RecordType.ExtLanguage, + Type = Rfc5646Record.RecordType.ExtLanguage, SubTag = "lsv", Added = new DateOnly(2019, 4, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, PreferredValue = "lsv", + Tag = null, Description = [@"Sivia Sign Language"], Comments = [], Prefix = [@"sgn"], }, new() { - Type = RecordType.ExtLanguage, + Type = Rfc5646Record.RecordType.ExtLanguage, SubTag = "lsw", Added = new DateOnly(2022, 2, 25), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, PreferredValue = "lsw", + Tag = null, Description = [ @"Seychelles Sign Language", @@ -77080,600 +126232,870 @@ public static Rfc5646Data Create() => }, new() { - Type = RecordType.ExtLanguage, + Type = Rfc5646Record.RecordType.ExtLanguage, SubTag = "lsy", Added = new DateOnly(2010, 3, 11), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, PreferredValue = "lsy", + Tag = null, Description = [@"Mauritian Sign Language"], Comments = [], Prefix = [@"sgn"], }, new() { - Type = RecordType.ExtLanguage, + Type = Rfc5646Record.RecordType.ExtLanguage, SubTag = "ltg", Added = new DateOnly(2010, 3, 11), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "lv", + Deprecated = null, PreferredValue = "ltg", + Tag = null, Description = [@"Latgalian"], Comments = [], Prefix = [@"lv"], }, new() { - Type = RecordType.ExtLanguage, + Type = Rfc5646Record.RecordType.ExtLanguage, SubTag = "luh", Added = new DateOnly(2024, 12, 12), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "zh", + Deprecated = null, PreferredValue = "luh", + Tag = null, Description = [@"Leizhou Chinese"], Comments = [], Prefix = [@"zh"], }, new() { - Type = RecordType.ExtLanguage, + Type = Rfc5646Record.RecordType.ExtLanguage, SubTag = "lvs", Added = new DateOnly(2010, 3, 11), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "lv", + Deprecated = null, PreferredValue = "lvs", + Tag = null, Description = [@"Standard Latvian"], Comments = [], Prefix = [@"lv"], }, new() { - Type = RecordType.ExtLanguage, + Type = Rfc5646Record.RecordType.ExtLanguage, SubTag = "lws", Added = new DateOnly(2018, 3, 8), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, PreferredValue = "lws", + Tag = null, Description = [@"Malawian Sign Language"], Comments = [], Prefix = [@"sgn"], }, new() { - Type = RecordType.ExtLanguage, + Type = Rfc5646Record.RecordType.ExtLanguage, SubTag = "lzh", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "zh", + Deprecated = null, PreferredValue = "lzh", + Tag = null, Description = [@"Literary Chinese"], Comments = [], Prefix = [@"zh"], }, new() { - Type = RecordType.ExtLanguage, + Type = Rfc5646Record.RecordType.ExtLanguage, SubTag = "max", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "ms", + Deprecated = null, PreferredValue = "max", + Tag = null, Description = [@"North Moluccan Malay"], Comments = [], Prefix = [@"ms"], }, new() { - Type = RecordType.ExtLanguage, + Type = Rfc5646Record.RecordType.ExtLanguage, SubTag = "mdl", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, PreferredValue = "mdl", + Tag = null, Description = [@"Maltese Sign Language"], Comments = [], Prefix = [@"sgn"], }, new() { - Type = RecordType.ExtLanguage, + Type = Rfc5646Record.RecordType.ExtLanguage, SubTag = "meo", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "ms", + Deprecated = null, PreferredValue = "meo", + Tag = null, Description = [@"Kedah Malay"], Comments = [], Prefix = [@"ms"], }, new() { - Type = RecordType.ExtLanguage, + Type = Rfc5646Record.RecordType.ExtLanguage, SubTag = "mfa", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "ms", + Deprecated = null, PreferredValue = "mfa", + Tag = null, Description = [@"Pattani Malay"], Comments = [], Prefix = [@"ms"], }, new() { - Type = RecordType.ExtLanguage, + Type = Rfc5646Record.RecordType.ExtLanguage, SubTag = "mfb", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "ms", + Deprecated = null, PreferredValue = "mfb", + Tag = null, Description = [@"Bangka"], Comments = [], Prefix = [@"ms"], }, new() { - Type = RecordType.ExtLanguage, + Type = Rfc5646Record.RecordType.ExtLanguage, SubTag = "mfs", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, PreferredValue = "mfs", + Tag = null, Description = [@"Mexican Sign Language"], Comments = [], Prefix = [@"sgn"], }, new() { - Type = RecordType.ExtLanguage, + Type = Rfc5646Record.RecordType.ExtLanguage, SubTag = "min", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "ms", + Deprecated = null, PreferredValue = "min", + Tag = null, Description = [@"Minangkabau"], Comments = [], Prefix = [@"ms"], }, new() { - Type = RecordType.ExtLanguage, + Type = Rfc5646Record.RecordType.ExtLanguage, SubTag = "mnp", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "zh", + Deprecated = null, PreferredValue = "mnp", + Tag = null, Description = [@"Min Bei Chinese"], Comments = [], Prefix = [@"zh"], }, new() { - Type = RecordType.ExtLanguage, + Type = Rfc5646Record.RecordType.ExtLanguage, SubTag = "mqg", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "ms", + Deprecated = null, PreferredValue = "mqg", + Tag = null, Description = [@"Kota Bangun Kutai Malay"], Comments = [], Prefix = [@"ms"], }, new() { - Type = RecordType.ExtLanguage, + Type = Rfc5646Record.RecordType.ExtLanguage, SubTag = "mre", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, PreferredValue = "mre", + Tag = null, Description = [@"Martha's Vineyard Sign Language"], Comments = [], Prefix = [@"sgn"], }, new() { - Type = RecordType.ExtLanguage, + Type = Rfc5646Record.RecordType.ExtLanguage, SubTag = "msd", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, PreferredValue = "msd", + Tag = null, Description = [@"Yucatec Maya Sign Language"], Comments = [], Prefix = [@"sgn"], }, new() { - Type = RecordType.ExtLanguage, + Type = Rfc5646Record.RecordType.ExtLanguage, SubTag = "msi", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "ms", + Deprecated = null, PreferredValue = "msi", + Tag = null, Description = [@"Sabah Malay"], Comments = [], Prefix = [@"ms"], }, new() { - Type = RecordType.ExtLanguage, + Type = Rfc5646Record.RecordType.ExtLanguage, SubTag = "msr", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, PreferredValue = "msr", + Tag = null, Description = [@"Mongolian Sign Language"], Comments = [], Prefix = [@"sgn"], }, new() { - Type = RecordType.ExtLanguage, + Type = Rfc5646Record.RecordType.ExtLanguage, SubTag = "mui", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "ms", + Deprecated = null, PreferredValue = "mui", + Tag = null, Description = [@"Musi"], Comments = [], Prefix = [@"ms"], }, new() { - Type = RecordType.ExtLanguage, + Type = Rfc5646Record.RecordType.ExtLanguage, SubTag = "mzc", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, PreferredValue = "mzc", + Tag = null, Description = [@"Madagascar Sign Language"], Comments = [], Prefix = [@"sgn"], }, new() { - Type = RecordType.ExtLanguage, + Type = Rfc5646Record.RecordType.ExtLanguage, SubTag = "mzg", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, PreferredValue = "mzg", + Tag = null, Description = [@"Monastic Sign Language"], Comments = [], Prefix = [@"sgn"], }, new() { - Type = RecordType.ExtLanguage, + Type = Rfc5646Record.RecordType.ExtLanguage, SubTag = "mzy", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, PreferredValue = "mzy", + Tag = null, Description = [@"Mozambican Sign Language"], Comments = [], Prefix = [@"sgn"], }, new() { - Type = RecordType.ExtLanguage, + Type = Rfc5646Record.RecordType.ExtLanguage, SubTag = "nan", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "zh", + Deprecated = null, PreferredValue = "nan", + Tag = null, Description = [@"Min Nan Chinese"], Comments = [], Prefix = [@"zh"], }, new() { - Type = RecordType.ExtLanguage, + Type = Rfc5646Record.RecordType.ExtLanguage, SubTag = "nbs", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, PreferredValue = "nbs", + Tag = null, Description = [@"Namibian Sign Language"], Comments = [], Prefix = [@"sgn"], }, new() { - Type = RecordType.ExtLanguage, + Type = Rfc5646Record.RecordType.ExtLanguage, SubTag = "ncs", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, PreferredValue = "ncs", + Tag = null, Description = [@"Nicaraguan Sign Language"], Comments = [], Prefix = [@"sgn"], }, new() { - Type = RecordType.ExtLanguage, + Type = Rfc5646Record.RecordType.ExtLanguage, SubTag = "nsi", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, PreferredValue = "nsi", + Tag = null, Description = [@"Nigerian Sign Language"], Comments = [], Prefix = [@"sgn"], }, new() { - Type = RecordType.ExtLanguage, + Type = Rfc5646Record.RecordType.ExtLanguage, SubTag = "nsl", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, PreferredValue = "nsl", + Tag = null, Description = [@"Norwegian Sign Language"], Comments = [], Prefix = [@"sgn"], }, new() { - Type = RecordType.ExtLanguage, + Type = Rfc5646Record.RecordType.ExtLanguage, SubTag = "nsp", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, PreferredValue = "nsp", + Tag = null, Description = [@"Nepalese Sign Language"], Comments = [], Prefix = [@"sgn"], }, new() { - Type = RecordType.ExtLanguage, + Type = Rfc5646Record.RecordType.ExtLanguage, SubTag = "nsr", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, PreferredValue = "nsr", + Tag = null, Description = [@"Maritime Sign Language"], Comments = [], Prefix = [@"sgn"], }, new() { - Type = RecordType.ExtLanguage, + Type = Rfc5646Record.RecordType.ExtLanguage, SubTag = "nzs", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, PreferredValue = "nzs", + Tag = null, Description = [@"New Zealand Sign Language"], Comments = [], Prefix = [@"sgn"], }, new() { - Type = RecordType.ExtLanguage, + Type = Rfc5646Record.RecordType.ExtLanguage, SubTag = "okl", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, PreferredValue = "okl", + Tag = null, Description = [@"Old Kentish Sign Language"], Comments = [], Prefix = [@"sgn"], }, new() { - Type = RecordType.ExtLanguage, + Type = Rfc5646Record.RecordType.ExtLanguage, SubTag = "orn", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "ms", + Deprecated = null, PreferredValue = "orn", + Tag = null, Description = [@"Orang Kanaq"], Comments = [], Prefix = [@"ms"], }, new() { - Type = RecordType.ExtLanguage, + Type = Rfc5646Record.RecordType.ExtLanguage, SubTag = "ors", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "ms", + Deprecated = null, PreferredValue = "ors", + Tag = null, Description = [@"Orang Seletar"], Comments = [], Prefix = [@"ms"], }, new() { - Type = RecordType.ExtLanguage, + Type = Rfc5646Record.RecordType.ExtLanguage, SubTag = "pel", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "ms", + Deprecated = null, PreferredValue = "pel", + Tag = null, Description = [@"Pekal"], Comments = [], Prefix = [@"ms"], }, new() { - Type = RecordType.ExtLanguage, + Type = Rfc5646Record.RecordType.ExtLanguage, SubTag = "pga", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "ar", + Deprecated = null, PreferredValue = "pga", + Tag = null, Description = [@"Sudanese Creole Arabic"], Comments = [], Prefix = [@"ar"], }, new() { - Type = RecordType.ExtLanguage, + Type = Rfc5646Record.RecordType.ExtLanguage, SubTag = "pgz", Added = new DateOnly(2016, 5, 30), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, PreferredValue = "pgz", + Tag = null, Description = [@"Papua New Guinean Sign Language"], Comments = [], Prefix = [@"sgn"], }, new() { - Type = RecordType.ExtLanguage, + Type = Rfc5646Record.RecordType.ExtLanguage, SubTag = "pks", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, PreferredValue = "pks", + Tag = null, Description = [@"Pakistan Sign Language"], Comments = [], Prefix = [@"sgn"], }, new() { - Type = RecordType.ExtLanguage, + Type = Rfc5646Record.RecordType.ExtLanguage, SubTag = "prl", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, PreferredValue = "prl", + Tag = null, Description = [@"Peruvian Sign Language"], Comments = [], Prefix = [@"sgn"], }, new() { - Type = RecordType.ExtLanguage, + Type = Rfc5646Record.RecordType.ExtLanguage, SubTag = "prz", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, PreferredValue = "prz", + Tag = null, Description = [@"Providencia Sign Language"], Comments = [], Prefix = [@"sgn"], }, new() { - Type = RecordType.ExtLanguage, + Type = Rfc5646Record.RecordType.ExtLanguage, SubTag = "psc", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, PreferredValue = "psc", + Tag = null, Description = [@"Iranian Sign Language", @"Persian Sign Language"], Comments = [], Prefix = [@"sgn"], }, new() { - Type = RecordType.ExtLanguage, + Type = Rfc5646Record.RecordType.ExtLanguage, SubTag = "psd", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, PreferredValue = "psd", + Tag = null, Description = [@"Plains Indian Sign Language"], Comments = [], Prefix = [@"sgn"], }, new() { - Type = RecordType.ExtLanguage, + Type = Rfc5646Record.RecordType.ExtLanguage, SubTag = "pse", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "ms", + Deprecated = null, PreferredValue = "pse", + Tag = null, Description = [@"Central Malay"], Comments = [], Prefix = [@"ms"], }, new() { - Type = RecordType.ExtLanguage, + Type = Rfc5646Record.RecordType.ExtLanguage, SubTag = "psg", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, PreferredValue = "psg", + Tag = null, Description = [@"Penang Sign Language"], Comments = [], Prefix = [@"sgn"], }, new() { - Type = RecordType.ExtLanguage, + Type = Rfc5646Record.RecordType.ExtLanguage, SubTag = "psl", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, PreferredValue = "psl", + Tag = null, Description = [@"Puerto Rican Sign Language"], Comments = [], Prefix = [@"sgn"], }, new() { - Type = RecordType.ExtLanguage, + Type = Rfc5646Record.RecordType.ExtLanguage, SubTag = "pso", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, PreferredValue = "pso", + Tag = null, Description = [@"Polish Sign Language"], Comments = [], Prefix = [@"sgn"], }, new() { - Type = RecordType.ExtLanguage, + Type = Rfc5646Record.RecordType.ExtLanguage, SubTag = "psp", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, PreferredValue = "psp", + Tag = null, Description = [@"Philippine Sign Language"], Comments = [], Prefix = [@"sgn"], }, new() { - Type = RecordType.ExtLanguage, + Type = Rfc5646Record.RecordType.ExtLanguage, SubTag = "psr", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, PreferredValue = "psr", + Tag = null, Description = [@"Portuguese Sign Language"], Comments = [], Prefix = [@"sgn"], }, new() { - Type = RecordType.ExtLanguage, + Type = Rfc5646Record.RecordType.ExtLanguage, SubTag = "pys", Added = new DateOnly(2010, 3, 11), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, PreferredValue = "pys", + Tag = null, Description = [@"Paraguayan Sign Language", @"Lengua de Señas del Paraguay"], Comments = [], Prefix = [@"sgn"], }, new() { - Type = RecordType.ExtLanguage, + Type = Rfc5646Record.RecordType.ExtLanguage, SubTag = "rib", Added = new DateOnly(2022, 2, 25), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, PreferredValue = "rib", + Tag = null, Description = [@"Bribri Sign Language"], Comments = [], Prefix = [@"sgn"], }, new() { - Type = RecordType.ExtLanguage, + Type = Rfc5646Record.RecordType.ExtLanguage, SubTag = "rms", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, PreferredValue = "rms", + Tag = null, Description = [@"Romanian Sign Language"], Comments = [], Prefix = [@"sgn"], }, new() { - Type = RecordType.ExtLanguage, + Type = Rfc5646Record.RecordType.ExtLanguage, SubTag = "rnb", Added = new DateOnly(2022, 2, 25), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, PreferredValue = "rnb", + Tag = null, Description = [@"Brunca Sign Language"], Comments = [], Prefix = [@"sgn"], }, new() { - Type = RecordType.ExtLanguage, + Type = Rfc5646Record.RecordType.ExtLanguage, SubTag = "rsi", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, Deprecated = new DateOnly(2017, 2, 23), PreferredValue = "rsi", + Tag = null, Description = [@"Rennellese Sign Language"], Comments = [], Prefix = [@"sgn"], }, new() { - Type = RecordType.ExtLanguage, + Type = Rfc5646Record.RecordType.ExtLanguage, SubTag = "rsl", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, PreferredValue = "rsl", + Tag = null, Description = [@"Russian Sign Language"], Comments = [], Prefix = [@"sgn"], }, new() { - Type = RecordType.ExtLanguage, + Type = Rfc5646Record.RecordType.ExtLanguage, SubTag = "rsm", Added = new DateOnly(2016, 5, 30), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, PreferredValue = "rsm", + Tag = null, Description = [@"Miriwoong Sign Language"], Comments = [], Prefix = [@"sgn"], }, new() { - Type = RecordType.ExtLanguage, + Type = Rfc5646Record.RecordType.ExtLanguage, SubTag = "rsn", Added = new DateOnly(2022, 2, 25), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, PreferredValue = "rsn", + Tag = null, Description = [@"Rwandan Sign Language"], Comments = [], Prefix = [@"sgn"], }, new() { - Type = RecordType.ExtLanguage, + Type = Rfc5646Record.RecordType.ExtLanguage, SubTag = "sdl", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, PreferredValue = "sdl", + Tag = null, Description = [@"Saudi Arabian Sign Language"], Comments = [], Prefix = [@"sgn"], }, new() { - Type = RecordType.ExtLanguage, + Type = Rfc5646Record.RecordType.ExtLanguage, SubTag = "sfb", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, PreferredValue = "sfb", + Tag = null, Description = [ @"Langue des signes de Belgique Francophone", @@ -77684,1190 +127106,1860 @@ public static Rfc5646Data Create() => }, new() { - Type = RecordType.ExtLanguage, + Type = Rfc5646Record.RecordType.ExtLanguage, SubTag = "sfs", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, PreferredValue = "sfs", + Tag = null, Description = [@"South African Sign Language"], Comments = [], Prefix = [@"sgn"], }, new() { - Type = RecordType.ExtLanguage, + Type = Rfc5646Record.RecordType.ExtLanguage, SubTag = "sgg", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, PreferredValue = "sgg", + Tag = null, Description = [@"Swiss-German Sign Language"], Comments = [], Prefix = [@"sgn"], }, new() { - Type = RecordType.ExtLanguage, + Type = Rfc5646Record.RecordType.ExtLanguage, SubTag = "sgx", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, PreferredValue = "sgx", + Tag = null, Description = [@"Sierra Leone Sign Language"], Comments = [], Prefix = [@"sgn"], }, new() { - Type = RecordType.ExtLanguage, + Type = Rfc5646Record.RecordType.ExtLanguage, SubTag = "shu", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "ar", + Deprecated = null, PreferredValue = "shu", + Tag = null, Description = [@"Chadian Arabic"], Comments = [], Prefix = [@"ar"], }, new() { - Type = RecordType.ExtLanguage, + Type = Rfc5646Record.RecordType.ExtLanguage, SubTag = "sjc", Added = new DateOnly(2024, 12, 12), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "zh", + Deprecated = null, PreferredValue = "sjc", + Tag = null, Description = [@"Shaojiang Chinese"], Comments = [], Prefix = [@"zh"], }, new() { - Type = RecordType.ExtLanguage, + Type = Rfc5646Record.RecordType.ExtLanguage, SubTag = "slf", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, PreferredValue = "slf", + Tag = null, Description = [@"Swiss-Italian Sign Language"], Comments = [], Prefix = [@"sgn"], }, new() { - Type = RecordType.ExtLanguage, + Type = Rfc5646Record.RecordType.ExtLanguage, SubTag = "sls", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, PreferredValue = "sls", + Tag = null, Description = [@"Singapore Sign Language"], Comments = [], Prefix = [@"sgn"], }, new() { - Type = RecordType.ExtLanguage, + Type = Rfc5646Record.RecordType.ExtLanguage, SubTag = "sqk", Added = new DateOnly(2012, 8, 12), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, PreferredValue = "sqk", + Tag = null, Description = [@"Albanian Sign Language"], Comments = [], Prefix = [@"sgn"], }, new() { - Type = RecordType.ExtLanguage, + Type = Rfc5646Record.RecordType.ExtLanguage, SubTag = "sqs", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, PreferredValue = "sqs", + Tag = null, Description = [@"Sri Lankan Sign Language"], Comments = [], Prefix = [@"sgn"], }, new() { - Type = RecordType.ExtLanguage, + Type = Rfc5646Record.RecordType.ExtLanguage, SubTag = "sqx", Added = new DateOnly(2021, 2, 20), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, PreferredValue = "sqx", + Tag = null, Description = [@"Kufr Qassem Sign Language (KQSL)"], Comments = [], Prefix = [@"sgn"], }, new() { - Type = RecordType.ExtLanguage, + Type = Rfc5646Record.RecordType.ExtLanguage, SubTag = "ssh", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "ar", + Deprecated = null, PreferredValue = "ssh", + Tag = null, Description = [@"Shihhi Arabic"], Comments = [], Prefix = [@"ar"], }, new() { - Type = RecordType.ExtLanguage, + Type = Rfc5646Record.RecordType.ExtLanguage, SubTag = "ssp", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, PreferredValue = "ssp", + Tag = null, Description = [@"Spanish Sign Language"], Comments = [], Prefix = [@"sgn"], }, new() { - Type = RecordType.ExtLanguage, + Type = Rfc5646Record.RecordType.ExtLanguage, SubTag = "ssr", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, PreferredValue = "ssr", + Tag = null, Description = [@"Swiss-French Sign Language"], Comments = [], Prefix = [@"sgn"], }, new() { - Type = RecordType.ExtLanguage, + Type = Rfc5646Record.RecordType.ExtLanguage, SubTag = "svk", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, PreferredValue = "svk", + Tag = null, Description = [@"Slovakian Sign Language"], Comments = [], Prefix = [@"sgn"], }, new() { - Type = RecordType.ExtLanguage, + Type = Rfc5646Record.RecordType.ExtLanguage, SubTag = "swc", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "sw", + Deprecated = null, PreferredValue = "swc", + Tag = null, Description = [@"Congo Swahili"], Comments = [], Prefix = [@"sw"], }, new() { - Type = RecordType.ExtLanguage, + Type = Rfc5646Record.RecordType.ExtLanguage, SubTag = "swh", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "sw", + Deprecated = null, PreferredValue = "swh", + Tag = null, Description = [@"Swahili (individual language)", @"Kiswahili"], Comments = [], Prefix = [@"sw"], }, new() { - Type = RecordType.ExtLanguage, + Type = Rfc5646Record.RecordType.ExtLanguage, SubTag = "swl", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, PreferredValue = "swl", + Tag = null, Description = [@"Swedish Sign Language"], Comments = [], Prefix = [@"sgn"], }, new() { - Type = RecordType.ExtLanguage, + Type = Rfc5646Record.RecordType.ExtLanguage, SubTag = "syy", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, PreferredValue = "syy", + Tag = null, Description = [@"Al-Sayyid Bedouin Sign Language"], Comments = [], Prefix = [@"sgn"], }, new() { - Type = RecordType.ExtLanguage, + Type = Rfc5646Record.RecordType.ExtLanguage, SubTag = "szs", Added = new DateOnly(2017, 2, 23), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, PreferredValue = "szs", + Tag = null, Description = [@"Solomon Islands Sign Language"], Comments = [], Prefix = [@"sgn"], }, new() { - Type = RecordType.ExtLanguage, + Type = Rfc5646Record.RecordType.ExtLanguage, SubTag = "tmw", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "ms", + Deprecated = null, PreferredValue = "tmw", + Tag = null, Description = [@"Temuan"], Comments = [], Prefix = [@"ms"], }, new() { - Type = RecordType.ExtLanguage, + Type = Rfc5646Record.RecordType.ExtLanguage, SubTag = "tse", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, PreferredValue = "tse", + Tag = null, Description = [@"Tunisian Sign Language"], Comments = [], Prefix = [@"sgn"], }, new() { - Type = RecordType.ExtLanguage, + Type = Rfc5646Record.RecordType.ExtLanguage, SubTag = "tsm", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, PreferredValue = "tsm", + Tag = null, Description = [@"Turkish Sign Language", @"Türk İşaret Dili"], Comments = [], Prefix = [@"sgn"], }, new() { - Type = RecordType.ExtLanguage, + Type = Rfc5646Record.RecordType.ExtLanguage, SubTag = "tsq", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, PreferredValue = "tsq", + Tag = null, Description = [@"Thai Sign Language"], Comments = [], Prefix = [@"sgn"], }, new() { - Type = RecordType.ExtLanguage, + Type = Rfc5646Record.RecordType.ExtLanguage, SubTag = "tss", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, PreferredValue = "tss", + Tag = null, Description = [@"Taiwan Sign Language"], Comments = [], Prefix = [@"sgn"], }, new() { - Type = RecordType.ExtLanguage, + Type = Rfc5646Record.RecordType.ExtLanguage, SubTag = "tsy", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, PreferredValue = "tsy", + Tag = null, Description = [@"Tebul Sign Language"], Comments = [], Prefix = [@"sgn"], }, new() { - Type = RecordType.ExtLanguage, + Type = Rfc5646Record.RecordType.ExtLanguage, SubTag = "tza", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, PreferredValue = "tza", + Tag = null, Description = [@"Tanzanian Sign Language"], Comments = [], Prefix = [@"sgn"], }, new() { - Type = RecordType.ExtLanguage, + Type = Rfc5646Record.RecordType.ExtLanguage, SubTag = "ugn", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, PreferredValue = "ugn", + Tag = null, Description = [@"Ugandan Sign Language"], Comments = [], Prefix = [@"sgn"], }, new() { - Type = RecordType.ExtLanguage, + Type = Rfc5646Record.RecordType.ExtLanguage, SubTag = "ugy", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, PreferredValue = "ugy", + Tag = null, Description = [@"Uruguayan Sign Language"], Comments = [], Prefix = [@"sgn"], }, new() { - Type = RecordType.ExtLanguage, + Type = Rfc5646Record.RecordType.ExtLanguage, SubTag = "ukl", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, PreferredValue = "ukl", + Tag = null, Description = [@"Ukrainian Sign Language"], Comments = [], Prefix = [@"sgn"], }, new() { - Type = RecordType.ExtLanguage, + Type = Rfc5646Record.RecordType.ExtLanguage, SubTag = "uks", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, PreferredValue = "uks", + Tag = null, Description = [@"Urubú-Kaapor Sign Language", @"Kaapor Sign Language"], Comments = [], Prefix = [@"sgn"], }, new() { - Type = RecordType.ExtLanguage, + Type = Rfc5646Record.RecordType.ExtLanguage, SubTag = "urk", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "ms", + Deprecated = null, PreferredValue = "urk", + Tag = null, Description = [@"Urak Lawoi'"], Comments = [], Prefix = [@"ms"], }, new() { - Type = RecordType.ExtLanguage, + Type = Rfc5646Record.RecordType.ExtLanguage, SubTag = "uzn", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "uz", + Deprecated = null, PreferredValue = "uzn", + Tag = null, Description = [@"Northern Uzbek"], Comments = [], Prefix = [@"uz"], }, new() { - Type = RecordType.ExtLanguage, + Type = Rfc5646Record.RecordType.ExtLanguage, SubTag = "uzs", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "uz", + Deprecated = null, PreferredValue = "uzs", + Tag = null, Description = [@"Southern Uzbek"], Comments = [], Prefix = [@"uz"], }, new() { - Type = RecordType.ExtLanguage, + Type = Rfc5646Record.RecordType.ExtLanguage, SubTag = "vgt", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, PreferredValue = "vgt", + Tag = null, Description = [@"Vlaamse Gebarentaal", @"Flemish Sign Language"], Comments = [], Prefix = [@"sgn"], }, new() { - Type = RecordType.ExtLanguage, + Type = Rfc5646Record.RecordType.ExtLanguage, SubTag = "vkk", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "ms", + Deprecated = null, PreferredValue = "vkk", + Tag = null, Description = [@"Kaur"], Comments = [], Prefix = [@"ms"], }, new() { - Type = RecordType.ExtLanguage, + Type = Rfc5646Record.RecordType.ExtLanguage, SubTag = "vkt", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "ms", + Deprecated = null, PreferredValue = "vkt", + Tag = null, Description = [@"Tenggarong Kutai Malay"], Comments = [], Prefix = [@"ms"], }, new() { - Type = RecordType.ExtLanguage, + Type = Rfc5646Record.RecordType.ExtLanguage, SubTag = "vsi", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, PreferredValue = "vsi", + Tag = null, Description = [@"Moldova Sign Language"], Comments = [], Prefix = [@"sgn"], }, new() { - Type = RecordType.ExtLanguage, + Type = Rfc5646Record.RecordType.ExtLanguage, SubTag = "vsl", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, PreferredValue = "vsl", + Tag = null, Description = [@"Venezuelan Sign Language"], Comments = [], Prefix = [@"sgn"], }, new() { - Type = RecordType.ExtLanguage, + Type = Rfc5646Record.RecordType.ExtLanguage, SubTag = "vsv", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, PreferredValue = "vsv", + Tag = null, Description = [@"Valencian Sign Language", @"Llengua de signes valenciana"], Comments = [], Prefix = [@"sgn"], }, new() { - Type = RecordType.ExtLanguage, + Type = Rfc5646Record.RecordType.ExtLanguage, SubTag = "wbs", Added = new DateOnly(2017, 2, 23), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, PreferredValue = "wbs", + Tag = null, Description = [@"West Bengal Sign Language"], Comments = [], Prefix = [@"sgn"], }, new() { - Type = RecordType.ExtLanguage, + Type = Rfc5646Record.RecordType.ExtLanguage, SubTag = "wuu", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "zh", + Deprecated = null, PreferredValue = "wuu", + Tag = null, Description = [@"Wu Chinese"], Comments = [], Prefix = [@"zh"], }, new() { - Type = RecordType.ExtLanguage, + Type = Rfc5646Record.RecordType.ExtLanguage, SubTag = "xki", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, PreferredValue = "xki", + Tag = null, Description = [@"Kenyan Sign Language"], Comments = [], Prefix = [@"sgn"], }, new() { - Type = RecordType.ExtLanguage, + Type = Rfc5646Record.RecordType.ExtLanguage, SubTag = "xml", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, PreferredValue = "xml", + Tag = null, Description = [@"Malaysian Sign Language"], Comments = [], Prefix = [@"sgn"], }, new() { - Type = RecordType.ExtLanguage, + Type = Rfc5646Record.RecordType.ExtLanguage, SubTag = "xmm", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "ms", + Deprecated = null, PreferredValue = "xmm", + Tag = null, Description = [@"Manado Malay"], Comments = [], Prefix = [@"ms"], }, new() { - Type = RecordType.ExtLanguage, + Type = Rfc5646Record.RecordType.ExtLanguage, SubTag = "xms", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, PreferredValue = "xms", + Tag = null, Description = [@"Moroccan Sign Language"], Comments = [], Prefix = [@"sgn"], }, new() { - Type = RecordType.ExtLanguage, + Type = Rfc5646Record.RecordType.ExtLanguage, SubTag = "yds", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, Deprecated = new DateOnly(2015, 2, 12), PreferredValue = "yds", + Tag = null, Description = [@"Yiddish Sign Language"], Comments = [], Prefix = [@"sgn"], }, new() { - Type = RecordType.ExtLanguage, + Type = Rfc5646Record.RecordType.ExtLanguage, SubTag = "ygs", Added = new DateOnly(2014, 2, 28), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, PreferredValue = "ygs", + Tag = null, Description = [@"Yolŋu Sign Language"], Comments = [], Prefix = [@"sgn"], }, new() { - Type = RecordType.ExtLanguage, + Type = Rfc5646Record.RecordType.ExtLanguage, SubTag = "yhs", Added = new DateOnly(2015, 4, 17), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, PreferredValue = "yhs", + Tag = null, Description = [@"Yan-nhaŋu Sign Language"], Comments = [], Prefix = [@"sgn"], }, new() { - Type = RecordType.ExtLanguage, + Type = Rfc5646Record.RecordType.ExtLanguage, SubTag = "ysl", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, PreferredValue = "ysl", + Tag = null, Description = [@"Yugoslavian Sign Language"], Comments = [], Prefix = [@"sgn"], }, new() { - Type = RecordType.ExtLanguage, + Type = Rfc5646Record.RecordType.ExtLanguage, SubTag = "ysm", Added = new DateOnly(2021, 2, 20), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, PreferredValue = "ysm", + Tag = null, Description = [@"Myanmar Sign Language"], Comments = [], Prefix = [@"sgn"], }, new() { - Type = RecordType.ExtLanguage, + Type = Rfc5646Record.RecordType.ExtLanguage, SubTag = "yue", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "zh", + Deprecated = null, PreferredValue = "yue", + Tag = null, Description = [@"Yue Chinese", @"Cantonese"], Comments = [], Prefix = [@"zh"], }, new() { - Type = RecordType.ExtLanguage, + Type = Rfc5646Record.RecordType.ExtLanguage, SubTag = "zib", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, PreferredValue = "zib", + Tag = null, Description = [@"Zimbabwe Sign Language"], Comments = [], Prefix = [@"sgn"], }, new() { - Type = RecordType.ExtLanguage, + Type = Rfc5646Record.RecordType.ExtLanguage, SubTag = "zlm", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "ms", + Deprecated = null, PreferredValue = "zlm", + Tag = null, Description = [@"Malay (individual language)"], Comments = [], Prefix = [@"ms"], }, new() { - Type = RecordType.ExtLanguage, + Type = Rfc5646Record.RecordType.ExtLanguage, SubTag = "zmi", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "ms", + Deprecated = null, PreferredValue = "zmi", + Tag = null, Description = [@"Negeri Sembilan Malay"], Comments = [], Prefix = [@"ms"], }, new() { - Type = RecordType.ExtLanguage, + Type = Rfc5646Record.RecordType.ExtLanguage, SubTag = "zsl", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, PreferredValue = "zsl", + Tag = null, Description = [@"Zambian Sign Language"], Comments = [], Prefix = [@"sgn"], }, new() { - Type = RecordType.ExtLanguage, + Type = Rfc5646Record.RecordType.ExtLanguage, SubTag = "zsm", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, MacroLanguage = "ms", + Deprecated = null, PreferredValue = "zsm", + Tag = null, Description = [@"Standard Malay"], Comments = [], Prefix = [@"ms"], }, new() { - Type = RecordType.Script, + Type = Rfc5646Record.RecordType.Script, SubTag = "Adlm", Added = new DateOnly(2014, 12, 11), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Adlam"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Script, + Type = Rfc5646Record.RecordType.Script, SubTag = "Afak", Added = new DateOnly(2011, 1, 7), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Afaka"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Script, + Type = Rfc5646Record.RecordType.Script, SubTag = "Aghb", Added = new DateOnly(2012, 11, 1), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Caucasian Albanian"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Script, + Type = Rfc5646Record.RecordType.Script, SubTag = "Ahom", Added = new DateOnly(2013, 12, 2), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ahom", @"Tai Ahom"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Script, + Type = Rfc5646Record.RecordType.Script, SubTag = "Arab", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Arabic"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Script, + Type = Rfc5646Record.RecordType.Script, SubTag = "Aran", Added = new DateOnly(2014, 12, 11), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Arabic (Nastaliq variant)"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Script, + Type = Rfc5646Record.RecordType.Script, SubTag = "Armi", Added = new DateOnly(2007, 12, 5), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Imperial Aramaic"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Script, + Type = Rfc5646Record.RecordType.Script, SubTag = "Armn", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Armenian"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Script, + Type = Rfc5646Record.RecordType.Script, SubTag = "Avst", Added = new DateOnly(2007, 7, 28), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Avestan"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Script, + Type = Rfc5646Record.RecordType.Script, SubTag = "Bali", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Balinese"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Script, + Type = Rfc5646Record.RecordType.Script, SubTag = "Bamu", Added = new DateOnly(2009, 7, 30), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Bamum"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Script, + Type = Rfc5646Record.RecordType.Script, SubTag = "Bass", Added = new DateOnly(2010, 4, 10), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Bassa Vah"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Script, + Type = Rfc5646Record.RecordType.Script, SubTag = "Batk", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Batak"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Script, + Type = Rfc5646Record.RecordType.Script, SubTag = "Beng", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Bengali", @"Bangla"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Script, + Type = Rfc5646Record.RecordType.Script, SubTag = "Berf", Added = new DateOnly(2025, 2, 6), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Beria Erfe"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Script, + Type = Rfc5646Record.RecordType.Script, SubTag = "Bhks", Added = new DateOnly(2015, 7, 24), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Bhaiksuki"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Script, + Type = Rfc5646Record.RecordType.Script, SubTag = "Blis", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Blissymbols"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Script, + Type = Rfc5646Record.RecordType.Script, SubTag = "Bopo", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Bopomofo"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Script, + Type = Rfc5646Record.RecordType.Script, SubTag = "Brah", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Brahmi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Script, + Type = Rfc5646Record.RecordType.Script, SubTag = "Brai", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Braille"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Script, + Type = Rfc5646Record.RecordType.Script, SubTag = "Bugi", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Buginese"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Script, + Type = Rfc5646Record.RecordType.Script, SubTag = "Buhd", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Buhid"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Script, + Type = Rfc5646Record.RecordType.Script, SubTag = "Cakm", Added = new DateOnly(2007, 12, 5), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Chakma"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Script, + Type = Rfc5646Record.RecordType.Script, SubTag = "Cans", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Unified Canadian Aboriginal Syllabics"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Script, + Type = Rfc5646Record.RecordType.Script, SubTag = "Cari", Added = new DateOnly(2006, 7, 21), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Carian"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Script, + Type = Rfc5646Record.RecordType.Script, SubTag = "Cham", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Cham"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Script, + Type = Rfc5646Record.RecordType.Script, SubTag = "Cher", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Cherokee"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Script, + Type = Rfc5646Record.RecordType.Script, SubTag = "Chis", Added = new DateOnly(2023, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Chisoi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Script, + Type = Rfc5646Record.RecordType.Script, SubTag = "Chrs", Added = new DateOnly(2019, 9, 11), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Chorasmian"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Script, + Type = Rfc5646Record.RecordType.Script, SubTag = "Cirt", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Cirth"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Script, + Type = Rfc5646Record.RecordType.Script, SubTag = "Copt", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Coptic"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Script, + Type = Rfc5646Record.RecordType.Script, SubTag = "Cpmn", Added = new DateOnly(2017, 8, 13), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Cypro-Minoan"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Script, + Type = Rfc5646Record.RecordType.Script, SubTag = "Cprt", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Cypriot syllabary"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Script, + Type = Rfc5646Record.RecordType.Script, SubTag = "Cyrl", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Cyrillic"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Script, + Type = Rfc5646Record.RecordType.Script, SubTag = "Cyrs", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Cyrillic (Old Church Slavonic variant)"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Script, + Type = Rfc5646Record.RecordType.Script, SubTag = "Deva", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Devanagari", @"Nagari"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Script, + Type = Rfc5646Record.RecordType.Script, SubTag = "Diak", Added = new DateOnly(2019, 9, 11), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Dives Akuru"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Script, + Type = Rfc5646Record.RecordType.Script, SubTag = "Dogr", Added = new DateOnly(2017, 1, 13), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Dogra"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Script, + Type = Rfc5646Record.RecordType.Script, SubTag = "Dsrt", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Deseret", @"Mormon"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Script, + Type = Rfc5646Record.RecordType.Script, SubTag = "Dupl", Added = new DateOnly(2010, 8, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Duployan shorthand", @"Duployan stenography"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Script, + Type = Rfc5646Record.RecordType.Script, SubTag = "Egyd", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Egyptian demotic"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Script, + Type = Rfc5646Record.RecordType.Script, SubTag = "Egyh", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Egyptian hieratic"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Script, + Type = Rfc5646Record.RecordType.Script, SubTag = "Egyp", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Egyptian hieroglyphs"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Script, + Type = Rfc5646Record.RecordType.Script, SubTag = "Elba", Added = new DateOnly(2010, 8, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Elbasan"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Script, + Type = Rfc5646Record.RecordType.Script, SubTag = "Elym", Added = new DateOnly(2018, 10, 28), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Elymaic"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Script, + Type = Rfc5646Record.RecordType.Script, SubTag = "Ethi", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ethiopic", @"Geʻez", @"Ge'ez"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Script, + Type = Rfc5646Record.RecordType.Script, SubTag = "Gara", Added = new DateOnly(2023, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Garay"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Script, + Type = Rfc5646Record.RecordType.Script, SubTag = "Geok", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Khutsuri (Asomtavruli and Nuskhuri)"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Script, + Type = Rfc5646Record.RecordType.Script, SubTag = "Geor", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Georgian (Mkhedruli and Mtavruli)"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Script, + Type = Rfc5646Record.RecordType.Script, SubTag = "Glag", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Glagolitic"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Script, + Type = Rfc5646Record.RecordType.Script, SubTag = "Gong", Added = new DateOnly(2017, 1, 13), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Gunjala Gondi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Script, + Type = Rfc5646Record.RecordType.Script, SubTag = "Gonm", Added = new DateOnly(2017, 1, 13), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Masaram Gondi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Script, + Type = Rfc5646Record.RecordType.Script, SubTag = "Goth", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Gothic"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Script, + Type = Rfc5646Record.RecordType.Script, SubTag = "Gran", Added = new DateOnly(2009, 12, 9), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Grantha"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Script, + Type = Rfc5646Record.RecordType.Script, SubTag = "Grek", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Greek"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Script, + Type = Rfc5646Record.RecordType.Script, SubTag = "Gujr", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Gujarati"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Script, + Type = Rfc5646Record.RecordType.Script, SubTag = "Gukh", Added = new DateOnly(2023, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Gurung Khema"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Script, + Type = Rfc5646Record.RecordType.Script, SubTag = "Guru", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Gurmukhi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Script, + Type = Rfc5646Record.RecordType.Script, SubTag = "Hanb", Added = new DateOnly(2016, 2, 8), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Han with Bopomofo (alias for Han + Bopomofo)"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Script, + Type = Rfc5646Record.RecordType.Script, SubTag = "Hang", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Hangul", @"Hangŭl", @"Hangeul"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Script, + Type = Rfc5646Record.RecordType.Script, SubTag = "Hani", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Han", @"Hanzi", @"Kanji", @"Hanja"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Script, + Type = Rfc5646Record.RecordType.Script, SubTag = "Hano", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Hanunoo", @"Hanunóo"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Script, + Type = Rfc5646Record.RecordType.Script, SubTag = "Hans", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Han (Simplified variant)"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Script, + Type = Rfc5646Record.RecordType.Script, SubTag = "Hant", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Han (Traditional variant)"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Script, + Type = Rfc5646Record.RecordType.Script, SubTag = "Hatr", Added = new DateOnly(2013, 12, 2), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Hatran"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Script, + Type = Rfc5646Record.RecordType.Script, SubTag = "Hebr", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Hebrew"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Script, + Type = Rfc5646Record.RecordType.Script, SubTag = "Hira", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Hiragana"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Script, + Type = Rfc5646Record.RecordType.Script, SubTag = "Hluw", Added = new DateOnly(2011, 12, 28), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [ @"Anatolian Hieroglyphs", @@ -78879,567 +128971,945 @@ public static Rfc5646Data Create() => }, new() { - Type = RecordType.Script, + Type = Rfc5646Record.RecordType.Script, SubTag = "Hmng", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Pahawh Hmong"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Script, + Type = Rfc5646Record.RecordType.Script, SubTag = "Hmnp", Added = new DateOnly(2017, 8, 13), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Nyiakeng Puachue Hmong"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Script, + Type = Rfc5646Record.RecordType.Script, SubTag = "Hntl", Added = new DateOnly(2025, 5, 14), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Han (Traditional variant) with Latin (alias for Hant + Latn)"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Script, + Type = Rfc5646Record.RecordType.Script, SubTag = "Hrkt", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Japanese syllabaries (alias for Hiragana + Katakana)"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Script, + Type = Rfc5646Record.RecordType.Script, SubTag = "Hung", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Old Hungarian", @"Hungarian Runic"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Script, + Type = Rfc5646Record.RecordType.Script, SubTag = "Inds", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Indus", @"Harappan"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Script, + Type = Rfc5646Record.RecordType.Script, SubTag = "Ital", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Old Italic (Etruscan, Oscan, etc.)"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Script, + Type = Rfc5646Record.RecordType.Script, SubTag = "Jamo", Added = new DateOnly(2016, 2, 8), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Jamo (alias for Jamo subset of Hangul)"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Script, + Type = Rfc5646Record.RecordType.Script, SubTag = "Java", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Javanese"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Script, + Type = Rfc5646Record.RecordType.Script, SubTag = "Jpan", Added = new DateOnly(2006, 7, 21), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Japanese (alias for Han + Hiragana + Katakana)"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Script, + Type = Rfc5646Record.RecordType.Script, SubTag = "Jurc", Added = new DateOnly(2011, 1, 7), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Jurchen"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Script, + Type = Rfc5646Record.RecordType.Script, SubTag = "Kali", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kayah Li"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Script, + Type = Rfc5646Record.RecordType.Script, SubTag = "Kana", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Katakana"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Script, + Type = Rfc5646Record.RecordType.Script, SubTag = "Kawi", Added = new DateOnly(2021, 12, 24), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kawi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Script, + Type = Rfc5646Record.RecordType.Script, SubTag = "Khar", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kharoshthi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Script, + Type = Rfc5646Record.RecordType.Script, SubTag = "Khmr", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Khmer"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Script, + Type = Rfc5646Record.RecordType.Script, SubTag = "Khoj", Added = new DateOnly(2011, 8, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Khojki"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Script, + Type = Rfc5646Record.RecordType.Script, SubTag = "Kitl", Added = new DateOnly(2014, 12, 11), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Khitan large script"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Script, + Type = Rfc5646Record.RecordType.Script, SubTag = "Kits", Added = new DateOnly(2014, 12, 11), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Khitan small script"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Script, + Type = Rfc5646Record.RecordType.Script, SubTag = "Knda", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kannada"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Script, + Type = Rfc5646Record.RecordType.Script, SubTag = "Kore", Added = new DateOnly(2007, 7, 5), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Korean (alias for Hangul + Han)"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Script, + Type = Rfc5646Record.RecordType.Script, SubTag = "Kpel", Added = new DateOnly(2010, 4, 10), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kpelle"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Script, + Type = Rfc5646Record.RecordType.Script, SubTag = "Krai", Added = new DateOnly(2023, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kirat Rai"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Script, + Type = Rfc5646Record.RecordType.Script, SubTag = "Kthi", Added = new DateOnly(2007, 12, 5), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kaithi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Script, + Type = Rfc5646Record.RecordType.Script, SubTag = "Lana", Added = new DateOnly(2006, 7, 21), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Tai Tham", @"Lanna"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Script, + Type = Rfc5646Record.RecordType.Script, SubTag = "Laoo", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Lao"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Script, + Type = Rfc5646Record.RecordType.Script, SubTag = "Latf", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Latin (Fraktur variant)"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Script, + Type = Rfc5646Record.RecordType.Script, SubTag = "Latg", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Latin (Gaelic variant)"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Script, + Type = Rfc5646Record.RecordType.Script, SubTag = "Latn", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Latin"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Script, + Type = Rfc5646Record.RecordType.Script, SubTag = "Leke", Added = new DateOnly(2015, 7, 24), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Leke"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Script, + Type = Rfc5646Record.RecordType.Script, SubTag = "Lepc", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Lepcha", @"Róng"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Script, + Type = Rfc5646Record.RecordType.Script, SubTag = "Limb", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Limbu"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Script, + Type = Rfc5646Record.RecordType.Script, SubTag = "Lina", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Linear A"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Script, + Type = Rfc5646Record.RecordType.Script, SubTag = "Linb", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Linear B"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Script, + Type = Rfc5646Record.RecordType.Script, SubTag = "Lisu", Added = new DateOnly(2009, 3, 13), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Lisu", @"Fraser"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Script, + Type = Rfc5646Record.RecordType.Script, SubTag = "Loma", Added = new DateOnly(2010, 4, 10), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Loma"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Script, + Type = Rfc5646Record.RecordType.Script, SubTag = "Lyci", Added = new DateOnly(2006, 7, 21), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Lycian"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Script, + Type = Rfc5646Record.RecordType.Script, SubTag = "Lydi", Added = new DateOnly(2006, 7, 21), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Lydian"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Script, + Type = Rfc5646Record.RecordType.Script, SubTag = "Mahj", Added = new DateOnly(2012, 11, 1), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Mahajani"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Script, + Type = Rfc5646Record.RecordType.Script, SubTag = "Maka", Added = new DateOnly(2017, 1, 13), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Makasar"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Script, + Type = Rfc5646Record.RecordType.Script, SubTag = "Mand", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Mandaic", @"Mandaean"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Script, + Type = Rfc5646Record.RecordType.Script, SubTag = "Mani", Added = new DateOnly(2007, 7, 28), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Manichaean"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Script, + Type = Rfc5646Record.RecordType.Script, SubTag = "Marc", Added = new DateOnly(2014, 12, 11), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Marchen"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Script, + Type = Rfc5646Record.RecordType.Script, SubTag = "Maya", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Mayan hieroglyphs"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Script, + Type = Rfc5646Record.RecordType.Script, SubTag = "Medf", Added = new DateOnly(2017, 1, 13), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Medefaidrin", @"Oberi Okaime", @"Oberi Ɔkaimɛ"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Script, + Type = Rfc5646Record.RecordType.Script, SubTag = "Mend", Added = new DateOnly(2010, 4, 10), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Mende Kikakui"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Script, + Type = Rfc5646Record.RecordType.Script, SubTag = "Merc", Added = new DateOnly(2009, 12, 9), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Meroitic Cursive"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Script, + Type = Rfc5646Record.RecordType.Script, SubTag = "Mero", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Meroitic Hieroglyphs"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Script, + Type = Rfc5646Record.RecordType.Script, SubTag = "Mlym", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Malayalam"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Script, + Type = Rfc5646Record.RecordType.Script, SubTag = "Modi", Added = new DateOnly(2013, 12, 2), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Modi", @"Moḍī"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Script, + Type = Rfc5646Record.RecordType.Script, SubTag = "Mong", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Mongolian"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Script, + Type = Rfc5646Record.RecordType.Script, SubTag = "Moon", Added = new DateOnly(2007, 1, 26), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Moon", @"Moon code", @"Moon script", @"Moon type"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Script, + Type = Rfc5646Record.RecordType.Script, SubTag = "Mroo", Added = new DateOnly(2011, 1, 7), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Mro", @"Mru"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Script, + Type = Rfc5646Record.RecordType.Script, SubTag = "Mtei", Added = new DateOnly(2007, 1, 26), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Meitei Mayek", @"Meithei", @"Meetei"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Script, + Type = Rfc5646Record.RecordType.Script, SubTag = "Mult", Added = new DateOnly(2013, 12, 2), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Multani"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Script, + Type = Rfc5646Record.RecordType.Script, SubTag = "Mymr", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Myanmar", @"Burmese"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Script, + Type = Rfc5646Record.RecordType.Script, SubTag = "Nagm", Added = new DateOnly(2021, 12, 24), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Nag Mundari"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Script, + Type = Rfc5646Record.RecordType.Script, SubTag = "Nand", Added = new DateOnly(2018, 10, 28), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Nandinagari"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Script, + Type = Rfc5646Record.RecordType.Script, SubTag = "Narb", Added = new DateOnly(2010, 4, 10), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Old North Arabian", @"Ancient North Arabian"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Script, + Type = Rfc5646Record.RecordType.Script, SubTag = "Nbat", Added = new DateOnly(2010, 4, 10), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Nabataean"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Script, + Type = Rfc5646Record.RecordType.Script, SubTag = "Newa", Added = new DateOnly(2016, 1, 4), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Newa", @"Newar", @"Newari", @"Nepāla lipi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Script, + Type = Rfc5646Record.RecordType.Script, SubTag = "Nkdb", Added = new DateOnly(2017, 8, 13), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Naxi Dongba", @"na²¹ɕi³³ to³³ba²¹", @"Nakhi Tomba"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Script, + Type = Rfc5646Record.RecordType.Script, SubTag = "Nkgb", Added = new DateOnly(2009, 3, 13), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [ @"Naxi Geba", @@ -79452,783 +129922,1305 @@ public static Rfc5646Data Create() => }, new() { - Type = RecordType.Script, + Type = Rfc5646Record.RecordType.Script, SubTag = "Nkoo", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"N’Ko", @"N'Ko"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Script, + Type = Rfc5646Record.RecordType.Script, SubTag = "Nshu", Added = new DateOnly(2011, 1, 7), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Nüshu"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Script, + Type = Rfc5646Record.RecordType.Script, SubTag = "Ogam", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ogham"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Script, + Type = Rfc5646Record.RecordType.Script, SubTag = "Olck", Added = new DateOnly(2006, 7, 21), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ol Chiki", @"Ol Cemet'", @"Ol", @"Santali"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Script, + Type = Rfc5646Record.RecordType.Script, SubTag = "Onao", Added = new DateOnly(2023, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ol Onal"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Script, + Type = Rfc5646Record.RecordType.Script, SubTag = "Orkh", Added = new DateOnly(2009, 7, 30), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Old Turkic", @"Orkhon Runic"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Script, + Type = Rfc5646Record.RecordType.Script, SubTag = "Orya", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Oriya", @"Odia"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Script, + Type = Rfc5646Record.RecordType.Script, SubTag = "Osge", Added = new DateOnly(2014, 12, 11), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Osage"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Script, + Type = Rfc5646Record.RecordType.Script, SubTag = "Osma", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Osmanya"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Script, + Type = Rfc5646Record.RecordType.Script, SubTag = "Ougr", Added = new DateOnly(2021, 2, 12), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Old Uyghur"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Script, + Type = Rfc5646Record.RecordType.Script, SubTag = "Palm", Added = new DateOnly(2010, 4, 10), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Palmyrene"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Script, + Type = Rfc5646Record.RecordType.Script, SubTag = "Pauc", Added = new DateOnly(2013, 12, 2), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Pau Cin Hau"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Script, + Type = Rfc5646Record.RecordType.Script, SubTag = "Pcun", Added = new DateOnly(2021, 2, 12), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Proto-Cuneiform"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Script, + Type = Rfc5646Record.RecordType.Script, SubTag = "Pelm", Added = new DateOnly(2021, 2, 12), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Proto-Elamite"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Script, + Type = Rfc5646Record.RecordType.Script, SubTag = "Perm", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Old Permic"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Script, + Type = Rfc5646Record.RecordType.Script, SubTag = "Phag", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Phags-pa"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Script, + Type = Rfc5646Record.RecordType.Script, SubTag = "Phli", Added = new DateOnly(2007, 12, 5), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Inscriptional Pahlavi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Script, + Type = Rfc5646Record.RecordType.Script, SubTag = "Phlp", Added = new DateOnly(2007, 12, 5), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Psalter Pahlavi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Script, + Type = Rfc5646Record.RecordType.Script, SubTag = "Phlv", Added = new DateOnly(2007, 7, 28), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Book Pahlavi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Script, + Type = Rfc5646Record.RecordType.Script, SubTag = "Phnx", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Phoenician"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Script, + Type = Rfc5646Record.RecordType.Script, SubTag = "Piqd", Added = new DateOnly(2016, 1, 4), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Klingon (KLI pIqaD)"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Script, + Type = Rfc5646Record.RecordType.Script, SubTag = "Plrd", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Miao", @"Pollard"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Script, + Type = Rfc5646Record.RecordType.Script, SubTag = "Prti", Added = new DateOnly(2007, 12, 5), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Inscriptional Parthian"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Script, + Type = Rfc5646Record.RecordType.Script, SubTag = "Psin", Added = new DateOnly(2021, 2, 12), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Proto-Sinaitic"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Script, + Type = Rfc5646Record.RecordType.Script, SubTag = "Qaaa..Qabx", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Private use"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Script, + Type = Rfc5646Record.RecordType.Script, SubTag = "Ranj", Added = new DateOnly(2021, 2, 12), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ranjana"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Script, + Type = Rfc5646Record.RecordType.Script, SubTag = "Rjng", Added = new DateOnly(2006, 10, 17), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Rejang", @"Redjang", @"Kaganga"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Script, + Type = Rfc5646Record.RecordType.Script, SubTag = "Rohg", Added = new DateOnly(2017, 12, 13), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Hanifi Rohingya"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Script, + Type = Rfc5646Record.RecordType.Script, SubTag = "Roro", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Rongorongo"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Script, + Type = Rfc5646Record.RecordType.Script, SubTag = "Runr", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Runic"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Script, + Type = Rfc5646Record.RecordType.Script, SubTag = "Samr", Added = new DateOnly(2007, 7, 28), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Samaritan"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Script, + Type = Rfc5646Record.RecordType.Script, SubTag = "Sara", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Sarati"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Script, + Type = Rfc5646Record.RecordType.Script, SubTag = "Sarb", Added = new DateOnly(2009, 7, 30), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Old South Arabian"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Script, + Type = Rfc5646Record.RecordType.Script, SubTag = "Saur", Added = new DateOnly(2006, 7, 21), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Saurashtra"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Script, + Type = Rfc5646Record.RecordType.Script, SubTag = "Seal", Added = new DateOnly(2025, 5, 14), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Seal", @"Small Seal"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Script, + Type = Rfc5646Record.RecordType.Script, SubTag = "Sgnw", Added = new DateOnly(2006, 10, 17), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"SignWriting"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Script, + Type = Rfc5646Record.RecordType.Script, SubTag = "Shaw", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Shavian", @"Shaw"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Script, + Type = Rfc5646Record.RecordType.Script, SubTag = "Shrd", Added = new DateOnly(2011, 1, 7), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Sharada", @"Śāradā"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Script, + Type = Rfc5646Record.RecordType.Script, SubTag = "Shui", Added = new DateOnly(2017, 8, 13), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Shuishu"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Script, + Type = Rfc5646Record.RecordType.Script, SubTag = "Sidd", Added = new DateOnly(2013, 12, 2), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Siddham", @"Siddhaṃ", @"Siddhamātṛkā"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Script, + Type = Rfc5646Record.RecordType.Script, SubTag = "Sidt", Added = new DateOnly(2023, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Sidetic"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Script, + Type = Rfc5646Record.RecordType.Script, SubTag = "Sind", Added = new DateOnly(2010, 8, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Khudawadi", @"Sindhi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Script, + Type = Rfc5646Record.RecordType.Script, SubTag = "Sinh", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Sinhala"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Script, + Type = Rfc5646Record.RecordType.Script, SubTag = "Sogd", Added = new DateOnly(2017, 12, 13), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Sogdian"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Script, + Type = Rfc5646Record.RecordType.Script, SubTag = "Sogo", Added = new DateOnly(2017, 12, 13), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Old Sogdian"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Script, + Type = Rfc5646Record.RecordType.Script, SubTag = "Sora", Added = new DateOnly(2011, 1, 7), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Sora Sompeng"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Script, + Type = Rfc5646Record.RecordType.Script, SubTag = "Soyo", Added = new DateOnly(2017, 1, 13), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Soyombo"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Script, + Type = Rfc5646Record.RecordType.Script, SubTag = "Sund", Added = new DateOnly(2006, 7, 21), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Sundanese"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Script, + Type = Rfc5646Record.RecordType.Script, SubTag = "Sunu", Added = new DateOnly(2021, 12, 24), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Sunuwar"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Script, + Type = Rfc5646Record.RecordType.Script, SubTag = "Sylo", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Syloti Nagri"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Script, + Type = Rfc5646Record.RecordType.Script, SubTag = "Syrc", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Syriac"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Script, + Type = Rfc5646Record.RecordType.Script, SubTag = "Syre", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Syriac (Estrangelo variant)"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Script, + Type = Rfc5646Record.RecordType.Script, SubTag = "Syrj", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Syriac (Western variant)"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Script, + Type = Rfc5646Record.RecordType.Script, SubTag = "Syrn", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Syriac (Eastern variant)"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Script, + Type = Rfc5646Record.RecordType.Script, SubTag = "Tagb", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Tagbanwa"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Script, + Type = Rfc5646Record.RecordType.Script, SubTag = "Takr", Added = new DateOnly(2011, 1, 7), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Takri", @"Ṭākrī", @"Ṭāṅkrī"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Script, + Type = Rfc5646Record.RecordType.Script, SubTag = "Tale", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Tai Le"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Script, + Type = Rfc5646Record.RecordType.Script, SubTag = "Talu", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"New Tai Lue"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Script, + Type = Rfc5646Record.RecordType.Script, SubTag = "Taml", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Tamil"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Script, + Type = Rfc5646Record.RecordType.Script, SubTag = "Tang", Added = new DateOnly(2011, 1, 7), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Tangut"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Script, + Type = Rfc5646Record.RecordType.Script, SubTag = "Tavt", Added = new DateOnly(2007, 12, 5), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Tai Viet"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Script, + Type = Rfc5646Record.RecordType.Script, SubTag = "Tayo", Added = new DateOnly(2023, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Tai Yo"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Script, + Type = Rfc5646Record.RecordType.Script, SubTag = "Telu", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Telugu"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Script, + Type = Rfc5646Record.RecordType.Script, SubTag = "Teng", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Tengwar"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Script, + Type = Rfc5646Record.RecordType.Script, SubTag = "Tfng", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Tifinagh", @"Berber"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Script, + Type = Rfc5646Record.RecordType.Script, SubTag = "Tglg", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Tagalog", @"Baybayin", @"Alibata"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Script, + Type = Rfc5646Record.RecordType.Script, SubTag = "Thaa", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Thaana"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Script, + Type = Rfc5646Record.RecordType.Script, SubTag = "Thai", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Thai"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Script, + Type = Rfc5646Record.RecordType.Script, SubTag = "Tibt", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Tibetan"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Script, + Type = Rfc5646Record.RecordType.Script, SubTag = "Tirh", Added = new DateOnly(2011, 8, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Tirhuta"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Script, + Type = Rfc5646Record.RecordType.Script, SubTag = "Tnsa", Added = new DateOnly(2021, 3, 5), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Tangsa"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Script, + Type = Rfc5646Record.RecordType.Script, SubTag = "Todr", Added = new DateOnly(2023, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Todhri"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Script, + Type = Rfc5646Record.RecordType.Script, SubTag = "Tols", Added = new DateOnly(2023, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Tolong Siki"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Script, + Type = Rfc5646Record.RecordType.Script, SubTag = "Toto", Added = new DateOnly(2020, 5, 12), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Toto"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Script, + Type = Rfc5646Record.RecordType.Script, SubTag = "Tutg", Added = new DateOnly(2023, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Tulu-Tigalari"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Script, + Type = Rfc5646Record.RecordType.Script, SubTag = "Ugar", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ugaritic"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Script, + Type = Rfc5646Record.RecordType.Script, SubTag = "Vaii", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Vai"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Script, + Type = Rfc5646Record.RecordType.Script, SubTag = "Visp", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Visible Speech"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Script, + Type = Rfc5646Record.RecordType.Script, SubTag = "Vith", Added = new DateOnly(2021, 3, 5), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Vithkuqi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Script, + Type = Rfc5646Record.RecordType.Script, SubTag = "Wara", Added = new DateOnly(2009, 12, 9), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Warang Citi", @"Varang Kshiti"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Script, + Type = Rfc5646Record.RecordType.Script, SubTag = "Wcho", Added = new DateOnly(2017, 8, 13), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Wancho"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Script, + Type = Rfc5646Record.RecordType.Script, SubTag = "Wole", Added = new DateOnly(2011, 1, 7), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Woleai"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Script, + Type = Rfc5646Record.RecordType.Script, SubTag = "Xpeo", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Old Persian"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Script, + Type = Rfc5646Record.RecordType.Script, SubTag = "Xsux", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Sumero-Akkadian cuneiform"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Script, + Type = Rfc5646Record.RecordType.Script, SubTag = "Yezi", Added = new DateOnly(2019, 9, 11), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Yezidi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Script, + Type = Rfc5646Record.RecordType.Script, SubTag = "Yiii", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Yi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Script, + Type = Rfc5646Record.RecordType.Script, SubTag = "Zanb", Added = new DateOnly(2017, 1, 13), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [ @"Zanabazar Square", @@ -80241,881 +131233,1455 @@ public static Rfc5646Data Create() => }, new() { - Type = RecordType.Script, + Type = Rfc5646Record.RecordType.Script, SubTag = "Zinh", Added = new DateOnly(2009, 4, 3), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Code for inherited script"], Comments = [@"Not intended for use as a language subtag"], Prefix = [], }, new() { - Type = RecordType.Script, + Type = Rfc5646Record.RecordType.Script, SubTag = "Zmth", Added = new DateOnly(2007, 12, 5), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Mathematical notation"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Script, + Type = Rfc5646Record.RecordType.Script, SubTag = "Zsye", Added = new DateOnly(2016, 1, 4), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Symbols (Emoji variant)"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Script, + Type = Rfc5646Record.RecordType.Script, SubTag = "Zsym", Added = new DateOnly(2007, 12, 5), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Symbols"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Script, + Type = Rfc5646Record.RecordType.Script, SubTag = "Zxxx", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Code for unwritten documents"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Script, + Type = Rfc5646Record.RecordType.Script, SubTag = "Zyyy", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Code for undetermined script"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Script, + Type = Rfc5646Record.RecordType.Script, SubTag = "Zzzz", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Code for uncoded script"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Region, + Type = Rfc5646Record.RecordType.Region, SubTag = "AA", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Private use"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Region, + Type = Rfc5646Record.RecordType.Region, SubTag = "AC", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ascension Island"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Region, + Type = Rfc5646Record.RecordType.Region, SubTag = "AD", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Andorra"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Region, + Type = Rfc5646Record.RecordType.Region, SubTag = "AE", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"United Arab Emirates"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Region, + Type = Rfc5646Record.RecordType.Region, SubTag = "AF", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Afghanistan"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Region, + Type = Rfc5646Record.RecordType.Region, SubTag = "AG", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Antigua and Barbuda"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Region, + Type = Rfc5646Record.RecordType.Region, SubTag = "AI", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Anguilla"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Region, + Type = Rfc5646Record.RecordType.Region, SubTag = "AL", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Albania"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Region, + Type = Rfc5646Record.RecordType.Region, SubTag = "AM", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Armenia"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Region, + Type = Rfc5646Record.RecordType.Region, SubTag = "AN", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, Deprecated = new DateOnly(2011, 1, 7), + PreferredValue = null, + Tag = null, Description = [@"Netherlands Antilles"], Comments = [@"see BQ, CW, and SX"], Prefix = [], }, new() { - Type = RecordType.Region, + Type = Rfc5646Record.RecordType.Region, SubTag = "AO", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Angola"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Region, + Type = Rfc5646Record.RecordType.Region, SubTag = "AQ", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Antarctica"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Region, + Type = Rfc5646Record.RecordType.Region, SubTag = "AR", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Argentina"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Region, + Type = Rfc5646Record.RecordType.Region, SubTag = "AS", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"American Samoa"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Region, + Type = Rfc5646Record.RecordType.Region, SubTag = "AT", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Austria"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Region, + Type = Rfc5646Record.RecordType.Region, SubTag = "AU", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Australia"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Region, + Type = Rfc5646Record.RecordType.Region, SubTag = "AW", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Aruba"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Region, + Type = Rfc5646Record.RecordType.Region, SubTag = "AX", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Åland Islands"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Region, + Type = Rfc5646Record.RecordType.Region, SubTag = "AZ", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Azerbaijan"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Region, + Type = Rfc5646Record.RecordType.Region, SubTag = "BA", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Bosnia and Herzegovina"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Region, + Type = Rfc5646Record.RecordType.Region, SubTag = "BB", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Barbados"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Region, + Type = Rfc5646Record.RecordType.Region, SubTag = "BD", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Bangladesh"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Region, + Type = Rfc5646Record.RecordType.Region, SubTag = "BE", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Belgium"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Region, + Type = Rfc5646Record.RecordType.Region, SubTag = "BF", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Burkina Faso"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Region, + Type = Rfc5646Record.RecordType.Region, SubTag = "BG", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Bulgaria"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Region, + Type = Rfc5646Record.RecordType.Region, SubTag = "BH", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Bahrain"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Region, + Type = Rfc5646Record.RecordType.Region, SubTag = "BI", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Burundi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Region, + Type = Rfc5646Record.RecordType.Region, SubTag = "BJ", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Benin"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Region, + Type = Rfc5646Record.RecordType.Region, SubTag = "BL", Added = new DateOnly(2007, 11, 2), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Saint Barthélemy"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Region, + Type = Rfc5646Record.RecordType.Region, SubTag = "BM", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Bermuda"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Region, + Type = Rfc5646Record.RecordType.Region, SubTag = "BN", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Brunei Darussalam"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Region, + Type = Rfc5646Record.RecordType.Region, SubTag = "BO", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Bolivia"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Region, + Type = Rfc5646Record.RecordType.Region, SubTag = "BQ", Added = new DateOnly(2011, 1, 7), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Bonaire, Sint Eustatius and Saba"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Region, + Type = Rfc5646Record.RecordType.Region, SubTag = "BR", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Brazil"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Region, + Type = Rfc5646Record.RecordType.Region, SubTag = "BS", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Bahamas"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Region, + Type = Rfc5646Record.RecordType.Region, SubTag = "BT", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Bhutan"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Region, + Type = Rfc5646Record.RecordType.Region, SubTag = "BU", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, Deprecated = new DateOnly(1989, 12, 5), PreferredValue = "MM", + Tag = null, Description = [@"Burma"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Region, + Type = Rfc5646Record.RecordType.Region, SubTag = "BV", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Bouvet Island"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Region, + Type = Rfc5646Record.RecordType.Region, SubTag = "BW", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Botswana"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Region, + Type = Rfc5646Record.RecordType.Region, SubTag = "BY", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Belarus"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Region, + Type = Rfc5646Record.RecordType.Region, SubTag = "BZ", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Belize"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Region, + Type = Rfc5646Record.RecordType.Region, SubTag = "CA", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Canada"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Region, + Type = Rfc5646Record.RecordType.Region, SubTag = "CC", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Cocos (Keeling) Islands"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Region, + Type = Rfc5646Record.RecordType.Region, SubTag = "CD", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"The Democratic Republic of the Congo"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Region, + Type = Rfc5646Record.RecordType.Region, SubTag = "CF", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Central African Republic"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Region, + Type = Rfc5646Record.RecordType.Region, SubTag = "CG", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Congo"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Region, + Type = Rfc5646Record.RecordType.Region, SubTag = "CH", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Switzerland"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Region, + Type = Rfc5646Record.RecordType.Region, SubTag = "CI", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Côte d'Ivoire"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Region, + Type = Rfc5646Record.RecordType.Region, SubTag = "CK", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Cook Islands"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Region, + Type = Rfc5646Record.RecordType.Region, SubTag = "CL", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Chile"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Region, + Type = Rfc5646Record.RecordType.Region, SubTag = "CM", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Cameroon"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Region, + Type = Rfc5646Record.RecordType.Region, SubTag = "CN", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"China"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Region, + Type = Rfc5646Record.RecordType.Region, SubTag = "CO", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Colombia"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Region, + Type = Rfc5646Record.RecordType.Region, SubTag = "CP", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Clipperton Island"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Region, + Type = Rfc5646Record.RecordType.Region, SubTag = "CQ", Added = new DateOnly(2023, 2, 7), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Sark"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Region, + Type = Rfc5646Record.RecordType.Region, SubTag = "CR", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Costa Rica"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Region, + Type = Rfc5646Record.RecordType.Region, SubTag = "CS", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, Deprecated = new DateOnly(2006, 10, 5), + PreferredValue = null, + Tag = null, Description = [@"Serbia and Montenegro"], Comments = [@"see RS for Serbia or ME for Montenegro"], Prefix = [], }, new() { - Type = RecordType.Region, + Type = Rfc5646Record.RecordType.Region, SubTag = "CU", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Cuba"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Region, + Type = Rfc5646Record.RecordType.Region, SubTag = "CV", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Cabo Verde", @"Cape Verde"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Region, + Type = Rfc5646Record.RecordType.Region, SubTag = "CW", Added = new DateOnly(2011, 1, 7), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Curaçao"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Region, + Type = Rfc5646Record.RecordType.Region, SubTag = "CX", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Christmas Island"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Region, + Type = Rfc5646Record.RecordType.Region, SubTag = "CY", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Cyprus"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Region, + Type = Rfc5646Record.RecordType.Region, SubTag = "CZ", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Czechia", @"Czech Republic"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Region, + Type = Rfc5646Record.RecordType.Region, SubTag = "DD", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, Deprecated = new DateOnly(1990, 10, 30), PreferredValue = "DE", + Tag = null, Description = [@"German Democratic Republic"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Region, + Type = Rfc5646Record.RecordType.Region, SubTag = "DE", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Germany"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Region, + Type = Rfc5646Record.RecordType.Region, SubTag = "DG", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Diego Garcia"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Region, + Type = Rfc5646Record.RecordType.Region, SubTag = "DJ", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Djibouti"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Region, + Type = Rfc5646Record.RecordType.Region, SubTag = "DK", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Denmark"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Region, + Type = Rfc5646Record.RecordType.Region, SubTag = "DM", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Dominica"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Region, + Type = Rfc5646Record.RecordType.Region, SubTag = "DO", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Dominican Republic"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Region, + Type = Rfc5646Record.RecordType.Region, SubTag = "DZ", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Algeria"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Region, + Type = Rfc5646Record.RecordType.Region, SubTag = "EA", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ceuta, Melilla"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Region, + Type = Rfc5646Record.RecordType.Region, SubTag = "EC", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ecuador"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Region, + Type = Rfc5646Record.RecordType.Region, SubTag = "EE", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Estonia"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Region, + Type = Rfc5646Record.RecordType.Region, SubTag = "EG", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Egypt"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Region, + Type = Rfc5646Record.RecordType.Region, SubTag = "EH", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Western Sahara"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Region, + Type = Rfc5646Record.RecordType.Region, SubTag = "ER", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Eritrea"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Region, + Type = Rfc5646Record.RecordType.Region, SubTag = "ES", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Spain"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Region, + Type = Rfc5646Record.RecordType.Region, SubTag = "ET", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ethiopia"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Region, + Type = Rfc5646Record.RecordType.Region, SubTag = "EU", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"European Union"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Region, + Type = Rfc5646Record.RecordType.Region, SubTag = "EZ", Added = new DateOnly(2016, 7, 14), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Eurozone"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Region, + Type = Rfc5646Record.RecordType.Region, SubTag = "FI", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Finland"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Region, + Type = Rfc5646Record.RecordType.Region, SubTag = "FJ", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Fiji"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Region, + Type = Rfc5646Record.RecordType.Region, SubTag = "FK", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Falkland Islands (Malvinas)"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Region, + Type = Rfc5646Record.RecordType.Region, SubTag = "FM", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Federated States of Micronesia"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Region, + Type = Rfc5646Record.RecordType.Region, SubTag = "FO", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Faroe Islands"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Region, + Type = Rfc5646Record.RecordType.Region, SubTag = "FR", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"France"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Region, + Type = Rfc5646Record.RecordType.Region, SubTag = "FX", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, Deprecated = new DateOnly(1997, 7, 14), PreferredValue = "FR", + Tag = null, Description = [@"Metropolitan France"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Region, + Type = Rfc5646Record.RecordType.Region, SubTag = "GA", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Gabon"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Region, + Type = Rfc5646Record.RecordType.Region, SubTag = "GB", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"United Kingdom"], Comments = [ @@ -81125,1692 +132691,2805 @@ public static Rfc5646Data Create() => }, new() { - Type = RecordType.Region, + Type = Rfc5646Record.RecordType.Region, SubTag = "GD", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Grenada"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Region, + Type = Rfc5646Record.RecordType.Region, SubTag = "GE", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Georgia"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Region, + Type = Rfc5646Record.RecordType.Region, SubTag = "GF", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"French Guiana"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Region, + Type = Rfc5646Record.RecordType.Region, SubTag = "GG", Added = new DateOnly(2006, 3, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Guernsey"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Region, + Type = Rfc5646Record.RecordType.Region, SubTag = "GH", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ghana"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Region, + Type = Rfc5646Record.RecordType.Region, SubTag = "GI", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Gibraltar"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Region, + Type = Rfc5646Record.RecordType.Region, SubTag = "GL", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Greenland"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Region, + Type = Rfc5646Record.RecordType.Region, SubTag = "GM", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Gambia"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Region, + Type = Rfc5646Record.RecordType.Region, SubTag = "GN", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Guinea"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Region, + Type = Rfc5646Record.RecordType.Region, SubTag = "GP", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Guadeloupe"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Region, + Type = Rfc5646Record.RecordType.Region, SubTag = "GQ", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Equatorial Guinea"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Region, + Type = Rfc5646Record.RecordType.Region, SubTag = "GR", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Greece"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Region, + Type = Rfc5646Record.RecordType.Region, SubTag = "GS", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"South Georgia and the South Sandwich Islands"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Region, + Type = Rfc5646Record.RecordType.Region, SubTag = "GT", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Guatemala"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Region, + Type = Rfc5646Record.RecordType.Region, SubTag = "GU", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Guam"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Region, + Type = Rfc5646Record.RecordType.Region, SubTag = "GW", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Guinea-Bissau"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Region, + Type = Rfc5646Record.RecordType.Region, SubTag = "GY", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Guyana"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Region, + Type = Rfc5646Record.RecordType.Region, SubTag = "HK", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Hong Kong"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Region, + Type = Rfc5646Record.RecordType.Region, SubTag = "HM", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Heard Island and McDonald Islands"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Region, + Type = Rfc5646Record.RecordType.Region, SubTag = "HN", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Honduras"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Region, + Type = Rfc5646Record.RecordType.Region, SubTag = "HR", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Croatia"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Region, + Type = Rfc5646Record.RecordType.Region, SubTag = "HT", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Haiti"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Region, + Type = Rfc5646Record.RecordType.Region, SubTag = "HU", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Hungary"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Region, + Type = Rfc5646Record.RecordType.Region, SubTag = "IC", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Canary Islands"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Region, + Type = Rfc5646Record.RecordType.Region, SubTag = "ID", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Indonesia"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Region, + Type = Rfc5646Record.RecordType.Region, SubTag = "IE", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ireland"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Region, + Type = Rfc5646Record.RecordType.Region, SubTag = "IL", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Israel"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Region, + Type = Rfc5646Record.RecordType.Region, SubTag = "IM", Added = new DateOnly(2006, 3, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Isle of Man"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Region, + Type = Rfc5646Record.RecordType.Region, SubTag = "IN", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"India"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Region, + Type = Rfc5646Record.RecordType.Region, SubTag = "IO", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"British Indian Ocean Territory"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Region, + Type = Rfc5646Record.RecordType.Region, SubTag = "IQ", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Iraq"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Region, + Type = Rfc5646Record.RecordType.Region, SubTag = "IR", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Islamic Republic of Iran"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Region, + Type = Rfc5646Record.RecordType.Region, SubTag = "IS", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Iceland"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Region, + Type = Rfc5646Record.RecordType.Region, SubTag = "IT", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Italy"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Region, + Type = Rfc5646Record.RecordType.Region, SubTag = "JE", Added = new DateOnly(2006, 3, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Jersey"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Region, + Type = Rfc5646Record.RecordType.Region, SubTag = "JM", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Jamaica"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Region, + Type = Rfc5646Record.RecordType.Region, SubTag = "JO", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Jordan"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Region, + Type = Rfc5646Record.RecordType.Region, SubTag = "JP", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Japan"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Region, + Type = Rfc5646Record.RecordType.Region, SubTag = "KE", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kenya"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Region, + Type = Rfc5646Record.RecordType.Region, SubTag = "KG", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kyrgyzstan"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Region, + Type = Rfc5646Record.RecordType.Region, SubTag = "KH", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Cambodia"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Region, + Type = Rfc5646Record.RecordType.Region, SubTag = "KI", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kiribati"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Region, + Type = Rfc5646Record.RecordType.Region, SubTag = "KM", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Comoros"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Region, + Type = Rfc5646Record.RecordType.Region, SubTag = "KN", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Saint Kitts and Nevis"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Region, + Type = Rfc5646Record.RecordType.Region, SubTag = "KP", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Democratic People's Republic of Korea"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Region, + Type = Rfc5646Record.RecordType.Region, SubTag = "KR", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Republic of Korea"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Region, + Type = Rfc5646Record.RecordType.Region, SubTag = "KW", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kuwait"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Region, + Type = Rfc5646Record.RecordType.Region, SubTag = "KY", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Cayman Islands"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Region, + Type = Rfc5646Record.RecordType.Region, SubTag = "KZ", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kazakhstan"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Region, + Type = Rfc5646Record.RecordType.Region, SubTag = "LA", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Lao People's Democratic Republic"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Region, + Type = Rfc5646Record.RecordType.Region, SubTag = "LB", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Lebanon"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Region, + Type = Rfc5646Record.RecordType.Region, SubTag = "LC", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Saint Lucia"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Region, + Type = Rfc5646Record.RecordType.Region, SubTag = "LI", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Liechtenstein"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Region, + Type = Rfc5646Record.RecordType.Region, SubTag = "LK", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Sri Lanka"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Region, + Type = Rfc5646Record.RecordType.Region, SubTag = "LR", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Liberia"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Region, + Type = Rfc5646Record.RecordType.Region, SubTag = "LS", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Lesotho"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Region, + Type = Rfc5646Record.RecordType.Region, SubTag = "LT", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Lithuania"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Region, + Type = Rfc5646Record.RecordType.Region, SubTag = "LU", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Luxembourg"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Region, + Type = Rfc5646Record.RecordType.Region, SubTag = "LV", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Latvia"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Region, + Type = Rfc5646Record.RecordType.Region, SubTag = "LY", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Libya"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Region, + Type = Rfc5646Record.RecordType.Region, SubTag = "MA", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Morocco"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Region, + Type = Rfc5646Record.RecordType.Region, SubTag = "MC", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Monaco"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Region, + Type = Rfc5646Record.RecordType.Region, SubTag = "MD", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Moldova"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Region, + Type = Rfc5646Record.RecordType.Region, SubTag = "ME", Added = new DateOnly(2006, 10, 5), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Montenegro"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Region, + Type = Rfc5646Record.RecordType.Region, SubTag = "MF", Added = new DateOnly(2007, 11, 2), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Saint Martin (French part)"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Region, + Type = Rfc5646Record.RecordType.Region, SubTag = "MG", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Madagascar"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Region, + Type = Rfc5646Record.RecordType.Region, SubTag = "MH", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Marshall Islands"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Region, + Type = Rfc5646Record.RecordType.Region, SubTag = "MK", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"North Macedonia"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Region, + Type = Rfc5646Record.RecordType.Region, SubTag = "ML", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Mali"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Region, + Type = Rfc5646Record.RecordType.Region, SubTag = "MM", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Myanmar"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Region, + Type = Rfc5646Record.RecordType.Region, SubTag = "MN", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Mongolia"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Region, + Type = Rfc5646Record.RecordType.Region, SubTag = "MO", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Macao"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Region, + Type = Rfc5646Record.RecordType.Region, SubTag = "MP", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Northern Mariana Islands"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Region, + Type = Rfc5646Record.RecordType.Region, SubTag = "MQ", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Martinique"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Region, + Type = Rfc5646Record.RecordType.Region, SubTag = "MR", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Mauritania"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Region, + Type = Rfc5646Record.RecordType.Region, SubTag = "MS", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Montserrat"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Region, + Type = Rfc5646Record.RecordType.Region, SubTag = "MT", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Malta"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Region, + Type = Rfc5646Record.RecordType.Region, SubTag = "MU", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Mauritius"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Region, + Type = Rfc5646Record.RecordType.Region, SubTag = "MV", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Maldives"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Region, + Type = Rfc5646Record.RecordType.Region, SubTag = "MW", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Malawi"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Region, + Type = Rfc5646Record.RecordType.Region, SubTag = "MX", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Mexico"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Region, + Type = Rfc5646Record.RecordType.Region, SubTag = "MY", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Malaysia"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Region, + Type = Rfc5646Record.RecordType.Region, SubTag = "MZ", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Mozambique"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Region, + Type = Rfc5646Record.RecordType.Region, SubTag = "NA", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Namibia"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Region, + Type = Rfc5646Record.RecordType.Region, SubTag = "NC", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"New Caledonia"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Region, + Type = Rfc5646Record.RecordType.Region, SubTag = "NE", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Niger"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Region, + Type = Rfc5646Record.RecordType.Region, SubTag = "NF", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Norfolk Island"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Region, + Type = Rfc5646Record.RecordType.Region, SubTag = "NG", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Nigeria"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Region, + Type = Rfc5646Record.RecordType.Region, SubTag = "NI", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Nicaragua"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Region, + Type = Rfc5646Record.RecordType.Region, SubTag = "NL", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Netherlands"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Region, + Type = Rfc5646Record.RecordType.Region, SubTag = "NO", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Norway"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Region, + Type = Rfc5646Record.RecordType.Region, SubTag = "NP", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Nepal"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Region, + Type = Rfc5646Record.RecordType.Region, SubTag = "NR", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Nauru"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Region, + Type = Rfc5646Record.RecordType.Region, SubTag = "NT", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, Deprecated = new DateOnly(1993, 7, 12), + PreferredValue = null, + Tag = null, Description = [@"Neutral Zone"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Region, + Type = Rfc5646Record.RecordType.Region, SubTag = "NU", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Niue"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Region, + Type = Rfc5646Record.RecordType.Region, SubTag = "NZ", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"New Zealand"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Region, + Type = Rfc5646Record.RecordType.Region, SubTag = "OM", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Oman"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Region, + Type = Rfc5646Record.RecordType.Region, SubTag = "PA", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Panama"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Region, + Type = Rfc5646Record.RecordType.Region, SubTag = "PE", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Peru"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Region, + Type = Rfc5646Record.RecordType.Region, SubTag = "PF", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"French Polynesia"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Region, + Type = Rfc5646Record.RecordType.Region, SubTag = "PG", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Papua New Guinea"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Region, + Type = Rfc5646Record.RecordType.Region, SubTag = "PH", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Philippines"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Region, + Type = Rfc5646Record.RecordType.Region, SubTag = "PK", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Pakistan"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Region, + Type = Rfc5646Record.RecordType.Region, SubTag = "PL", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Poland"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Region, + Type = Rfc5646Record.RecordType.Region, SubTag = "PM", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Saint Pierre and Miquelon"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Region, + Type = Rfc5646Record.RecordType.Region, SubTag = "PN", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Pitcairn"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Region, + Type = Rfc5646Record.RecordType.Region, SubTag = "PR", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Puerto Rico"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Region, + Type = Rfc5646Record.RecordType.Region, SubTag = "PS", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"State of Palestine"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Region, + Type = Rfc5646Record.RecordType.Region, SubTag = "PT", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Portugal"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Region, + Type = Rfc5646Record.RecordType.Region, SubTag = "PW", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Palau"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Region, + Type = Rfc5646Record.RecordType.Region, SubTag = "PY", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Paraguay"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Region, + Type = Rfc5646Record.RecordType.Region, SubTag = "QA", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Qatar"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Region, + Type = Rfc5646Record.RecordType.Region, SubTag = "QM..QZ", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Private use"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Region, + Type = Rfc5646Record.RecordType.Region, SubTag = "RE", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Réunion"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Region, + Type = Rfc5646Record.RecordType.Region, SubTag = "RO", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Romania"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Region, + Type = Rfc5646Record.RecordType.Region, SubTag = "RS", Added = new DateOnly(2006, 10, 5), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Serbia"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Region, + Type = Rfc5646Record.RecordType.Region, SubTag = "RU", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Russian Federation"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Region, + Type = Rfc5646Record.RecordType.Region, SubTag = "RW", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Rwanda"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Region, + Type = Rfc5646Record.RecordType.Region, SubTag = "SA", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Saudi Arabia"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Region, + Type = Rfc5646Record.RecordType.Region, SubTag = "SB", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Solomon Islands"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Region, + Type = Rfc5646Record.RecordType.Region, SubTag = "SC", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Seychelles"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Region, + Type = Rfc5646Record.RecordType.Region, SubTag = "SD", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Sudan"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Region, + Type = Rfc5646Record.RecordType.Region, SubTag = "SE", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Sweden"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Region, + Type = Rfc5646Record.RecordType.Region, SubTag = "SG", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Singapore"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Region, + Type = Rfc5646Record.RecordType.Region, SubTag = "SH", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Saint Helena, Ascension and Tristan da Cunha"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Region, + Type = Rfc5646Record.RecordType.Region, SubTag = "SI", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Slovenia"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Region, + Type = Rfc5646Record.RecordType.Region, SubTag = "SJ", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Svalbard and Jan Mayen"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Region, + Type = Rfc5646Record.RecordType.Region, SubTag = "SK", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Slovakia"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Region, + Type = Rfc5646Record.RecordType.Region, SubTag = "SL", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Sierra Leone"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Region, + Type = Rfc5646Record.RecordType.Region, SubTag = "SM", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"San Marino"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Region, + Type = Rfc5646Record.RecordType.Region, SubTag = "SN", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Senegal"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Region, + Type = Rfc5646Record.RecordType.Region, SubTag = "SO", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Somalia"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Region, + Type = Rfc5646Record.RecordType.Region, SubTag = "SR", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Suriname"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Region, + Type = Rfc5646Record.RecordType.Region, SubTag = "SS", Added = new DateOnly(2011, 8, 25), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"South Sudan"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Region, + Type = Rfc5646Record.RecordType.Region, SubTag = "ST", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Sao Tome and Principe"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Region, + Type = Rfc5646Record.RecordType.Region, SubTag = "SU", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, Deprecated = new DateOnly(1992, 8, 30), + PreferredValue = null, + Tag = null, Description = [@"Union of Soviet Socialist Republics"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Region, + Type = Rfc5646Record.RecordType.Region, SubTag = "SV", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"El Salvador"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Region, + Type = Rfc5646Record.RecordType.Region, SubTag = "SX", Added = new DateOnly(2011, 1, 7), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Sint Maarten (Dutch part)"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Region, + Type = Rfc5646Record.RecordType.Region, SubTag = "SY", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Syrian Arab Republic"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Region, + Type = Rfc5646Record.RecordType.Region, SubTag = "SZ", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Eswatini", @"eSwatini", @"Swaziland"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Region, + Type = Rfc5646Record.RecordType.Region, SubTag = "TA", Added = new DateOnly(2009, 7, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Tristan da Cunha"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Region, + Type = Rfc5646Record.RecordType.Region, SubTag = "TC", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Turks and Caicos Islands"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Region, + Type = Rfc5646Record.RecordType.Region, SubTag = "TD", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Chad"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Region, + Type = Rfc5646Record.RecordType.Region, SubTag = "TF", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"French Southern Territories"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Region, + Type = Rfc5646Record.RecordType.Region, SubTag = "TG", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Togo"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Region, + Type = Rfc5646Record.RecordType.Region, SubTag = "TH", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Thailand"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Region, + Type = Rfc5646Record.RecordType.Region, SubTag = "TJ", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Tajikistan"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Region, + Type = Rfc5646Record.RecordType.Region, SubTag = "TK", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Tokelau"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Region, + Type = Rfc5646Record.RecordType.Region, SubTag = "TL", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Timor-Leste"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Region, + Type = Rfc5646Record.RecordType.Region, SubTag = "TM", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Turkmenistan"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Region, + Type = Rfc5646Record.RecordType.Region, SubTag = "TN", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Tunisia"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Region, + Type = Rfc5646Record.RecordType.Region, SubTag = "TO", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Tonga"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Region, + Type = Rfc5646Record.RecordType.Region, SubTag = "TP", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, Deprecated = new DateOnly(2002, 5, 20), PreferredValue = "TL", + Tag = null, Description = [@"East Timor"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Region, + Type = Rfc5646Record.RecordType.Region, SubTag = "TR", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Türkiye", @"Turkey"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Region, + Type = Rfc5646Record.RecordType.Region, SubTag = "TT", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Trinidad and Tobago"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Region, + Type = Rfc5646Record.RecordType.Region, SubTag = "TV", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Tuvalu"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Region, + Type = Rfc5646Record.RecordType.Region, SubTag = "TW", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Taiwan, Province of China"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Region, + Type = Rfc5646Record.RecordType.Region, SubTag = "TZ", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"United Republic of Tanzania"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Region, + Type = Rfc5646Record.RecordType.Region, SubTag = "UA", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ukraine"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Region, + Type = Rfc5646Record.RecordType.Region, SubTag = "UG", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Uganda"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Region, + Type = Rfc5646Record.RecordType.Region, SubTag = "UM", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"United States Minor Outlying Islands"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Region, + Type = Rfc5646Record.RecordType.Region, SubTag = "UN", Added = new DateOnly(2016, 7, 14), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"United Nations"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Region, + Type = Rfc5646Record.RecordType.Region, SubTag = "US", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"United States"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Region, + Type = Rfc5646Record.RecordType.Region, SubTag = "UY", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Uruguay"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Region, + Type = Rfc5646Record.RecordType.Region, SubTag = "UZ", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Uzbekistan"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Region, + Type = Rfc5646Record.RecordType.Region, SubTag = "VA", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Holy See (Vatican City State)"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Region, + Type = Rfc5646Record.RecordType.Region, SubTag = "VC", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Saint Vincent and the Grenadines"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Region, + Type = Rfc5646Record.RecordType.Region, SubTag = "VE", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Venezuela"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Region, + Type = Rfc5646Record.RecordType.Region, SubTag = "VG", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"British Virgin Islands"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Region, + Type = Rfc5646Record.RecordType.Region, SubTag = "VI", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"U.S. Virgin Islands"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Region, + Type = Rfc5646Record.RecordType.Region, SubTag = "VN", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Viet Nam"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Region, + Type = Rfc5646Record.RecordType.Region, SubTag = "VU", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Vanuatu"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Region, + Type = Rfc5646Record.RecordType.Region, SubTag = "WF", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Wallis and Futuna"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Region, + Type = Rfc5646Record.RecordType.Region, SubTag = "WS", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Samoa"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Region, + Type = Rfc5646Record.RecordType.Region, SubTag = "XA..XZ", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Private use"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Region, + Type = Rfc5646Record.RecordType.Region, SubTag = "YD", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, Deprecated = new DateOnly(1990, 8, 14), PreferredValue = "YE", + Tag = null, Description = [@"Democratic Yemen"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Region, + Type = Rfc5646Record.RecordType.Region, SubTag = "YE", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Yemen"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Region, + Type = Rfc5646Record.RecordType.Region, SubTag = "YT", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Mayotte"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Region, + Type = Rfc5646Record.RecordType.Region, SubTag = "YU", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, Deprecated = new DateOnly(2003, 7, 23), + PreferredValue = null, + Tag = null, Description = [@"Yugoslavia"], Comments = [@"see BA, HR, ME, MK, RS, or SI"], Prefix = [], }, new() { - Type = RecordType.Region, + Type = Rfc5646Record.RecordType.Region, SubTag = "ZA", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"South Africa"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Region, + Type = Rfc5646Record.RecordType.Region, SubTag = "ZM", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Zambia"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Region, + Type = Rfc5646Record.RecordType.Region, SubTag = "ZR", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, Deprecated = new DateOnly(1997, 7, 14), PreferredValue = "CD", + Tag = null, Description = [@"Zaire"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Region, + Type = Rfc5646Record.RecordType.Region, SubTag = "ZW", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Zimbabwe"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Region, + Type = Rfc5646Record.RecordType.Region, SubTag = "ZZ", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Private use"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Region, + Type = Rfc5646Record.RecordType.Region, SubTag = "001", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"World"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Region, + Type = Rfc5646Record.RecordType.Region, SubTag = "002", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Africa"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Region, + Type = Rfc5646Record.RecordType.Region, SubTag = "003", Added = new DateOnly(2010, 8, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"North America"], Comments = [ @@ -82820,90 +135499,150 @@ public static Rfc5646Data Create() => }, new() { - Type = RecordType.Region, + Type = Rfc5646Record.RecordType.Region, SubTag = "005", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"South America"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Region, + Type = Rfc5646Record.RecordType.Region, SubTag = "009", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Oceania"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Region, + Type = Rfc5646Record.RecordType.Region, SubTag = "011", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Western Africa"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Region, + Type = Rfc5646Record.RecordType.Region, SubTag = "013", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Central America"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Region, + Type = Rfc5646Record.RecordType.Region, SubTag = "014", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Eastern Africa"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Region, + Type = Rfc5646Record.RecordType.Region, SubTag = "015", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Northern Africa"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Region, + Type = Rfc5646Record.RecordType.Region, SubTag = "017", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Middle Africa"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Region, + Type = Rfc5646Record.RecordType.Region, SubTag = "018", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Southern Africa"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Region, + Type = Rfc5646Record.RecordType.Region, SubTag = "019", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Americas"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Region, + Type = Rfc5646Record.RecordType.Region, SubTag = "021", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Northern America"], Comments = [ @@ -82913,171 +135652,285 @@ public static Rfc5646Data Create() => }, new() { - Type = RecordType.Region, + Type = Rfc5646Record.RecordType.Region, SubTag = "029", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Caribbean"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Region, + Type = Rfc5646Record.RecordType.Region, SubTag = "030", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Eastern Asia"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Region, + Type = Rfc5646Record.RecordType.Region, SubTag = "034", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Southern Asia"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Region, + Type = Rfc5646Record.RecordType.Region, SubTag = "035", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"South-Eastern Asia"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Region, + Type = Rfc5646Record.RecordType.Region, SubTag = "039", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Southern Europe"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Region, + Type = Rfc5646Record.RecordType.Region, SubTag = "053", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Australia and New Zealand"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Region, + Type = Rfc5646Record.RecordType.Region, SubTag = "054", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Melanesia"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Region, + Type = Rfc5646Record.RecordType.Region, SubTag = "057", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Micronesia"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Region, + Type = Rfc5646Record.RecordType.Region, SubTag = "061", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Polynesia"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Region, + Type = Rfc5646Record.RecordType.Region, SubTag = "142", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Asia"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Region, + Type = Rfc5646Record.RecordType.Region, SubTag = "143", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Central Asia"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Region, + Type = Rfc5646Record.RecordType.Region, SubTag = "145", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Western Asia"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Region, + Type = Rfc5646Record.RecordType.Region, SubTag = "150", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Europe"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Region, + Type = Rfc5646Record.RecordType.Region, SubTag = "151", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Eastern Europe"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Region, + Type = Rfc5646Record.RecordType.Region, SubTag = "154", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Northern Europe"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Region, + Type = Rfc5646Record.RecordType.Region, SubTag = "155", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Western Europe"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Region, + Type = Rfc5646Record.RecordType.Region, SubTag = "202", Added = new DateOnly(2017, 4, 18), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Sub-Saharan Africa"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Region, + Type = Rfc5646Record.RecordType.Region, SubTag = "419", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Latin America and the Caribbean"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Variant, + Type = Rfc5646Record.RecordType.Variant, SubTag = "1606nict", Added = new DateOnly(2007, 3, 20), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Late Middle French (to 1606)"], Comments = [ @@ -83087,9 +135940,15 @@ public static Rfc5646Data Create() => }, new() { - Type = RecordType.Variant, + Type = Rfc5646Record.RecordType.Variant, SubTag = "1694acad", Added = new DateOnly(2007, 3, 20), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Early Modern French"], Comments = [ @@ -83099,18 +135958,30 @@ public static Rfc5646Data Create() => }, new() { - Type = RecordType.Variant, + Type = Rfc5646Record.RecordType.Variant, SubTag = "1901", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Traditional German orthography"], Comments = [], Prefix = [@"de"], }, new() { - Type = RecordType.Variant, + Type = Rfc5646Record.RecordType.Variant, SubTag = "1959acad", Added = new DateOnly(2008, 9, 30), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [ @"""Academic"" (""governmental"") variant of Belarusian as codified in 1959", @@ -83120,9 +135991,15 @@ public static Rfc5646Data Create() => }, new() { - Type = RecordType.Variant, + Type = Rfc5646Record.RecordType.Variant, SubTag = "1994", Added = new DateOnly(2007, 7, 28), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Standardized Resian orthography"], Comments = [@"For standardized Resian an orthography was published in 1994."], Prefix = @@ -83136,18 +136013,30 @@ public static Rfc5646Data Create() => }, new() { - Type = RecordType.Variant, + Type = Rfc5646Record.RecordType.Variant, SubTag = "1996", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"German orthography of 1996"], Comments = [], Prefix = [@"de"], }, new() { - Type = RecordType.Variant, + Type = Rfc5646Record.RecordType.Variant, SubTag = "abl1943", Added = new DateOnly(2015, 5, 6), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [ @"Orthographic formulation of 1943 - Official in Brazil (Formulário Ortográfico de 1943 - Oficial no Brasil)", @@ -83160,27 +136049,45 @@ public static Rfc5646Data Create() => }, new() { - Type = RecordType.Variant, + Type = Rfc5646Record.RecordType.Variant, SubTag = "akhmimic", Added = new DateOnly(2025, 7, 14), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Akhmimic dialect of Coptic"], Comments = [], Prefix = [@"cop"], }, new() { - Type = RecordType.Variant, + Type = Rfc5646Record.RecordType.Variant, SubTag = "akuapem", Added = new DateOnly(2017, 6, 5), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Akuapem Twi"], Comments = [], Prefix = [@"tw"], }, new() { - Type = RecordType.Variant, + Type = Rfc5646Record.RecordType.Variant, SubTag = "alalc97", Added = new DateOnly(2009, 12, 9), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"ALA-LC Romanization, 1997 edition"], Comments = [ @@ -83190,9 +136097,15 @@ public static Rfc5646Data Create() => }, new() { - Type = RecordType.Variant, + Type = Rfc5646Record.RecordType.Variant, SubTag = "aluku", Added = new DateOnly(2009, 9, 5), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Aluku dialect", @"Boni dialect"], Comments = [ @@ -83202,18 +136115,30 @@ public static Rfc5646Data Create() => }, new() { - Type = RecordType.Variant, + Type = Rfc5646Record.RecordType.Variant, SubTag = "anpezo", Added = new DateOnly(2024, 3, 4), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Anpezo standard of Ladin"], Comments = [@"Represents the standard written form of Ladin in Anpezo"], Prefix = [@"lld"], }, new() { - Type = RecordType.Variant, + Type = Rfc5646Record.RecordType.Variant, SubTag = "ao1990", Added = new DateOnly(2015, 5, 6), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [ @"Portuguese Language Orthographic Agreement of 1990 (Acordo Ortográfico da Língua Portuguesa de 1990)", @@ -83226,65 +136151,105 @@ public static Rfc5646Data Create() => }, new() { - Type = RecordType.Variant, + Type = Rfc5646Record.RecordType.Variant, SubTag = "aranes", Added = new DateOnly(2018, 4, 22), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Aranese"], Comments = [@"Occitan variant spoken in the Val d'Aran"], Prefix = [@"oc"], }, new() { - Type = RecordType.Variant, + Type = Rfc5646Record.RecordType.Variant, SubTag = "arevela", Added = new DateOnly(2006, 9, 18), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, Deprecated = new DateOnly(2018, 3, 24), + PreferredValue = null, + Tag = null, Description = [@"Eastern Armenian"], Comments = [@"Preferred tag is hy"], Prefix = [@"hy"], }, new() { - Type = RecordType.Variant, + Type = Rfc5646Record.RecordType.Variant, SubTag = "arevmda", Added = new DateOnly(2006, 9, 18), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, Deprecated = new DateOnly(2018, 3, 24), + PreferredValue = null, + Tag = null, Description = [@"Western Armenian"], Comments = [@"Preferred tag is hyw"], Prefix = [@"hy"], }, new() { - Type = RecordType.Variant, + Type = Rfc5646Record.RecordType.Variant, SubTag = "arkaika", Added = new DateOnly(2020, 12, 17), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Arcaicam Esperantom", @"Arkaika Esperanto"], Comments = [@"Archaic Esperanto variant devised by Manuel Halvelik"], Prefix = [@"eo"], }, new() { - Type = RecordType.Variant, + Type = Rfc5646Record.RecordType.Variant, SubTag = "asante", Added = new DateOnly(2017, 6, 5), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Asante Twi", @"Ashanti Twi"], Comments = [], Prefix = [@"tw"], }, new() { - Type = RecordType.Variant, + Type = Rfc5646Record.RecordType.Variant, SubTag = "auvern", Added = new DateOnly(2018, 4, 22), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Auvergnat"], Comments = [@"Occitan variant spoken in Auvergne"], Prefix = [@"oc"], }, new() { - Type = RecordType.Variant, + Type = Rfc5646Record.RecordType.Variant, SubTag = "baku1926", Added = new DateOnly(2007, 4, 18), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Unified Turkic Latin Alphabet (Historical)"], Comments = [ @@ -83306,18 +136271,30 @@ public static Rfc5646Data Create() => }, new() { - Type = RecordType.Variant, + Type = Rfc5646Record.RecordType.Variant, SubTag = "balanka", Added = new DateOnly(2014, 2, 15), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"The Balanka dialect of Anii"], Comments = [@"Balanka is one of 19 Anii dialects."], Prefix = [@"blo"], }, new() { - Type = RecordType.Variant, + Type = Rfc5646Record.RecordType.Variant, SubTag = "barla", Added = new DateOnly(2013, 12, 10), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"The Barlavento dialect group of Kabuverdianu"], Comments = [ @@ -83327,27 +136304,45 @@ public static Rfc5646Data Create() => }, new() { - Type = RecordType.Variant, + Type = Rfc5646Record.RecordType.Variant, SubTag = "basiceng", Added = new DateOnly(2015, 12, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Basic English"], Comments = [], Prefix = [@"en"], }, new() { - Type = RecordType.Variant, + Type = Rfc5646Record.RecordType.Variant, SubTag = "bauddha", Added = new DateOnly(2010, 7, 28), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Buddhist Hybrid Sanskrit"], Comments = [], Prefix = [@"sa"], }, new() { - Type = RecordType.Variant, + Type = Rfc5646Record.RecordType.Variant, SubTag = "bciav", Added = new DateOnly(2023, 5, 11), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"BCI Blissymbolics AV"], Comments = [ @@ -83357,9 +136352,15 @@ public static Rfc5646Data Create() => }, new() { - Type = RecordType.Variant, + Type = Rfc5646Record.RecordType.Variant, SubTag = "bcizbl", Added = new DateOnly(2023, 5, 11), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"BCI Blissymbolics"], Comments = [ @@ -83369,18 +136370,30 @@ public static Rfc5646Data Create() => }, new() { - Type = RecordType.Variant, + Type = Rfc5646Record.RecordType.Variant, SubTag = "biscayan", Added = new DateOnly(2010, 4, 13), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Biscayan dialect of Basque"], Comments = [], Prefix = [@"eu"], }, new() { - Type = RecordType.Variant, + Type = Rfc5646Record.RecordType.Variant, SubTag = "biske", Added = new DateOnly(2007, 7, 5), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [ @"The San Giorgio dialect of Resian", @@ -83394,9 +136407,15 @@ public static Rfc5646Data Create() => }, new() { - Type = RecordType.Variant, + Type = Rfc5646Record.RecordType.Variant, SubTag = "blasl", Added = new DateOnly(2023, 7, 31), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Black American Sign Language dialect"], Comments = [ @@ -83406,18 +136425,30 @@ public static Rfc5646Data Create() => }, new() { - Type = RecordType.Variant, + Type = Rfc5646Record.RecordType.Variant, SubTag = "bohairic", Added = new DateOnly(2025, 7, 14), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Bohairic dialect of Coptic"], Comments = [], Prefix = [@"cop"], }, new() { - Type = RecordType.Variant, + Type = Rfc5646Record.RecordType.Variant, SubTag = "bohoric", Added = new DateOnly(2012, 6, 27), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Slovene in Bohorič alphabet"], Comments = [ @@ -83427,36 +136458,60 @@ public static Rfc5646Data Create() => }, new() { - Type = RecordType.Variant, + Type = Rfc5646Record.RecordType.Variant, SubTag = "boont", Added = new DateOnly(2006, 9, 18), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Boontling"], Comments = [@"Jargon embedded in American English"], Prefix = [@"en"], }, new() { - Type = RecordType.Variant, + Type = Rfc5646Record.RecordType.Variant, SubTag = "bornholm", Added = new DateOnly(2019, 3, 27), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Bornholmsk"], Comments = [], Prefix = [@"da"], }, new() { - Type = RecordType.Variant, + Type = Rfc5646Record.RecordType.Variant, SubTag = "cisaup", Added = new DateOnly(2018, 4, 22), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Cisalpine"], Comments = [@"Occitan variant spoken in northwestern Italy"], Prefix = [@"oc"], }, new() { - Type = RecordType.Variant, + Type = Rfc5646Record.RecordType.Variant, SubTag = "colb1945", Added = new DateOnly(2015, 5, 6), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [ @"Portuguese-Brazilian Orthographic Convention of 1945 (Convenção Ortográfica Luso-Brasileira de 1945)", @@ -83469,27 +136524,45 @@ public static Rfc5646Data Create() => }, new() { - Type = RecordType.Variant, + Type = Rfc5646Record.RecordType.Variant, SubTag = "cornu", Added = new DateOnly(2015, 12, 7), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Cornu-English", @"Cornish English", @"Anglo-Cornish"], Comments = [], Prefix = [@"en"], }, new() { - Type = RecordType.Variant, + Type = Rfc5646Record.RecordType.Variant, SubTag = "creiss", Added = new DateOnly(2018, 4, 22), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Occitan variants of the Croissant area"], Comments = [], Prefix = [@"oc"], }, new() { - Type = RecordType.Variant, + Type = Rfc5646Record.RecordType.Variant, SubTag = "dajnko", Added = new DateOnly(2012, 6, 27), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Slovene in Dajnko alphabet"], Comments = [ @@ -83499,27 +136572,45 @@ public static Rfc5646Data Create() => }, new() { - Type = RecordType.Variant, + Type = Rfc5646Record.RecordType.Variant, SubTag = "ekavsk", Added = new DateOnly(2013, 12, 2), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Serbian with Ekavian pronunciation"], Comments = [], Prefix = [@"sr", @"sr-Latn", @"sr-Cyrl"], }, new() { - Type = RecordType.Variant, + Type = Rfc5646Record.RecordType.Variant, SubTag = "emodeng", Added = new DateOnly(2012, 2, 5), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Early Modern English (1500-1700)"], Comments = [], Prefix = [@"en"], }, new() { - Type = RecordType.Variant, + Type = Rfc5646Record.RecordType.Variant, SubTag = "fascia", Added = new DateOnly(2024, 3, 4), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Fascia standard of Ladin"], Comments = [ @@ -83529,18 +136620,30 @@ public static Rfc5646Data Create() => }, new() { - Type = RecordType.Variant, + Type = Rfc5646Record.RecordType.Variant, SubTag = "fayyumic", Added = new DateOnly(2025, 7, 14), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Fayyumic dialect of Coptic"], Comments = [], Prefix = [@"cop"], }, new() { - Type = RecordType.Variant, + Type = Rfc5646Record.RecordType.Variant, SubTag = "fodom", Added = new DateOnly(2024, 3, 4), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Fodom standard of Ladin"], Comments = [ @@ -83550,27 +136653,45 @@ public static Rfc5646Data Create() => }, new() { - Type = RecordType.Variant, + Type = Rfc5646Record.RecordType.Variant, SubTag = "fonipa", Added = new DateOnly(2006, 12, 11), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"International Phonetic Alphabet"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Variant, + Type = Rfc5646Record.RecordType.Variant, SubTag = "fonkirsh", Added = new DateOnly(2018, 4, 22), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kirshenbaum Phonetic Alphabet"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Variant, + Type = Rfc5646Record.RecordType.Variant, SubTag = "fonnapa", Added = new DateOnly(2016, 6, 24), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [ @"North American Phonetic Alphabet", @@ -83581,54 +136702,90 @@ public static Rfc5646Data Create() => }, new() { - Type = RecordType.Variant, + Type = Rfc5646Record.RecordType.Variant, SubTag = "fonupa", Added = new DateOnly(2006, 12, 11), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Uralic Phonetic Alphabet"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Variant, + Type = Rfc5646Record.RecordType.Variant, SubTag = "fonxsamp", Added = new DateOnly(2010, 10, 23), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"X-SAMPA transcription"], Comments = [@"Indicates that the content is transcribed according to X-SAMPA"], Prefix = [], }, new() { - Type = RecordType.Variant, + Type = Rfc5646Record.RecordType.Variant, SubTag = "gallo", Added = new DateOnly(2021, 8, 5), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Gallo"], Comments = [], Prefix = [@"fr"], }, new() { - Type = RecordType.Variant, + Type = Rfc5646Record.RecordType.Variant, SubTag = "gascon", Added = new DateOnly(2018, 4, 22), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Gascon"], Comments = [@"Occitan variant spoken in Gascony"], Prefix = [@"oc"], }, new() { - Type = RecordType.Variant, + Type = Rfc5646Record.RecordType.Variant, SubTag = "gherd", Added = new DateOnly(2024, 3, 4), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Gherdëina standard of Ladin"], Comments = [@"Represents the standard written form of Ladin in Gherdëina"], Prefix = [@"lld"], }, new() { - Type = RecordType.Variant, + Type = Rfc5646Record.RecordType.Variant, SubTag = "grclass", Added = new DateOnly(2018, 4, 22), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Classical Occitan orthography"], Comments = [ @@ -83651,18 +136808,30 @@ public static Rfc5646Data Create() => }, new() { - Type = RecordType.Variant, + Type = Rfc5646Record.RecordType.Variant, SubTag = "grital", Added = new DateOnly(2018, 4, 22), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Italian-inspired Occitan orthography"], Comments = [], Prefix = [@"oc", @"oc-cisaup", @"oc-nicard", @"oc-provenc"], }, new() { - Type = RecordType.Variant, + Type = Rfc5646Record.RecordType.Variant, SubTag = "grmistr", Added = new DateOnly(2018, 4, 22), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Mistralian or Mistralian-inspired Occitan orthography"], Comments = [ @@ -83685,38 +136854,60 @@ public static Rfc5646Data Create() => }, new() { - Type = RecordType.Variant, + Type = Rfc5646Record.RecordType.Variant, SubTag = "hanoi", Added = new DateOnly(2025, 3, 10), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"The Hà Nội variant of Vietnamese"], Comments = [], Prefix = [@"vi"], }, new() { - Type = RecordType.Variant, + Type = Rfc5646Record.RecordType.Variant, SubTag = "hepburn", Added = new DateOnly(2009, 10, 1), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Hepburn romanization"], Comments = [], Prefix = [@"ja-Latn"], }, new() { - Type = RecordType.Variant, + Type = Rfc5646Record.RecordType.Variant, SubTag = "heploc", Added = new DateOnly(2009, 10, 1), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, Deprecated = new DateOnly(2010, 2, 7), PreferredValue = "alalc97", + Tag = null, Description = [@"Hepburn romanization, Library of Congress method"], Comments = [@"Preferred tag is ja-Latn-alalc97"], Prefix = [@"ja-Latn-hepburn"], }, new() { - Type = RecordType.Variant, + Type = Rfc5646Record.RecordType.Variant, SubTag = "hognorsk", Added = new DateOnly(2010, 1, 2), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Norwegian in Høgnorsk (High Norwegian) orthography"], Comments = [ @@ -83726,9 +136917,15 @@ public static Rfc5646Data Create() => }, new() { - Type = RecordType.Variant, + Type = Rfc5646Record.RecordType.Variant, SubTag = "hsistemo", Added = new DateOnly(2017, 3, 14), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [ @"Standard H-system orthographic fallback for spelling Esperanto", @@ -83738,45 +136935,75 @@ public static Rfc5646Data Create() => }, new() { - Type = RecordType.Variant, + Type = Rfc5646Record.RecordType.Variant, SubTag = "huett", Added = new DateOnly(2025, 3, 10), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"The Huế (province Thừa Thiên) variant of Vietnamese"], Comments = [], Prefix = [@"vi"], }, new() { - Type = RecordType.Variant, + Type = Rfc5646Record.RecordType.Variant, SubTag = "ijekavsk", Added = new DateOnly(2013, 12, 2), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Serbian with Ijekavian pronunciation"], Comments = [], Prefix = [@"sr", @"sr-Latn", @"sr-Cyrl"], }, new() { - Type = RecordType.Variant, + Type = Rfc5646Record.RecordType.Variant, SubTag = "itihasa", Added = new DateOnly(2010, 7, 28), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Epic Sanskrit"], Comments = [], Prefix = [@"sa"], }, new() { - Type = RecordType.Variant, + Type = Rfc5646Record.RecordType.Variant, SubTag = "ivanchov", Added = new DateOnly(2017, 12, 13), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Bulgarian in 1899 orthography"], Comments = [@"Bulgarian orthography introduced by Todor Ivanchov in 1899"], Prefix = [@"bg"], }, new() { - Type = RecordType.Variant, + Type = Rfc5646Record.RecordType.Variant, SubTag = "jauer", Added = new DateOnly(2010, 6, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Jauer dialect of Romansh"], Comments = [ @@ -83786,27 +137013,45 @@ public static Rfc5646Data Create() => }, new() { - Type = RecordType.Variant, + Type = Rfc5646Record.RecordType.Variant, SubTag = "jyutping", Added = new DateOnly(2010, 10, 23), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Jyutping Cantonese Romanization"], Comments = [@"Jyutping romanization of Cantonese"], Prefix = [@"yue"], }, new() { - Type = RecordType.Variant, + Type = Rfc5646Record.RecordType.Variant, SubTag = "kkcor", Added = new DateOnly(2008, 10, 14), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Common Cornish orthography of Revived Cornish"], Comments = [], Prefix = [@"kw"], }, new() { - Type = RecordType.Variant, + Type = Rfc5646Record.RecordType.Variant, SubTag = "kleinsch", Added = new DateOnly(2024, 7, 20), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Kleinschmidt orthography", @"Allattaasitaamut"], Comments = [ @@ -83816,9 +137061,15 @@ public static Rfc5646Data Create() => }, new() { - Type = RecordType.Variant, + Type = Rfc5646Record.RecordType.Variant, SubTag = "kociewie", Added = new DateOnly(2014, 11, 27), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"The Kociewie dialect of Polish"], Comments = [ @@ -83828,9 +137079,15 @@ public static Rfc5646Data Create() => }, new() { - Type = RecordType.Variant, + Type = Rfc5646Record.RecordType.Variant, SubTag = "kscor", Added = new DateOnly(2012, 6, 27), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [ @"Standard Cornish orthography of Revived Cornish", @@ -83841,46 +137098,75 @@ public static Rfc5646Data Create() => }, new() { - Type = RecordType.Variant, + Type = Rfc5646Record.RecordType.Variant, SubTag = "laukika", Added = new DateOnly(2010, 7, 28), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, Deprecated = new DateOnly(2024, 6, 8), + PreferredValue = null, + Tag = null, Description = [@"Classical Sanskrit"], Comments = [@"Preferred tag is cls"], Prefix = [@"sa"], }, new() { - Type = RecordType.Variant, + Type = Rfc5646Record.RecordType.Variant, SubTag = "leidentr", Added = new DateOnly(2025, 2, 6), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ancient Egyptian in Leiden Unified Transliteration"], Comments = [@"Recommended by the International Association of Egyptologists"], Prefix = [@"egy"], }, new() { - Type = RecordType.Variant, + Type = Rfc5646Record.RecordType.Variant, SubTag = "lemosin", Added = new DateOnly(2018, 4, 22), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Limousin"], Comments = [@"Occitan variant spoken in Limousin"], Prefix = [@"oc"], }, new() { - Type = RecordType.Variant, + Type = Rfc5646Record.RecordType.Variant, SubTag = "lengadoc", Added = new DateOnly(2018, 4, 22), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Languedocien"], Comments = [@"Occitan variant spoken in Languedoc"], Prefix = [@"oc"], }, new() { - Type = RecordType.Variant, + Type = Rfc5646Record.RecordType.Variant, SubTag = "lipaw", Added = new DateOnly(2007, 8, 11), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [ @"The Lipovaz dialect of Resian", @@ -83894,18 +137180,30 @@ public static Rfc5646Data Create() => }, new() { - Type = RecordType.Variant, + Type = Rfc5646Record.RecordType.Variant, SubTag = "ltg1929", Added = new DateOnly(2022, 8, 5), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"The Latgalian language orthography codified in 1929"], Comments = [], Prefix = [@"ltg"], }, new() { - Type = RecordType.Variant, + Type = Rfc5646Record.RecordType.Variant, SubTag = "ltg2007", Added = new DateOnly(2022, 6, 23), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [ @"The Latgalian language orthography codified in the language law in 2007", @@ -83915,9 +137213,15 @@ public static Rfc5646Data Create() => }, new() { - Type = RecordType.Variant, + Type = Rfc5646Record.RecordType.Variant, SubTag = "luna1918", Added = new DateOnly(2010, 10, 10), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Post-1917 Russian orthography"], Comments = [ @@ -83927,45 +137231,75 @@ public static Rfc5646Data Create() => }, new() { - Type = RecordType.Variant, + Type = Rfc5646Record.RecordType.Variant, SubTag = "lycopol", Added = new DateOnly(2025, 7, 14), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Lycopolitan alias Subakhmimic dialect of Coptic"], Comments = [], Prefix = [@"cop"], }, new() { - Type = RecordType.Variant, + Type = Rfc5646Record.RecordType.Variant, SubTag = "mdcegyp", Added = new DateOnly(2025, 2, 6), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ancient Egyptian hieroglyphs encoded in Manuel de Codage"], Comments = [], Prefix = [@"egy"], }, new() { - Type = RecordType.Variant, + Type = Rfc5646Record.RecordType.Variant, SubTag = "mdctrans", Added = new DateOnly(2025, 2, 6), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ancient Egyptian transliteration encoded in Manuel de Codage"], Comments = [], Prefix = [@"egy"], }, new() { - Type = RecordType.Variant, + Type = Rfc5646Record.RecordType.Variant, SubTag = "mesokem", Added = new DateOnly(2025, 7, 14), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Mesokemic alias Oxyrhynchite dialect of Coptic"], Comments = [], Prefix = [@"cop"], }, new() { - Type = RecordType.Variant, + Type = Rfc5646Record.RecordType.Variant, SubTag = "metelko", Added = new DateOnly(2012, 6, 27), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Slovene in Metelko alphabet"], Comments = [ @@ -83975,18 +137309,30 @@ public static Rfc5646Data Create() => }, new() { - Type = RecordType.Variant, + Type = Rfc5646Record.RecordType.Variant, SubTag = "monoton", Added = new DateOnly(2006, 12, 11), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Monotonic Greek"], Comments = [], Prefix = [@"el"], }, new() { - Type = RecordType.Variant, + Type = Rfc5646Record.RecordType.Variant, SubTag = "ndyuka", Added = new DateOnly(2009, 9, 5), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ndyuka dialect", @"Aukan dialect"], Comments = [ @@ -83996,36 +137342,60 @@ public static Rfc5646Data Create() => }, new() { - Type = RecordType.Variant, + Type = Rfc5646Record.RecordType.Variant, SubTag = "nedis", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Natisone dialect", @"Nadiza dialect"], Comments = [], Prefix = [@"sl"], }, new() { - Type = RecordType.Variant, + Type = Rfc5646Record.RecordType.Variant, SubTag = "newfound", Added = new DateOnly(2015, 11, 25), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Newfoundland English"], Comments = [], Prefix = [@"en-CA"], }, new() { - Type = RecordType.Variant, + Type = Rfc5646Record.RecordType.Variant, SubTag = "nicard", Added = new DateOnly(2018, 4, 22), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Niçard"], Comments = [@"Occitan variant spoken in Nice"], Prefix = [@"oc"], }, new() { - Type = RecordType.Variant, + Type = Rfc5646Record.RecordType.Variant, SubTag = "njiva", Added = new DateOnly(2007, 7, 5), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"The Gniva dialect of Resian", @"The Njiva dialect of Resian"], Comments = [ @@ -84035,9 +137405,15 @@ public static Rfc5646Data Create() => }, new() { - Type = RecordType.Variant, + Type = Rfc5646Record.RecordType.Variant, SubTag = "nulik", Added = new DateOnly(2012, 1, 28), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [ @"Volapük nulik", @@ -84053,9 +137429,15 @@ public static Rfc5646Data Create() => }, new() { - Type = RecordType.Variant, + Type = Rfc5646Record.RecordType.Variant, SubTag = "osojs", Added = new DateOnly(2007, 7, 5), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [ @"The Oseacco dialect of Resian", @@ -84069,45 +137451,75 @@ public static Rfc5646Data Create() => }, new() { - Type = RecordType.Variant, + Type = Rfc5646Record.RecordType.Variant, SubTag = "oxendict", Added = new DateOnly(2015, 4, 17), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Oxford English Dictionary spelling"], Comments = [], Prefix = [@"en"], }, new() { - Type = RecordType.Variant, + Type = Rfc5646Record.RecordType.Variant, SubTag = "pahawh2", Added = new DateOnly(2017, 1, 13), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Pahawh Hmong Second Stage Reduced orthography"], Comments = [], Prefix = [@"mww", @"hnj"], }, new() { - Type = RecordType.Variant, + Type = Rfc5646Record.RecordType.Variant, SubTag = "pahawh3", Added = new DateOnly(2017, 1, 13), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Pahawh Hmong Third Stage Reduced orthography"], Comments = [], Prefix = [@"mww", @"hnj"], }, new() { - Type = RecordType.Variant, + Type = Rfc5646Record.RecordType.Variant, SubTag = "pahawh4", Added = new DateOnly(2017, 1, 13), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Pahawh Hmong Final Version orthography"], Comments = [], Prefix = [@"mww", @"hnj"], }, new() { - Type = RecordType.Variant, + Type = Rfc5646Record.RecordType.Variant, SubTag = "pamaka", Added = new DateOnly(2009, 9, 5), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Pamaka dialect"], Comments = [ @@ -84117,9 +137529,15 @@ public static Rfc5646Data Create() => }, new() { - Type = RecordType.Variant, + Type = Rfc5646Record.RecordType.Variant, SubTag = "peano", Added = new DateOnly(2020, 3, 12), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [ @"Latino Sine Flexione", @@ -84134,9 +137552,15 @@ public static Rfc5646Data Create() => }, new() { - Type = RecordType.Variant, + Type = Rfc5646Record.RecordType.Variant, SubTag = "pehoeji", Added = new DateOnly(2024, 3, 4), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [ @"Hokkien Vernacular Romanization System", @@ -84150,9 +137574,15 @@ public static Rfc5646Data Create() => }, new() { - Type = RecordType.Variant, + Type = Rfc5646Record.RecordType.Variant, SubTag = "petr1708", Added = new DateOnly(2010, 10, 10), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Petrine orthography"], Comments = [ @@ -84162,36 +137592,60 @@ public static Rfc5646Data Create() => }, new() { - Type = RecordType.Variant, + Type = Rfc5646Record.RecordType.Variant, SubTag = "pinyin", Added = new DateOnly(2008, 10, 14), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Pinyin romanization"], Comments = [], Prefix = [@"zh-Latn", @"bo-Latn"], }, new() { - Type = RecordType.Variant, + Type = Rfc5646Record.RecordType.Variant, SubTag = "polyton", Added = new DateOnly(2006, 12, 11), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Polytonic Greek"], Comments = [], Prefix = [@"el"], }, new() { - Type = RecordType.Variant, + Type = Rfc5646Record.RecordType.Variant, SubTag = "provenc", Added = new DateOnly(2018, 4, 22), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Provençal"], Comments = [@"Occitan variant spoken in Provence"], Prefix = [@"oc"], }, new() { - Type = RecordType.Variant, + Type = Rfc5646Record.RecordType.Variant, SubTag = "puter", Added = new DateOnly(2010, 6, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Puter idiom of Romansh"], Comments = [ @@ -84201,9 +137655,15 @@ public static Rfc5646Data Create() => }, new() { - Type = RecordType.Variant, + Type = Rfc5646Record.RecordType.Variant, SubTag = "rigik", Added = new DateOnly(2012, 1, 28), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [ @"Volapük rigik", @@ -84216,72 +137676,120 @@ public static Rfc5646Data Create() => }, new() { - Type = RecordType.Variant, + Type = Rfc5646Record.RecordType.Variant, SubTag = "rozaj", Added = new DateOnly(2005, 10, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Resian", @"Resianic", @"Rezijan"], Comments = [], Prefix = [@"sl"], }, new() { - Type = RecordType.Variant, + Type = Rfc5646Record.RecordType.Variant, SubTag = "rumgr", Added = new DateOnly(2010, 6, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Rumantsch Grischun"], Comments = [@"Supraregional Romansh written standard"], Prefix = [@"rm"], }, new() { - Type = RecordType.Variant, + Type = Rfc5646Record.RecordType.Variant, SubTag = "sahidic", Added = new DateOnly(2025, 7, 14), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Sahidic dialect of Coptic"], Comments = [], Prefix = [@"cop"], }, new() { - Type = RecordType.Variant, + Type = Rfc5646Record.RecordType.Variant, SubTag = "saigon", Added = new DateOnly(2025, 3, 10), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"The Sài Gòn variant of Vietnamese"], Comments = [], Prefix = [@"vi"], }, new() { - Type = RecordType.Variant, + Type = Rfc5646Record.RecordType.Variant, SubTag = "scotland", Added = new DateOnly(2007, 8, 31), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Scottish Standard English"], Comments = [], Prefix = [@"en"], }, new() { - Type = RecordType.Variant, + Type = Rfc5646Record.RecordType.Variant, SubTag = "scouse", Added = new DateOnly(2006, 9, 18), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Scouse"], Comments = [@"English Liverpudlian dialect known as 'Scouse'"], Prefix = [@"en"], }, new() { - Type = RecordType.Variant, + Type = Rfc5646Record.RecordType.Variant, SubTag = "simple", Added = new DateOnly(2015, 12, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Simplified form"], Comments = [], Prefix = [], }, new() { - Type = RecordType.Variant, + Type = Rfc5646Record.RecordType.Variant, SubTag = "solba", Added = new DateOnly(2007, 7, 5), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [ @"The Stolvizza dialect of Resian", @@ -84295,9 +137803,15 @@ public static Rfc5646Data Create() => }, new() { - Type = RecordType.Variant, + Type = Rfc5646Record.RecordType.Variant, SubTag = "sotav", Added = new DateOnly(2013, 12, 10), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"The Sotavento dialect group of Kabuverdianu"], Comments = [ @@ -84307,18 +137821,30 @@ public static Rfc5646Data Create() => }, new() { - Type = RecordType.Variant, + Type = Rfc5646Record.RecordType.Variant, SubTag = "spanglis", Added = new DateOnly(2017, 2, 23), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Spanglish"], Comments = [@"A variety of contact dialects of English and Spanish"], Prefix = [@"en", @"es"], }, new() { - Type = RecordType.Variant, + Type = Rfc5646Record.RecordType.Variant, SubTag = "surmiran", Added = new DateOnly(2010, 6, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Surmiran idiom of Romansh"], Comments = [ @@ -84328,9 +137854,15 @@ public static Rfc5646Data Create() => }, new() { - Type = RecordType.Variant, + Type = Rfc5646Record.RecordType.Variant, SubTag = "sursilv", Added = new DateOnly(2010, 6, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Sursilvan idiom of Romansh"], Comments = [ @@ -84340,9 +137872,15 @@ public static Rfc5646Data Create() => }, new() { - Type = RecordType.Variant, + Type = Rfc5646Record.RecordType.Variant, SubTag = "sutsilv", Added = new DateOnly(2010, 6, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Sutsilvan idiom of Romansh"], Comments = [ @@ -84352,18 +137890,30 @@ public static Rfc5646Data Create() => }, new() { - Type = RecordType.Variant, + Type = Rfc5646Record.RecordType.Variant, SubTag = "synnejyl", Added = new DateOnly(2021, 7, 17), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Synnejysk", @"South Jutish"], Comments = [], Prefix = [@"da"], }, new() { - Type = RecordType.Variant, + Type = Rfc5646Record.RecordType.Variant, SubTag = "tailo", Added = new DateOnly(2024, 3, 4), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [ @"Taiwanese Hokkien Romanization System for Hokkien languages", @@ -84377,9 +137927,15 @@ public static Rfc5646Data Create() => }, new() { - Type = RecordType.Variant, + Type = Rfc5646Record.RecordType.Variant, SubTag = "tarask", Added = new DateOnly(2007, 4, 27), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Belarusian in Taraskievica orthography"], Comments = [ @@ -84389,9 +137945,15 @@ public static Rfc5646Data Create() => }, new() { - Type = RecordType.Variant, + Type = Rfc5646Record.RecordType.Variant, SubTag = "tongyong", Added = new DateOnly(2020, 6, 8), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Tongyong Pinyin romanization"], Comments = [ @@ -84401,55 +137963,90 @@ public static Rfc5646Data Create() => }, new() { - Type = RecordType.Variant, + Type = Rfc5646Record.RecordType.Variant, SubTag = "tunumiit", Added = new DateOnly(2020, 7, 16), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Tunumiisiut", @"East Greenlandic", @"Østgrønlandsk"], Comments = [@"Also known as Tunumiit oraasiat"], Prefix = [@"kl"], }, new() { - Type = RecordType.Variant, + Type = Rfc5646Record.RecordType.Variant, SubTag = "uccor", Added = new DateOnly(2008, 10, 14), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Unified Cornish orthography of Revived Cornish"], Comments = [], Prefix = [@"kw"], }, new() { - Type = RecordType.Variant, + Type = Rfc5646Record.RecordType.Variant, SubTag = "ucrcor", Added = new DateOnly(2008, 10, 14), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Unified Cornish Revised orthography of Revived Cornish"], Comments = [], Prefix = [@"kw"], }, new() { - Type = RecordType.Variant, + Type = Rfc5646Record.RecordType.Variant, SubTag = "ulster", Added = new DateOnly(2010, 4, 10), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Ulster dialect of Scots"], Comments = [], Prefix = [@"sco"], }, new() { - Type = RecordType.Variant, + Type = Rfc5646Record.RecordType.Variant, SubTag = "unifon", Added = new DateOnly(2013, 10, 2), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Unifon phonetic alphabet"], Comments = [], Prefix = [@"en", @"hup", @"kyh", @"tol", @"yur"], }, new() { - Type = RecordType.Variant, + Type = Rfc5646Record.RecordType.Variant, SubTag = "vaidika", Added = new DateOnly(2010, 7, 28), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, Deprecated = new DateOnly(2024, 6, 8), + PreferredValue = null, + Tag = null, Description = [@"Vedic Sanskrit"], Comments = [ @@ -84460,9 +138057,15 @@ public static Rfc5646Data Create() => }, new() { - Type = RecordType.Variant, + Type = Rfc5646Record.RecordType.Variant, SubTag = "valbadia", Added = new DateOnly(2024, 3, 4), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Val Badia standard of Ladin"], Comments = [ @@ -84472,9 +138075,15 @@ public static Rfc5646Data Create() => }, new() { - Type = RecordType.Variant, + Type = Rfc5646Record.RecordType.Variant, SubTag = "valencia", Added = new DateOnly(2007, 3, 6), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Valencian"], Comments = [ @@ -84484,9 +138093,15 @@ public static Rfc5646Data Create() => }, new() { - Type = RecordType.Variant, + Type = Rfc5646Record.RecordType.Variant, SubTag = "vallader", Added = new DateOnly(2010, 6, 29), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Vallader idiom of Romansh"], Comments = [ @@ -84496,9 +138111,15 @@ public static Rfc5646Data Create() => }, new() { - Type = RecordType.Variant, + Type = Rfc5646Record.RecordType.Variant, SubTag = "vecdruka", Added = new DateOnly(2020, 9, 26), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Latvian orthography used before 1920s (""vecā druka"")"], Comments = [ @@ -84508,36 +138129,60 @@ public static Rfc5646Data Create() => }, new() { - Type = RecordType.Variant, + Type = Rfc5646Record.RecordType.Variant, SubTag = "viennese", Added = new DateOnly(2025, 6, 22), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"The Viennese dialect of German"], Comments = [], Prefix = [@"de"], }, new() { - Type = RecordType.Variant, + Type = Rfc5646Record.RecordType.Variant, SubTag = "vivaraup", Added = new DateOnly(2018, 4, 22), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Vivaro-Alpine"], Comments = [@"Occitan variant spoken in northeastern Occitania"], Prefix = [@"oc"], }, new() { - Type = RecordType.Variant, + Type = Rfc5646Record.RecordType.Variant, SubTag = "wadegile", Added = new DateOnly(2008, 10, 3), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [@"Wade-Giles romanization"], Comments = [], Prefix = [@"zh-Latn"], }, new() { - Type = RecordType.Variant, + Type = Rfc5646Record.RecordType.Variant, SubTag = "xsistemo", Added = new DateOnly(2017, 3, 14), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, + Tag = null, Description = [ @"Standard X-system orthographic fallback for spelling Esperanto", @@ -84547,8 +138192,12 @@ public static Rfc5646Data Create() => }, new() { - Type = RecordType.Grandfathered, + Type = Rfc5646Record.RecordType.Grandfathered, + SubTag = null, Added = new DateOnly(2001, 11, 11), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, Deprecated = new DateOnly(2003, 9, 2), PreferredValue = "jbo", Tag = "art-lojban", @@ -84558,9 +138207,14 @@ public static Rfc5646Data Create() => }, new() { - Type = RecordType.Grandfathered, + Type = Rfc5646Record.RecordType.Grandfathered, + SubTag = null, Added = new DateOnly(2001, 5, 25), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, Deprecated = new DateOnly(2015, 3, 29), + PreferredValue = null, Tag = "cel-gaulish", Description = [@"Gaulish"], Comments = [@"see xcg, xga, xtg"], @@ -84568,8 +138222,12 @@ public static Rfc5646Data Create() => }, new() { - Type = RecordType.Grandfathered, + Type = Rfc5646Record.RecordType.Grandfathered, + SubTag = null, Added = new DateOnly(2003, 7, 9), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, Deprecated = new DateOnly(2015, 4, 17), PreferredValue = "en-GB-oxendict", Tag = "en-GB-oed", @@ -84579,8 +138237,12 @@ public static Rfc5646Data Create() => }, new() { - Type = RecordType.Grandfathered, + Type = Rfc5646Record.RecordType.Grandfathered, + SubTag = null, Added = new DateOnly(1999, 5, 25), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, Deprecated = new DateOnly(2009, 7, 29), PreferredValue = "ami", Tag = "i-ami", @@ -84590,8 +138252,12 @@ public static Rfc5646Data Create() => }, new() { - Type = RecordType.Grandfathered, + Type = Rfc5646Record.RecordType.Grandfathered, + SubTag = null, Added = new DateOnly(1999, 5, 25), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, Deprecated = new DateOnly(2009, 7, 29), PreferredValue = "bnn", Tag = "i-bnn", @@ -84601,8 +138267,14 @@ public static Rfc5646Data Create() => }, new() { - Type = RecordType.Grandfathered, + Type = Rfc5646Record.RecordType.Grandfathered, + SubTag = null, Added = new DateOnly(1998, 3, 10), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, Tag = "i-default", Description = [@"Default Language"], Comments = [], @@ -84610,9 +138282,14 @@ public static Rfc5646Data Create() => }, new() { - Type = RecordType.Grandfathered, + Type = Rfc5646Record.RecordType.Grandfathered, + SubTag = null, Added = new DateOnly(2002, 7, 3), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, Deprecated = new DateOnly(2015, 3, 29), + PreferredValue = null, Tag = "i-enochian", Description = [@"Enochian"], Comments = [], @@ -84620,8 +138297,12 @@ public static Rfc5646Data Create() => }, new() { - Type = RecordType.Grandfathered, + Type = Rfc5646Record.RecordType.Grandfathered, + SubTag = null, Added = new DateOnly(1999, 1, 31), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, Deprecated = new DateOnly(2000, 1, 10), PreferredValue = "hak", Tag = "i-hak", @@ -84631,8 +138312,12 @@ public static Rfc5646Data Create() => }, new() { - Type = RecordType.Grandfathered, + Type = Rfc5646Record.RecordType.Grandfathered, + SubTag = null, Added = new DateOnly(1999, 5, 26), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, Deprecated = new DateOnly(2004, 2, 24), PreferredValue = "tlh", Tag = "i-klingon", @@ -84642,8 +138327,12 @@ public static Rfc5646Data Create() => }, new() { - Type = RecordType.Grandfathered, + Type = Rfc5646Record.RecordType.Grandfathered, + SubTag = null, Added = new DateOnly(1997, 9, 19), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, Deprecated = new DateOnly(1998, 9, 9), PreferredValue = "lb", Tag = "i-lux", @@ -84653,8 +138342,14 @@ public static Rfc5646Data Create() => }, new() { - Type = RecordType.Grandfathered, + Type = Rfc5646Record.RecordType.Grandfathered, + SubTag = null, Added = new DateOnly(1997, 9, 19), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, Tag = "i-mingo", Description = [@"Mingo"], Comments = [], @@ -84662,8 +138357,12 @@ public static Rfc5646Data Create() => }, new() { - Type = RecordType.Grandfathered, + Type = Rfc5646Record.RecordType.Grandfathered, + SubTag = null, Added = new DateOnly(1997, 9, 19), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, Deprecated = new DateOnly(2000, 2, 18), PreferredValue = "nv", Tag = "i-navajo", @@ -84673,8 +138372,12 @@ public static Rfc5646Data Create() => }, new() { - Type = RecordType.Grandfathered, + Type = Rfc5646Record.RecordType.Grandfathered, + SubTag = null, Added = new DateOnly(1999, 5, 25), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, Deprecated = new DateOnly(2009, 7, 29), PreferredValue = "pwn", Tag = "i-pwn", @@ -84684,8 +138387,12 @@ public static Rfc5646Data Create() => }, new() { - Type = RecordType.Grandfathered, + Type = Rfc5646Record.RecordType.Grandfathered, + SubTag = null, Added = new DateOnly(1999, 5, 25), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, Deprecated = new DateOnly(2009, 7, 29), PreferredValue = "tao", Tag = "i-tao", @@ -84695,8 +138402,12 @@ public static Rfc5646Data Create() => }, new() { - Type = RecordType.Grandfathered, + Type = Rfc5646Record.RecordType.Grandfathered, + SubTag = null, Added = new DateOnly(1999, 5, 25), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, Deprecated = new DateOnly(2009, 7, 29), PreferredValue = "tay", Tag = "i-tay", @@ -84706,8 +138417,12 @@ public static Rfc5646Data Create() => }, new() { - Type = RecordType.Grandfathered, + Type = Rfc5646Record.RecordType.Grandfathered, + SubTag = null, Added = new DateOnly(1999, 5, 25), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, Deprecated = new DateOnly(2009, 7, 29), PreferredValue = "tsu", Tag = "i-tsu", @@ -84717,8 +138432,12 @@ public static Rfc5646Data Create() => }, new() { - Type = RecordType.Grandfathered, + Type = Rfc5646Record.RecordType.Grandfathered, + SubTag = null, Added = new DateOnly(1995, 8, 23), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, Deprecated = new DateOnly(2000, 2, 18), PreferredValue = "nb", Tag = "no-bok", @@ -84728,8 +138447,12 @@ public static Rfc5646Data Create() => }, new() { - Type = RecordType.Grandfathered, + Type = Rfc5646Record.RecordType.Grandfathered, + SubTag = null, Added = new DateOnly(1995, 8, 23), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, Deprecated = new DateOnly(2000, 2, 18), PreferredValue = "nn", Tag = "no-nyn", @@ -84739,8 +138462,12 @@ public static Rfc5646Data Create() => }, new() { - Type = RecordType.Grandfathered, + Type = Rfc5646Record.RecordType.Grandfathered, + SubTag = null, Added = new DateOnly(2001, 11, 11), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, Deprecated = new DateOnly(2009, 7, 29), PreferredValue = "sfb", Tag = "sgn-BE-FR", @@ -84750,8 +138477,12 @@ public static Rfc5646Data Create() => }, new() { - Type = RecordType.Grandfathered, + Type = Rfc5646Record.RecordType.Grandfathered, + SubTag = null, Added = new DateOnly(2001, 11, 11), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, Deprecated = new DateOnly(2009, 7, 29), PreferredValue = "vgt", Tag = "sgn-BE-NL", @@ -84761,8 +138492,12 @@ public static Rfc5646Data Create() => }, new() { - Type = RecordType.Grandfathered, + Type = Rfc5646Record.RecordType.Grandfathered, + SubTag = null, Added = new DateOnly(2001, 11, 11), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, Deprecated = new DateOnly(2009, 7, 29), PreferredValue = "sgg", Tag = "sgn-CH-DE", @@ -84772,8 +138507,12 @@ public static Rfc5646Data Create() => }, new() { - Type = RecordType.Grandfathered, + Type = Rfc5646Record.RecordType.Grandfathered, + SubTag = null, Added = new DateOnly(1999, 12, 18), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, Deprecated = new DateOnly(2005, 7, 15), PreferredValue = "cmn", Tag = "zh-guoyu", @@ -84783,8 +138522,12 @@ public static Rfc5646Data Create() => }, new() { - Type = RecordType.Grandfathered, + Type = Rfc5646Record.RecordType.Grandfathered, + SubTag = null, Added = new DateOnly(1999, 12, 18), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, Deprecated = new DateOnly(2009, 7, 29), PreferredValue = "hak", Tag = "zh-hakka", @@ -84794,9 +138537,14 @@ public static Rfc5646Data Create() => }, new() { - Type = RecordType.Grandfathered, + Type = Rfc5646Record.RecordType.Grandfathered, + SubTag = null, Added = new DateOnly(1999, 12, 18), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, Deprecated = new DateOnly(2009, 7, 29), + PreferredValue = null, Tag = "zh-min", Description = [@"Min, Fuzhou, Hokkien, Amoy, or Taiwanese"], Comments = [@"see cdo, cpx, czo, mnp, nan"], @@ -84804,8 +138552,12 @@ public static Rfc5646Data Create() => }, new() { - Type = RecordType.Grandfathered, + Type = Rfc5646Record.RecordType.Grandfathered, + SubTag = null, Added = new DateOnly(2001, 3, 26), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, Deprecated = new DateOnly(2009, 7, 29), PreferredValue = "nan", Tag = "zh-min-nan", @@ -84818,8 +138570,12 @@ public static Rfc5646Data Create() => }, new() { - Type = RecordType.Grandfathered, + Type = Rfc5646Record.RecordType.Grandfathered, + SubTag = null, Added = new DateOnly(1999, 12, 18), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, Deprecated = new DateOnly(2009, 7, 29), PreferredValue = "hsn", Tag = "zh-xiang", @@ -84829,8 +138585,14 @@ public static Rfc5646Data Create() => }, new() { - Type = RecordType.Redundant, + Type = Rfc5646Record.RecordType.Redundant, + SubTag = null, Added = new DateOnly(2003, 5, 30), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, Tag = "az-Arab", Description = [@"Azerbaijani in Arabic script"], Comments = [], @@ -84838,8 +138600,14 @@ public static Rfc5646Data Create() => }, new() { - Type = RecordType.Redundant, + Type = Rfc5646Record.RecordType.Redundant, + SubTag = null, Added = new DateOnly(2003, 5, 30), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, Tag = "az-Cyrl", Description = [@"Azerbaijani in Cyrillic script"], Comments = [], @@ -84847,8 +138615,14 @@ public static Rfc5646Data Create() => }, new() { - Type = RecordType.Redundant, + Type = Rfc5646Record.RecordType.Redundant, + SubTag = null, Added = new DateOnly(2003, 5, 30), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, Tag = "az-Latn", Description = [@"Azerbaijani in Latin script"], Comments = [], @@ -84856,8 +138630,14 @@ public static Rfc5646Data Create() => }, new() { - Type = RecordType.Redundant, + Type = Rfc5646Record.RecordType.Redundant, + SubTag = null, Added = new DateOnly(2005, 1, 6), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, Tag = "be-Latn", Description = [@"Belarusian in Latin script"], Comments = [], @@ -84865,8 +138645,14 @@ public static Rfc5646Data Create() => }, new() { - Type = RecordType.Redundant, + Type = Rfc5646Record.RecordType.Redundant, + SubTag = null, Added = new DateOnly(2005, 2, 17), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, Tag = "bs-Cyrl", Description = [@"Bosnian in Cyrillic script"], Comments = [], @@ -84874,8 +138660,14 @@ public static Rfc5646Data Create() => }, new() { - Type = RecordType.Redundant, + Type = Rfc5646Record.RecordType.Redundant, + SubTag = null, Added = new DateOnly(2005, 2, 17), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, Tag = "bs-Latn", Description = [@"Bosnian in Latin script"], Comments = [], @@ -84883,8 +138675,14 @@ public static Rfc5646Data Create() => }, new() { - Type = RecordType.Redundant, + Type = Rfc5646Record.RecordType.Redundant, + SubTag = null, Added = new DateOnly(2001, 7, 17), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, Tag = "de-1901", Description = [@"German, traditional orthography"], Comments = [], @@ -84892,8 +138690,14 @@ public static Rfc5646Data Create() => }, new() { - Type = RecordType.Redundant, + Type = Rfc5646Record.RecordType.Redundant, + SubTag = null, Added = new DateOnly(2001, 7, 17), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, Tag = "de-1996", Description = [@"German, orthography of 1996"], Comments = [], @@ -84901,8 +138705,14 @@ public static Rfc5646Data Create() => }, new() { - Type = RecordType.Redundant, + Type = Rfc5646Record.RecordType.Redundant, + SubTag = null, Added = new DateOnly(2001, 7, 17), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, Tag = "de-AT-1901", Description = [@"German, Austrian variant, traditional orthography"], Comments = [], @@ -84910,8 +138720,14 @@ public static Rfc5646Data Create() => }, new() { - Type = RecordType.Redundant, + Type = Rfc5646Record.RecordType.Redundant, + SubTag = null, Added = new DateOnly(2001, 7, 17), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, Tag = "de-AT-1996", Description = [@"German, Austrian variant, orthography of 1996"], Comments = [], @@ -84919,8 +138735,14 @@ public static Rfc5646Data Create() => }, new() { - Type = RecordType.Redundant, + Type = Rfc5646Record.RecordType.Redundant, + SubTag = null, Added = new DateOnly(2001, 7, 17), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, Tag = "de-CH-1901", Description = [@"German, Swiss variant, traditional orthography"], Comments = [], @@ -84928,8 +138750,14 @@ public static Rfc5646Data Create() => }, new() { - Type = RecordType.Redundant, + Type = Rfc5646Record.RecordType.Redundant, + SubTag = null, Added = new DateOnly(2001, 7, 17), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, Tag = "de-CH-1996", Description = [@"German, Swiss variant, orthography of 1996"], Comments = [], @@ -84937,8 +138765,14 @@ public static Rfc5646Data Create() => }, new() { - Type = RecordType.Redundant, + Type = Rfc5646Record.RecordType.Redundant, + SubTag = null, Added = new DateOnly(2001, 7, 17), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, Tag = "de-DE-1901", Description = [@"German, German variant, traditional orthography"], Comments = [], @@ -84946,8 +138780,14 @@ public static Rfc5646Data Create() => }, new() { - Type = RecordType.Redundant, + Type = Rfc5646Record.RecordType.Redundant, + SubTag = null, Added = new DateOnly(2001, 7, 17), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, Tag = "de-DE-1996", Description = [@"German, German variant, orthography of 1996"], Comments = [], @@ -84955,8 +138795,14 @@ public static Rfc5646Data Create() => }, new() { - Type = RecordType.Redundant, + Type = Rfc5646Record.RecordType.Redundant, + SubTag = null, Added = new DateOnly(2003, 2, 14), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, Tag = "en-boont", Description = [@"Boontling"], Comments = [], @@ -84964,8 +138810,14 @@ public static Rfc5646Data Create() => }, new() { - Type = RecordType.Redundant, + Type = Rfc5646Record.RecordType.Redundant, + SubTag = null, Added = new DateOnly(2000, 5, 25), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, Tag = "en-scouse", Description = [@"Scouse"], Comments = [], @@ -84973,8 +138825,14 @@ public static Rfc5646Data Create() => }, new() { - Type = RecordType.Redundant, + Type = Rfc5646Record.RecordType.Redundant, + SubTag = null, Added = new DateOnly(2005, 7, 15), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, Tag = "es-419", Description = [@"Latin American Spanish"], Comments = [], @@ -84982,8 +138840,14 @@ public static Rfc5646Data Create() => }, new() { - Type = RecordType.Redundant, + Type = Rfc5646Record.RecordType.Redundant, + SubTag = null, Added = new DateOnly(2005, 2, 17), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, Tag = "iu-Cans", Description = [@"Inuktitut in Canadian Aboriginal Syllabic script"], Comments = [], @@ -84991,8 +138855,14 @@ public static Rfc5646Data Create() => }, new() { - Type = RecordType.Redundant, + Type = Rfc5646Record.RecordType.Redundant, + SubTag = null, Added = new DateOnly(2005, 2, 17), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, Tag = "iu-Latn", Description = [@"Inuktitut in Latin script"], Comments = [], @@ -85000,8 +138870,14 @@ public static Rfc5646Data Create() => }, new() { - Type = RecordType.Redundant, + Type = Rfc5646Record.RecordType.Redundant, + SubTag = null, Added = new DateOnly(2005, 2, 17), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, Tag = "mn-Cyrl", Description = [@"Mongolian in Cyrillic script"], Comments = [], @@ -85009,8 +138885,14 @@ public static Rfc5646Data Create() => }, new() { - Type = RecordType.Redundant, + Type = Rfc5646Record.RecordType.Redundant, + SubTag = null, Added = new DateOnly(2005, 2, 17), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, Tag = "mn-Mong", Description = [@"Mongolian in Mongolian script"], Comments = [], @@ -85018,8 +138900,12 @@ public static Rfc5646Data Create() => }, new() { - Type = RecordType.Redundant, + Type = Rfc5646Record.RecordType.Redundant, + SubTag = null, Added = new DateOnly(2001, 11, 11), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, Deprecated = new DateOnly(2009, 7, 29), PreferredValue = "bzs", Tag = "sgn-BR", @@ -85029,8 +138915,12 @@ public static Rfc5646Data Create() => }, new() { - Type = RecordType.Redundant, + Type = Rfc5646Record.RecordType.Redundant, + SubTag = null, Added = new DateOnly(2001, 11, 11), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, Deprecated = new DateOnly(2009, 7, 29), PreferredValue = "csn", Tag = "sgn-CO", @@ -85040,8 +138930,12 @@ public static Rfc5646Data Create() => }, new() { - Type = RecordType.Redundant, + Type = Rfc5646Record.RecordType.Redundant, + SubTag = null, Added = new DateOnly(2001, 11, 11), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, Deprecated = new DateOnly(2009, 7, 29), PreferredValue = "gsg", Tag = "sgn-DE", @@ -85051,8 +138945,12 @@ public static Rfc5646Data Create() => }, new() { - Type = RecordType.Redundant, + Type = Rfc5646Record.RecordType.Redundant, + SubTag = null, Added = new DateOnly(2001, 11, 11), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, Deprecated = new DateOnly(2009, 7, 29), PreferredValue = "dsl", Tag = "sgn-DK", @@ -85062,8 +138960,12 @@ public static Rfc5646Data Create() => }, new() { - Type = RecordType.Redundant, + Type = Rfc5646Record.RecordType.Redundant, + SubTag = null, Added = new DateOnly(2001, 11, 11), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, Deprecated = new DateOnly(2009, 7, 29), PreferredValue = "ssp", Tag = "sgn-ES", @@ -85073,8 +138975,12 @@ public static Rfc5646Data Create() => }, new() { - Type = RecordType.Redundant, + Type = Rfc5646Record.RecordType.Redundant, + SubTag = null, Added = new DateOnly(2001, 11, 11), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, Deprecated = new DateOnly(2009, 7, 29), PreferredValue = "fsl", Tag = "sgn-FR", @@ -85084,8 +138990,12 @@ public static Rfc5646Data Create() => }, new() { - Type = RecordType.Redundant, + Type = Rfc5646Record.RecordType.Redundant, + SubTag = null, Added = new DateOnly(2001, 3, 2), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, Deprecated = new DateOnly(2009, 7, 29), PreferredValue = "bfi", Tag = "sgn-GB", @@ -85095,8 +139005,12 @@ public static Rfc5646Data Create() => }, new() { - Type = RecordType.Redundant, + Type = Rfc5646Record.RecordType.Redundant, + SubTag = null, Added = new DateOnly(2001, 11, 11), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, Deprecated = new DateOnly(2009, 7, 29), PreferredValue = "gss", Tag = "sgn-GR", @@ -85106,8 +139020,12 @@ public static Rfc5646Data Create() => }, new() { - Type = RecordType.Redundant, + Type = Rfc5646Record.RecordType.Redundant, + SubTag = null, Added = new DateOnly(2001, 3, 2), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, Deprecated = new DateOnly(2009, 7, 29), PreferredValue = "isg", Tag = "sgn-IE", @@ -85117,8 +139035,12 @@ public static Rfc5646Data Create() => }, new() { - Type = RecordType.Redundant, + Type = Rfc5646Record.RecordType.Redundant, + SubTag = null, Added = new DateOnly(2001, 11, 11), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, Deprecated = new DateOnly(2009, 7, 29), PreferredValue = "ise", Tag = "sgn-IT", @@ -85128,8 +139050,12 @@ public static Rfc5646Data Create() => }, new() { - Type = RecordType.Redundant, + Type = Rfc5646Record.RecordType.Redundant, + SubTag = null, Added = new DateOnly(2001, 11, 11), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, Deprecated = new DateOnly(2009, 7, 29), PreferredValue = "jsl", Tag = "sgn-JP", @@ -85139,8 +139065,12 @@ public static Rfc5646Data Create() => }, new() { - Type = RecordType.Redundant, + Type = Rfc5646Record.RecordType.Redundant, + SubTag = null, Added = new DateOnly(2001, 11, 11), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, Deprecated = new DateOnly(2009, 7, 29), PreferredValue = "mfs", Tag = "sgn-MX", @@ -85150,8 +139080,12 @@ public static Rfc5646Data Create() => }, new() { - Type = RecordType.Redundant, + Type = Rfc5646Record.RecordType.Redundant, + SubTag = null, Added = new DateOnly(2001, 3, 2), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, Deprecated = new DateOnly(2009, 7, 29), PreferredValue = "ncs", Tag = "sgn-NI", @@ -85161,8 +139095,12 @@ public static Rfc5646Data Create() => }, new() { - Type = RecordType.Redundant, + Type = Rfc5646Record.RecordType.Redundant, + SubTag = null, Added = new DateOnly(2001, 11, 11), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, Deprecated = new DateOnly(2009, 7, 29), PreferredValue = "dse", Tag = "sgn-NL", @@ -85172,8 +139110,12 @@ public static Rfc5646Data Create() => }, new() { - Type = RecordType.Redundant, + Type = Rfc5646Record.RecordType.Redundant, + SubTag = null, Added = new DateOnly(2001, 11, 11), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, Deprecated = new DateOnly(2009, 7, 29), PreferredValue = "nsl", Tag = "sgn-NO", @@ -85183,8 +139125,12 @@ public static Rfc5646Data Create() => }, new() { - Type = RecordType.Redundant, + Type = Rfc5646Record.RecordType.Redundant, + SubTag = null, Added = new DateOnly(2001, 11, 11), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, Deprecated = new DateOnly(2009, 7, 29), PreferredValue = "psr", Tag = "sgn-PT", @@ -85194,8 +139140,12 @@ public static Rfc5646Data Create() => }, new() { - Type = RecordType.Redundant, + Type = Rfc5646Record.RecordType.Redundant, + SubTag = null, Added = new DateOnly(2001, 11, 11), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, Deprecated = new DateOnly(2009, 7, 29), PreferredValue = "swl", Tag = "sgn-SE", @@ -85205,8 +139155,12 @@ public static Rfc5646Data Create() => }, new() { - Type = RecordType.Redundant, + Type = Rfc5646Record.RecordType.Redundant, + SubTag = null, Added = new DateOnly(2001, 3, 2), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, Deprecated = new DateOnly(2009, 7, 29), PreferredValue = "ase", Tag = "sgn-US", @@ -85216,8 +139170,12 @@ public static Rfc5646Data Create() => }, new() { - Type = RecordType.Redundant, + Type = Rfc5646Record.RecordType.Redundant, + SubTag = null, Added = new DateOnly(2001, 11, 11), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, Deprecated = new DateOnly(2009, 7, 29), PreferredValue = "sfs", Tag = "sgn-ZA", @@ -85227,8 +139185,14 @@ public static Rfc5646Data Create() => }, new() { - Type = RecordType.Redundant, + Type = Rfc5646Record.RecordType.Redundant, + SubTag = null, Added = new DateOnly(2004, 6, 1), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, Tag = "sl-nedis", Description = [@"Natisone dialect, Nadiza dialect"], Comments = [], @@ -85236,8 +139200,14 @@ public static Rfc5646Data Create() => }, new() { - Type = RecordType.Redundant, + Type = Rfc5646Record.RecordType.Redundant, + SubTag = null, Added = new DateOnly(2003, 10, 9), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, Tag = "sl-rozaj", Description = [@"Resian, Resianic, Rezijan"], Comments = [], @@ -85245,8 +139215,14 @@ public static Rfc5646Data Create() => }, new() { - Type = RecordType.Redundant, + Type = Rfc5646Record.RecordType.Redundant, + SubTag = null, Added = new DateOnly(2003, 5, 30), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, Tag = "sr-Cyrl", Description = [@"Serbian in Cyrillic script"], Comments = [], @@ -85254,8 +139230,14 @@ public static Rfc5646Data Create() => }, new() { - Type = RecordType.Redundant, + Type = Rfc5646Record.RecordType.Redundant, + SubTag = null, Added = new DateOnly(2003, 5, 30), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, Tag = "sr-Latn", Description = [@"Serbian in Latin script"], Comments = [], @@ -85263,8 +139245,14 @@ public static Rfc5646Data Create() => }, new() { - Type = RecordType.Redundant, + Type = Rfc5646Record.RecordType.Redundant, + SubTag = null, Added = new DateOnly(2005, 2, 17), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, Tag = "tg-Arab", Description = [@"Tajik in Arabic script"], Comments = [], @@ -85272,8 +139260,14 @@ public static Rfc5646Data Create() => }, new() { - Type = RecordType.Redundant, + Type = Rfc5646Record.RecordType.Redundant, + SubTag = null, Added = new DateOnly(2005, 2, 17), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, Tag = "tg-Cyrl", Description = [@"Tajik in Cyrillic script"], Comments = [], @@ -85281,8 +139275,14 @@ public static Rfc5646Data Create() => }, new() { - Type = RecordType.Redundant, + Type = Rfc5646Record.RecordType.Redundant, + SubTag = null, Added = new DateOnly(2003, 5, 30), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, Tag = "uz-Cyrl", Description = [@"Uzbek in Cyrillic script"], Comments = [], @@ -85290,8 +139290,14 @@ public static Rfc5646Data Create() => }, new() { - Type = RecordType.Redundant, + Type = Rfc5646Record.RecordType.Redundant, + SubTag = null, Added = new DateOnly(2003, 5, 30), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, Tag = "uz-Latn", Description = [@"Uzbek in Latin script"], Comments = [], @@ -85299,8 +139305,14 @@ public static Rfc5646Data Create() => }, new() { - Type = RecordType.Redundant, + Type = Rfc5646Record.RecordType.Redundant, + SubTag = null, Added = new DateOnly(2003, 1, 7), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, Tag = "yi-Latn", Description = [@"Yiddish, in Latin script"], Comments = [], @@ -85308,8 +139320,12 @@ public static Rfc5646Data Create() => }, new() { - Type = RecordType.Redundant, + Type = Rfc5646Record.RecordType.Redundant, + SubTag = null, Added = new DateOnly(2005, 7, 15), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, Deprecated = new DateOnly(2009, 7, 29), PreferredValue = "cmn", Tag = "zh-cmn", @@ -85319,8 +139335,12 @@ public static Rfc5646Data Create() => }, new() { - Type = RecordType.Redundant, + Type = Rfc5646Record.RecordType.Redundant, + SubTag = null, Added = new DateOnly(2005, 7, 15), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, Deprecated = new DateOnly(2009, 7, 29), PreferredValue = "cmn-Hans", Tag = "zh-cmn-Hans", @@ -85330,8 +139350,12 @@ public static Rfc5646Data Create() => }, new() { - Type = RecordType.Redundant, + Type = Rfc5646Record.RecordType.Redundant, + SubTag = null, Added = new DateOnly(2005, 7, 15), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, Deprecated = new DateOnly(2009, 7, 29), PreferredValue = "cmn-Hant", Tag = "zh-cmn-Hant", @@ -85341,8 +139365,12 @@ public static Rfc5646Data Create() => }, new() { - Type = RecordType.Redundant, + Type = Rfc5646Record.RecordType.Redundant, + SubTag = null, Added = new DateOnly(1999, 12, 18), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, Deprecated = new DateOnly(2009, 7, 29), PreferredValue = "gan", Tag = "zh-gan", @@ -85352,8 +139380,14 @@ public static Rfc5646Data Create() => }, new() { - Type = RecordType.Redundant, + Type = Rfc5646Record.RecordType.Redundant, + SubTag = null, Added = new DateOnly(2003, 5, 30), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, Tag = "zh-Hans", Description = [@"simplified Chinese"], Comments = [], @@ -85361,8 +139395,14 @@ public static Rfc5646Data Create() => }, new() { - Type = RecordType.Redundant, + Type = Rfc5646Record.RecordType.Redundant, + SubTag = null, Added = new DateOnly(2005, 4, 13), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, Tag = "zh-Hans-CN", Description = [@"PRC Mainland Chinese in simplified script"], Comments = [], @@ -85370,8 +139410,14 @@ public static Rfc5646Data Create() => }, new() { - Type = RecordType.Redundant, + Type = Rfc5646Record.RecordType.Redundant, + SubTag = null, Added = new DateOnly(2005, 4, 11), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, Tag = "zh-Hans-HK", Description = [@"Hong Kong Chinese in simplified script"], Comments = [], @@ -85379,8 +139425,14 @@ public static Rfc5646Data Create() => }, new() { - Type = RecordType.Redundant, + Type = Rfc5646Record.RecordType.Redundant, + SubTag = null, Added = new DateOnly(2005, 4, 11), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, Tag = "zh-Hans-MO", Description = [@"Macao Chinese in simplified script"], Comments = [], @@ -85388,8 +139440,14 @@ public static Rfc5646Data Create() => }, new() { - Type = RecordType.Redundant, + Type = Rfc5646Record.RecordType.Redundant, + SubTag = null, Added = new DateOnly(2005, 4, 11), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, Tag = "zh-Hans-SG", Description = [@"Singapore Chinese in simplified script"], Comments = [], @@ -85397,8 +139455,14 @@ public static Rfc5646Data Create() => }, new() { - Type = RecordType.Redundant, + Type = Rfc5646Record.RecordType.Redundant, + SubTag = null, Added = new DateOnly(2005, 4, 11), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, Tag = "zh-Hans-TW", Description = [@"Taiwan Chinese in simplified script"], Comments = [], @@ -85406,8 +139470,14 @@ public static Rfc5646Data Create() => }, new() { - Type = RecordType.Redundant, + Type = Rfc5646Record.RecordType.Redundant, + SubTag = null, Added = new DateOnly(2003, 5, 30), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, Tag = "zh-Hant", Description = [@"traditional Chinese"], Comments = [], @@ -85415,8 +139485,14 @@ public static Rfc5646Data Create() => }, new() { - Type = RecordType.Redundant, + Type = Rfc5646Record.RecordType.Redundant, + SubTag = null, Added = new DateOnly(2005, 4, 13), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, Tag = "zh-Hant-CN", Description = [@"PRC Mainland Chinese in traditional script"], Comments = [], @@ -85424,8 +139500,14 @@ public static Rfc5646Data Create() => }, new() { - Type = RecordType.Redundant, + Type = Rfc5646Record.RecordType.Redundant, + SubTag = null, Added = new DateOnly(2005, 4, 11), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, Tag = "zh-Hant-HK", Description = [@"Hong Kong Chinese in traditional script"], Comments = [], @@ -85433,8 +139515,14 @@ public static Rfc5646Data Create() => }, new() { - Type = RecordType.Redundant, + Type = Rfc5646Record.RecordType.Redundant, + SubTag = null, Added = new DateOnly(2005, 4, 11), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, Tag = "zh-Hant-MO", Description = [@"Macao Chinese in traditional script"], Comments = [], @@ -85442,8 +139530,14 @@ public static Rfc5646Data Create() => }, new() { - Type = RecordType.Redundant, + Type = Rfc5646Record.RecordType.Redundant, + SubTag = null, Added = new DateOnly(2005, 4, 11), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, Tag = "zh-Hant-SG", Description = [@"Singapore Chinese in traditional script"], Comments = [], @@ -85451,8 +139545,14 @@ public static Rfc5646Data Create() => }, new() { - Type = RecordType.Redundant, + Type = Rfc5646Record.RecordType.Redundant, + SubTag = null, Added = new DateOnly(2005, 4, 11), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, + Deprecated = null, + PreferredValue = null, Tag = "zh-Hant-TW", Description = [@"Taiwan Chinese in traditional script"], Comments = [], @@ -85460,8 +139560,12 @@ public static Rfc5646Data Create() => }, new() { - Type = RecordType.Redundant, + Type = Rfc5646Record.RecordType.Redundant, + SubTag = null, Added = new DateOnly(1999, 12, 18), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, Deprecated = new DateOnly(2009, 7, 29), PreferredValue = "wuu", Tag = "zh-wuu", @@ -85471,8 +139575,12 @@ public static Rfc5646Data Create() => }, new() { - Type = RecordType.Redundant, + Type = Rfc5646Record.RecordType.Redundant, + SubTag = null, Added = new DateOnly(1999, 12, 18), + SuppressScript = null, + Scope = Rfc5646Record.RecordScope.None, + MacroLanguage = null, Deprecated = new DateOnly(2009, 7, 29), PreferredValue = "yue", Tag = "zh-yue", diff --git a/LanguageTagsCreate/LanguageTagsCreate.csproj b/LanguageTagsCreate/LanguageTagsCreate.csproj index 48beb8e..5bc4a59 100644 --- a/LanguageTagsCreate/LanguageTagsCreate.csproj +++ b/LanguageTagsCreate/LanguageTagsCreate.csproj @@ -1,23 +1,27 @@  + latest-all LanguageTagsCreate 1.0.0.0 Pieter Viljoen Pieter Viljoen + true Pieter Viljoen LanguageTags create utility true 1.0.0.0 true en + enable Exe ptr727.LanguageTags.Create MIT https://github.com/ptr727/LanguageTags + true true ptr727.LanguageTags.Create snupkg - net9.0 + net10.0 1.0.0.0 diff --git a/LanguageTagsCreate/Program.cs b/LanguageTagsCreate/Program.cs index 7efdff4..ee89824 100644 --- a/LanguageTagsCreate/Program.cs +++ b/LanguageTagsCreate/Program.cs @@ -10,19 +10,25 @@ namespace ptr727.LanguageTags.Create; -public static class Program +internal static class Program { private const string LanguageDataDirectory = "LanguageData"; private const string LanguageTagsDirectory = "LanguageTags"; - private static HttpClient s_httpClient; + private static HttpClient? s_httpClient; private static async Task DownloadFileAsync(Uri uri, string fileName) { Log.Information("Downloading \"{Uri}\" to \"{FileName}\" ...", uri.ToString(), fileName); - await using Stream httpStream = await GetHttpClient().GetStreamAsync(uri); - await using FileStream fileStream = File.Create(fileName); - await httpStream.CopyToAsync(fileStream); + Stream httpStream = await GetHttpClient().GetStreamAsync(uri).ConfigureAwait(false); + await using (httpStream.ConfigureAwait(false)) + { + FileStream fileStream = File.Create(fileName); + await using (fileStream.ConfigureAwait(false)) + { + await httpStream.CopyToAsync(fileStream).ConfigureAwait(false); + } + } } private static HttpClient GetHttpClient() @@ -34,14 +40,14 @@ private static HttpClient GetHttpClient() s_httpClient = new() { Timeout = TimeSpan.FromSeconds(120) }; s_httpClient.DefaultRequestHeaders.UserAgent.Add( new ProductInfoHeaderValue( - Assembly.GetExecutingAssembly().GetName().Name, - Assembly.GetExecutingAssembly().GetName().Version.ToString() + Assembly.GetExecutingAssembly().GetName().Name!, + Assembly.GetExecutingAssembly().GetName().Version?.ToString() ) ); return s_httpClient; } - public static async Task Main(string[] args) + internal static async Task Main(string[] args) { Log.Logger = new LoggerConfiguration() .WriteTo.Console( @@ -63,9 +69,7 @@ public static async Task Main(string[] args) } else { - Assembly entryAssembly = Assembly.GetEntryAssembly(); - string assemblyDirectory = Path.GetDirectoryName(entryAssembly.Location); - rootDirectory = Path.GetFullPath(assemblyDirectory); + rootDirectory = Path.GetFullPath(AppContext.BaseDirectory); } // Code directory @@ -90,19 +94,22 @@ public static async Task Main(string[] args) Log.Information("Downloading all language tag data files ..."); Log.Information("Downloading ISO 639-2 data ..."); await DownloadFileAsync( - new Uri(Iso6392Data.DataUri), - Path.Combine(dataDirectory, Iso6392Data.DataFileName) - ); + new Uri(Iso6392Data.DataUri), + Path.Combine(dataDirectory, Iso6392Data.DataFileName) + ) + .ConfigureAwait(false); Log.Information("Downloading ISO 639-3 data ..."); await DownloadFileAsync( - new Uri(Iso6393Data.DataUri), - Path.Combine(dataDirectory, Iso6393Data.DataFileName) - ); + new Uri(Iso6393Data.DataUri), + Path.Combine(dataDirectory, Iso6393Data.DataFileName) + ) + .ConfigureAwait(false); Log.Information("Downloading RFC 5646 data ..."); await DownloadFileAsync( - new Uri(Rfc5646Data.DataUri), - Path.Combine(dataDirectory, Rfc5646Data.DataFileName) - ); + new Uri(Rfc5646Data.DataUri), + Path.Combine(dataDirectory, Rfc5646Data.DataFileName) + ) + .ConfigureAwait(false); Log.Information("Language tag data files downloaded successfully."); // Convert data files to JSON diff --git a/LanguageTagsCreate/Properties/launchSettings.json b/LanguageTagsCreate/Properties/launchSettings.json new file mode 100644 index 0000000..d22c5bd --- /dev/null +++ b/LanguageTagsCreate/Properties/launchSettings.json @@ -0,0 +1,8 @@ +{ + "profiles": { + "LanguageTagsCreate": { + "commandName": "Project", + "commandLineArgs": "$(SolutionDir)" + } + } +} \ No newline at end of file diff --git a/LanguageTagsTests/Fixture.cs b/LanguageTagsTests/Fixture.cs index 7a92f89..621b51b 100644 --- a/LanguageTagsTests/Fixture.cs +++ b/LanguageTagsTests/Fixture.cs @@ -3,16 +3,12 @@ namespace ptr727.LanguageTags.Tests; -public class Fixture : IDisposable +internal static class Fixture // : IDisposable { - public void Dispose() => GC.SuppressFinalize(this); + // public void Dispose() => GC.SuppressFinalize(this); - public static string GetDataFilePath(string fileName) - { - string assemblyDirectory = Path.GetDirectoryName(typeof(Fixture).Assembly.Location); - string dataDirectory = Path.GetFullPath( - Path.Combine(assemblyDirectory, "../../../../LanguageData") + public static string GetDataFilePath(string fileName) => + Path.GetFullPath( + Path.Combine(AppContext.BaseDirectory, "../../../../LanguageData", fileName) ); - return Path.GetFullPath(Path.Combine(dataDirectory, fileName)); - } } diff --git a/LanguageTagsTests/Iso6392Tests.cs b/LanguageTagsTests/Iso6392Tests.cs index c6eca6e..209d069 100644 --- a/LanguageTagsTests/Iso6392Tests.cs +++ b/LanguageTagsTests/Iso6392Tests.cs @@ -3,10 +3,8 @@ namespace ptr727.LanguageTags.Tests; -public class Iso6392Tests(Fixture fixture) : IClassFixture +public sealed class Iso6392Tests { - private readonly Fixture _fixture = fixture; - [Fact] public void Create() { @@ -28,7 +26,7 @@ public void LoadData() [Fact] public void LoadJson() { - Iso6392Data iso6392 = Iso6392Data.LoadJson( + Iso6392Data? iso6392 = Iso6392Data.LoadJson( Fixture.GetDataFilePath(Iso6392Data.DataFileName + ".json") ); _ = iso6392.Should().NotBeNull(); @@ -53,7 +51,7 @@ public void Find_Pass(string input, bool description, string output) _ = iso6392.RecordList.Length.Should().BeGreaterThan(0); // Find matching language - Iso6392Data.Record record = iso6392.Find(input, description); + Iso6392Record? record = iso6392.Find(input, description); _ = record.Should().NotBeNull(); _ = record.RefName.Should().BeEquivalentTo(output); } @@ -69,7 +67,7 @@ public void Find_Fail(string input) _ = iso6392.RecordList.Length.Should().BeGreaterThan(0); // Fail to find matching language - Iso6392Data.Record record = iso6392.Find(input, false); + Iso6392Record? record = iso6392.Find(input, false); _ = record.Should().BeNull(); } } diff --git a/LanguageTagsTests/Iso6393Tests.cs b/LanguageTagsTests/Iso6393Tests.cs index a8d270b..774db8f 100644 --- a/LanguageTagsTests/Iso6393Tests.cs +++ b/LanguageTagsTests/Iso6393Tests.cs @@ -3,10 +3,8 @@ namespace ptr727.LanguageTags.Tests; -public class Iso6393Tests(Fixture fixture) : IClassFixture +public sealed class Iso6393Tests { - private readonly Fixture _fixture = fixture; - [Fact] public void Create() { @@ -28,7 +26,7 @@ public void LoadData() [Fact] public void LoadJson() { - Iso6393Data iso6393 = Iso6393Data.LoadJson( + Iso6393Data? iso6393 = Iso6393Data.LoadJson( Fixture.GetDataFilePath(Iso6393Data.DataFileName + ".json") ); _ = iso6393.Should().NotBeNull(); @@ -53,7 +51,7 @@ public void Find_Pass(string input, bool description, string output) _ = iso6393.RecordList.Length.Should().BeGreaterThan(0); // Find matching language - Iso6393Data.Record record = iso6393.Find(input, description); + Iso6393Record? record = iso6393.Find(input, description); _ = record.Should().NotBeNull(); _ = record.RefName.Should().BeEquivalentTo(output); } @@ -69,7 +67,7 @@ public void Find_Fail(string input) _ = iso6393.RecordList.Length.Should().BeGreaterThan(0); // Fail to find matching language - Iso6393Data.Record record = iso6393.Find(input, false); + Iso6393Record? record = iso6393.Find(input, false); _ = record.Should().BeNull(); } } diff --git a/LanguageTagsTests/LanguageLookupTests.cs b/LanguageTagsTests/LanguageLookupTests.cs index 004e570..a6d6379 100644 --- a/LanguageTagsTests/LanguageLookupTests.cs +++ b/LanguageTagsTests/LanguageLookupTests.cs @@ -3,10 +3,8 @@ namespace ptr727.LanguageTags.Tests; -public class LanguageLookupTests(Fixture fixture) : IClassFixture +public sealed class LanguageLookupTests { - private readonly Fixture _fixture = fixture; - [Theory] [InlineData("afr", "af")] [InlineData("ger", "de")] diff --git a/LanguageTagsTests/LanguageTagBuilderTests.cs b/LanguageTagsTests/LanguageTagBuilderTests.cs index 5cb305e..3622740 100644 --- a/LanguageTagsTests/LanguageTagBuilderTests.cs +++ b/LanguageTagsTests/LanguageTagBuilderTests.cs @@ -3,10 +3,8 @@ namespace ptr727.LanguageTags.Tests; -public class LanguageTagBuilderTests(Fixture fixture) : IClassFixture +public sealed class LanguageTagBuilderTests { - private readonly Fixture _fixture = fixture; - [Fact] public void Build_Pass() { @@ -66,7 +64,7 @@ public void Build_Pass() public void Normalize_Pass() { // en-Latn-GB-boont-r-extended-sequence-x-private - LanguageTag languageTag = new LanguageTagBuilder() + LanguageTag? languageTag = new LanguageTagBuilder() .Language("en") .Script("latn") .Region("gb") @@ -74,11 +72,13 @@ public void Normalize_Pass() .ExtensionAdd('r', ["extended", "sequence"]) .PrivateUseAdd("private") .Normalize(); + _ = languageTag.Should().NotBeNull(); _ = languageTag.Validate().Should().BeTrue(); _ = languageTag.ToString().Should().Be("en-GB-boont-r-extended-sequence-x-private"); // sr-Latn languageTag = new LanguageTagBuilder().Language("sr").Script("latn").Normalize(); + _ = languageTag.Should().NotBeNull(); _ = languageTag.Validate().Should().BeTrue(); _ = languageTag.ToString().Should().Be("sr-Latn"); @@ -89,6 +89,7 @@ public void Normalize_Pass() .ExtensionAdd('a', ["bbb", "aaa"]) // Add bbb before aaa to force a sort .PrivateUseAddRange(["ccc", "a"]) // Add ccc before a to force a sort .Normalize(); + _ = languageTag.Should().NotBeNull(); _ = languageTag.Validate().Should().BeTrue(); _ = languageTag.ToString().Should().Be("en-a-aaa-bbb-b-ccc-x-a-ccc"); } diff --git a/LanguageTagsTests/LanguageTagParserTests.cs b/LanguageTagsTests/LanguageTagParserTests.cs index f01fed9..9f989cd 100644 --- a/LanguageTagsTests/LanguageTagParserTests.cs +++ b/LanguageTagsTests/LanguageTagParserTests.cs @@ -3,10 +3,8 @@ namespace ptr727.LanguageTags.Tests; -public class LanguageTagParserTests(Fixture fixture) : IClassFixture +public class LanguageTagParserTests { - private readonly Fixture _fixture = fixture; - [Theory] [InlineData("en-latn-gb-boont-r-extended-sequence-x-private")] [InlineData("en-a-bbb-x-a-ccc")] @@ -17,7 +15,7 @@ public class LanguageTagParserTests(Fixture fixture) : IClassFixture [InlineData("x-a-private")] public void Parse_Pass(string tag) { - LanguageTag languageTag = new LanguageTagParser().Parse(tag); + LanguageTag? languageTag = new LanguageTagParser().Parse(tag); _ = languageTag.Should().NotBeNull(); _ = languageTag.Validate().Should().BeTrue(); _ = languageTag.ToString().Should().Be(tag); @@ -31,7 +29,7 @@ public void Parse_Pass(string tag) [InlineData("zh-min-nan", "nan")] public void Normalize_Grandfathered_Pass(string tag, string parsed) { - LanguageTag languageTag = new LanguageTagParser().Normalize(tag); + LanguageTag? languageTag = new LanguageTagParser().Normalize(tag); _ = languageTag.Should().NotBeNull(); _ = languageTag.Validate().Should().BeTrue(); _ = languageTag.ToString().Should().Be(parsed); @@ -47,7 +45,7 @@ public void Normalize_Grandfathered_Pass(string tag, string parsed) )] public void Normalize_Case_Pass(string tag, string parsed) { - LanguageTag languageTag = new LanguageTagParser().Normalize(tag); + LanguageTag? languageTag = new LanguageTagParser().Normalize(tag); _ = languageTag.Should().NotBeNull(); _ = languageTag.Validate().Should().BeTrue(); _ = languageTag.ToString().Should().Be(parsed); @@ -62,12 +60,12 @@ public void Normalize_Case_Pass(string tag, string parsed) )] public void Normalize_Object(string tag, string parsed) { - LanguageTag languageTag = new LanguageTagParser().Parse(tag); + LanguageTag? languageTag = new LanguageTagParser().Parse(tag); _ = languageTag.Should().NotBeNull(); _ = languageTag.Validate().Should().BeTrue(); _ = languageTag.ToString().Should().NotBe(parsed); - LanguageTag normalizeTag = new LanguageTagParser().Normalize(languageTag); + LanguageTag? normalizeTag = new LanguageTagParser().Normalize(languageTag); _ = normalizeTag.Should().NotBeNull(); _ = normalizeTag.Should().NotBe(languageTag); _ = normalizeTag.Validate().Should().BeTrue(); @@ -81,7 +79,7 @@ public void Normalize_Object(string tag, string parsed) )] public void Normalize_Sort_Pass(string tag, string parsed) { - LanguageTag languageTag = new LanguageTagParser().Normalize(tag); + LanguageTag? languageTag = new LanguageTagParser().Normalize(tag); _ = languageTag.Should().NotBeNull(); _ = languageTag.Validate().Should().BeTrue(); _ = languageTag.ToString().Should().Be(parsed); @@ -109,7 +107,8 @@ public void Normalize_Sort_Pass(string tag, string parsed) [InlineData("in", "id")] // Type = Language, SubTag = in, PreferredValue = id public void Normalize_Language(string tag, string normalized) { - LanguageTag languageTag = new LanguageTagParser().Normalize(tag); + LanguageTag? languageTag = new LanguageTagParser().Normalize(tag); + _ = languageTag.Should().NotBeNull(); _ = languageTag.Validate().Should().BeTrue(); _ = languageTag.ToString().Should().Be(normalized); } @@ -119,7 +118,8 @@ public void Normalize_Language(string tag, string normalized) [InlineData("zh-yue", "yue")] // Extended language, SubTag = yue, Prefix = zh, PreferredValue = yue public void Normalize_Extended_Language(string tag, string normalized) { - LanguageTag languageTag = new LanguageTagParser().Normalize(tag); + LanguageTag? languageTag = new LanguageTagParser().Normalize(tag); + _ = languageTag.Should().NotBeNull(); _ = languageTag.Validate().Should().BeTrue(); _ = languageTag.ToString().Should().Be(normalized); } @@ -132,7 +132,8 @@ public void Normalize_Extended_Language(string tag, string normalized) [InlineData("iu-latn", "iu-Latn")] // Type = Redundant, Tag = iu-Latn, PreferredValue = ? public void Normalize_Redundant(string tag, string normalized) { - LanguageTag languageTag = new LanguageTagParser().Normalize(tag); + LanguageTag? languageTag = new LanguageTagParser().Normalize(tag); + _ = languageTag.Should().NotBeNull(); _ = languageTag.Validate().Should().BeTrue(); _ = languageTag.ToString().Should().Be(normalized); } @@ -142,7 +143,8 @@ public void Normalize_Redundant(string tag, string normalized) [InlineData("en-latn", "en")] // Type = Language, SubTag = en, SuppressScript = Latn public void Normalize_Suppress_Script(string tag, string normalized) { - LanguageTag languageTag = new LanguageTagParser().Normalize(tag); + LanguageTag? languageTag = new LanguageTagParser().Normalize(tag); + _ = languageTag.Should().NotBeNull(); _ = languageTag.Validate().Should().BeTrue(); _ = languageTag.ToString().Should().Be(normalized); } diff --git a/LanguageTagsTests/LanguageTagTests.cs b/LanguageTagsTests/LanguageTagTests.cs index cfa6c0a..0a578fd 100644 --- a/LanguageTagsTests/LanguageTagTests.cs +++ b/LanguageTagsTests/LanguageTagTests.cs @@ -1,8 +1,535 @@ +using System.Collections.Immutable; +using AwesomeAssertions; using Xunit; namespace ptr727.LanguageTags.Tests; -public class LanguageTagTests(Fixture fixture) : IClassFixture +public class LanguageTagTests { - private readonly Fixture _fixture = fixture; + [Theory] + [InlineData("en-US")] + [InlineData("zh-Hans-CN")] + [InlineData("en-latn-gb-boont-r-extended-sequence-x-private")] + [InlineData("x-all-private")] + public void Parse_Static_Pass(string tag) + { + LanguageTag? languageTag = LanguageTag.Parse(tag); + _ = languageTag.Should().NotBeNull(); + _ = languageTag!.Validate().Should().BeTrue(); + _ = languageTag.ToString().Should().Be(tag); + } + + [Theory] + [InlineData("")] // Empty string + [InlineData("i")] // Too short + [InlineData("abcdefghi")] // Too long + [InlineData("en--gb")] // Empty tag + [InlineData("en-€-extension")] // Non-ASCII + [InlineData("a-extension")] // Only start with x or grandfathered + [InlineData("en-gb-x")] // Private must have parts + public void Parse_Static_ReturnsNull(string tag) + { + LanguageTag? languageTag = LanguageTag.Parse(tag); + _ = languageTag.Should().BeNull(); + } + + [Theory] + [InlineData("en-US")] + [InlineData("zh-Hans-CN")] + [InlineData("en-latn-gb-boont-r-extended-sequence-x-private")] + public void TryParse_Success(string tag) + { + bool result = LanguageTag.TryParse(tag, out LanguageTag? languageTag); + _ = result.Should().BeTrue(); + _ = languageTag.Should().NotBeNull(); + _ = languageTag!.Validate().Should().BeTrue(); + _ = languageTag.ToString().Should().Be(tag); + } + + [Theory] + [InlineData("")] // Empty string + [InlineData("i")] // Too short + [InlineData("abcdefghi")] // Too long + [InlineData("en--gb")] // Empty tag + [InlineData("en-€-extension")] // Non-ASCII + [InlineData("a-extension")] // Only start with x or grandfathered + [InlineData("en-gb-x")] // Private must have parts + [InlineData("x")] // Private missing + public void TryParse_Failure(string tag) + { + bool result = LanguageTag.TryParse(tag, out LanguageTag? languageTag); + _ = result.Should().BeFalse(); + _ = languageTag.Should().BeNull(); + } + + [Fact] + public void CreateBuilder_Pass() + { + LanguageTagBuilder builder = LanguageTag.CreateBuilder(); + _ = builder.Should().NotBeNull(); + + LanguageTag languageTag = builder.Language("en").Region("US").Build(); + + _ = languageTag.Should().NotBeNull(); + _ = languageTag.Validate().Should().BeTrue(); + _ = languageTag.ToString().Should().Be("en-US"); + } + + [Theory] + [InlineData( + "en-latn-gb-boont-r-extended-sequence-x-private", + "en-GB-boont-r-extended-sequence-x-private" + )] + [InlineData("ar-arb-latn-de-nedis-foobar", "arb-Latn-DE-foobar-nedis")] + public void Normalize_Instance_Pass(string tag, string normalized) + { + LanguageTag? languageTag = LanguageTag.Parse(tag); + _ = languageTag.Should().NotBeNull(); + + LanguageTag? normalizedTag = languageTag!.Normalize(); + _ = normalizedTag.Should().NotBeNull(); + _ = normalizedTag!.Validate().Should().BeTrue(); + _ = normalizedTag.ToString().Should().Be(normalized); + } + + [Fact] + public void CreateBuilder_Fluent_Pass() + { + LanguageTag languageTag = LanguageTag + .CreateBuilder() + .Language("en") + .Script("latn") + .Region("gb") + .VariantAdd("boont") + .ExtensionAdd('r', ["extended", "sequence"]) + .PrivateUseAdd("private") + .Build(); + + _ = languageTag.Should().NotBeNull(); + _ = languageTag.Validate().Should().BeTrue(); + _ = languageTag.ToString().Should().Be("en-latn-gb-boont-r-extended-sequence-x-private"); + } + + [Fact] + public void Parse_Normalize_Roundtrip() + { + string original = "en-latn-gb-boont"; + + LanguageTag? parsed = LanguageTag.Parse(original); + _ = parsed.Should().NotBeNull(); + + LanguageTag? normalized = parsed!.Normalize(); + _ = normalized.Should().NotBeNull(); + _ = normalized.ToString().Should().Be("en-GB-boont"); + + bool success = LanguageTag.TryParse(normalized.ToString(), out LanguageTag? reparsed); + _ = success.Should().BeTrue(); + _ = reparsed!.ToString().Should().Be(normalized.ToString()); + } + + [Theory] + [InlineData("en-US", "en-US")] + [InlineData("invalid-tag", "und")] + [InlineData("", "und")] + public void ParseOrDefault_WithNoDefaultTag_ReturnsExpected(string tag, string expected) + { + LanguageTag result = LanguageTag.ParseOrDefault(tag); + _ = result.Should().NotBeNull(); + _ = result.ToString().Should().Be(expected); + } + + [Fact] + public void ParseOrDefault_WithCustomDefaultTag_ReturnsCustomDefault() + { + LanguageTag? customDefault = LanguageTag.Parse("en-US"); + LanguageTag result = LanguageTag.ParseOrDefault("invalid-tag", customDefault); + _ = result.Should().NotBeNull(); + _ = result.ToString().Should().Be("en-US"); + } + + [Theory] + [InlineData("en-latn-us", "en-US")] + [InlineData("zh-cmn-Hans-CN", "cmn-Hans-CN")] + public void ParseAndNormalize_ValidTag_ReturnsNormalized(string tag, string expected) + { + LanguageTag? result = LanguageTag.ParseAndNormalize(tag); + _ = result.Should().NotBeNull(); + _ = result!.ToString().Should().Be(expected); + } + + [Fact] + public void ParseAndNormalize_InvalidTag_ReturnsNull() + { + LanguageTag? result = LanguageTag.ParseAndNormalize("invalid-tag"); + _ = result.Should().BeNull(); + } + + [Fact] + public void IsValid_Property_ValidTag_ReturnsTrue() + { + LanguageTag? tag = LanguageTag.Parse("en-US"); + _ = tag.Should().NotBeNull(); + _ = tag!.IsValid.Should().BeTrue(); + } + + [Theory] + [InlineData("en")] + [InlineData("zh")] + [InlineData("cmn")] + public void FromLanguage_CreatesSimpleTag(string language) + { + LanguageTag tag = LanguageTag.FromLanguage(language); + _ = tag.Should().NotBeNull(); + _ = tag.Language.Should().Be(language); + _ = tag.ToString().Should().Be(language); + _ = tag.IsValid.Should().BeTrue(); + } + + [Theory] + [InlineData("en", "US", "en-US")] + [InlineData("zh", "CN", "zh-CN")] + [InlineData("fr", "FR", "fr-FR")] + public void FromLanguageRegion_CreatesLanguageRegionTag( + string language, + string region, + string expected + ) + { + LanguageTag tag = LanguageTag.FromLanguageRegion(language, region); + _ = tag.Should().NotBeNull(); + _ = tag.Language.Should().Be(language); + _ = tag.Region.Should().Be(region); + _ = tag.ToString().Should().Be(expected); + _ = tag.IsValid.Should().BeTrue(); + } + + [Theory] + [InlineData("zh", "Hans", "CN", "zh-Hans-CN")] + [InlineData("zh", "Hant", "TW", "zh-Hant-TW")] + [InlineData("en", "Latn", "GB", "en-Latn-GB")] + public void FromLanguageScriptRegion_CreatesFullTag( + string language, + string script, + string region, + string expected + ) + { + LanguageTag tag = LanguageTag.FromLanguageScriptRegion(language, script, region); + _ = tag.Should().NotBeNull(); + _ = tag.Language.Should().Be(language); + _ = tag.Script.Should().Be(script); + _ = tag.Region.Should().Be(region); + _ = tag.ToString().Should().Be(expected); + _ = tag.IsValid.Should().BeTrue(); + } + + [Fact] + public void Equals_SameTags_ReturnsTrue() + { + LanguageTag? tag1 = LanguageTag.Parse("en-US"); + LanguageTag? tag2 = LanguageTag.Parse("en-us"); // Case insensitive + + _ = tag1.Should().NotBeNull(); + _ = tag2.Should().NotBeNull(); + _ = tag1!.Equals(tag2).Should().BeTrue(); + _ = tag1.Equals((object?)tag2).Should().BeTrue(); + } + + [Fact] + public void Equals_DifferentTags_ReturnsFalse() + { + LanguageTag? tag1 = LanguageTag.Parse("en-US"); + LanguageTag? tag2 = LanguageTag.Parse("en-GB"); + + _ = tag1.Should().NotBeNull(); + _ = tag2.Should().NotBeNull(); + _ = tag1!.Equals(tag2).Should().BeFalse(); + } + + [Fact] + public void Equals_NullTag_ReturnsFalse() + { + LanguageTag tag = LanguageTag.Parse("en-US")!; + _ = tag.Equals(null).Should().BeFalse(); +#pragma warning disable CS8602 + _ = tag.Equals((object?)null).Should().BeFalse(); +#pragma warning restore CS8602 + } + + [Fact] + public void GetHashCode_SameTags_ReturnsSameHashCode() + { + LanguageTag tag1 = LanguageTag.Parse("en-US")!; + LanguageTag tag2 = LanguageTag.Parse("en-us")!; + + _ = tag1.GetHashCode().Should().Be(tag2.GetHashCode()); + } + + [Fact] + public void OperatorEquals_SameTags_ReturnsTrue() + { + LanguageTag tag1 = LanguageTag.Parse("en-US")!; + LanguageTag tag2 = LanguageTag.Parse("en-us")!; + + _ = (tag1 == tag2).Should().BeTrue(); + } + + [Fact] + public void OperatorEquals_DifferentTags_ReturnsFalse() + { + LanguageTag tag1 = LanguageTag.Parse("en-US")!; + LanguageTag tag2 = LanguageTag.Parse("en-GB")!; + + _ = (tag1 == tag2).Should().BeFalse(); + } + + [Fact] + public void OperatorEquals_BothNull_ReturnsTrue() + { + LanguageTag? tag1 = null; + LanguageTag? tag2 = null; + +#pragma warning disable CA1508 // Avoid dead conditional code + _ = (tag1 == tag2).Should().BeTrue(); +#pragma warning restore CA1508 + } + + [Fact] + public void OperatorEquals_OneNull_ReturnsFalse() + { + LanguageTag? tag1 = LanguageTag.Parse("en-US"); + LanguageTag? tag2 = null; + + _ = (tag1 == tag2).Should().BeFalse(); + _ = (tag2 == tag1).Should().BeFalse(); + } + + [Fact] + public void OperatorNotEquals_SameTags_ReturnsFalse() + { + LanguageTag? tag1 = LanguageTag.Parse("en-US"); + LanguageTag? tag2 = LanguageTag.Parse("en-us"); + + _ = (tag1 != tag2).Should().BeFalse(); + } + + [Fact] + public void OperatorNotEquals_DifferentTags_ReturnsTrue() + { + LanguageTag? tag1 = LanguageTag.Parse("en-US"); + LanguageTag? tag2 = LanguageTag.Parse("en-GB"); + + _ = (tag1 != tag2).Should().BeTrue(); + } + + [Fact] + public void Variants_Property_ReturnsImmutableArray() + { + LanguageTag tag = LanguageTag + .CreateBuilder() + .Language("en") + .VariantAdd("variant1") + .VariantAdd("variant2") + .Build(); + + ImmutableArray variants = tag.Variants; + _ = variants.Length.Should().Be(2); + _ = variants[0].Should().Be("variant1"); + _ = variants[1].Should().Be("variant2"); + } + + [Fact] + public void Extensions_Property_ReturnsImmutableArray() + { + LanguageTag tag = LanguageTag + .CreateBuilder() + .Language("en") + .ExtensionAdd('u', ["ca", "buddhist"]) + .ExtensionAdd('r', ["extended"]) + .Build(); + + ImmutableArray extensions = tag.Extensions; + _ = extensions.Length.Should().Be(2); + _ = extensions[0].Prefix.Should().Be('u'); + _ = extensions[1].Prefix.Should().Be('r'); + } + + [Fact] + public void PrivateUse_Property_ReturnsPrivateUseTag() + { + LanguageTag tag = LanguageTag + .CreateBuilder() + .Language("en") + .PrivateUseAdd("private1") + .PrivateUseAdd("private2") + .Build(); + + _ = tag.PrivateUse.Should().NotBeNull(); + _ = tag.PrivateUse.Tags.Length.Should().Be(2); + _ = tag.PrivateUse.Tags[0].Should().Be("private1"); + _ = tag.PrivateUse.Tags[1].Should().Be("private2"); + } + + [Fact] + public void ExtensionTag_ToString_FormatsCorrectly() + { + LanguageTag tag = LanguageTag + .CreateBuilder() + .Language("en") + .ExtensionAdd('u', ["ca", "buddhist"]) + .Build(); + + ExtensionTag extension = tag.Extensions[0]; + _ = extension.ToString().Should().Be("u-ca-buddhist"); + } + + [Fact] + public void PrivateUseTag_ToString_FormatsCorrectly() + { + LanguageTag tag = LanguageTag + .CreateBuilder() + .Language("en") + .PrivateUseAdd("private1") + .PrivateUseAdd("private2") + .Build(); + + _ = tag.PrivateUse.ToString().Should().Be("x-private1-private2"); + } + + [Fact] + public void PrivateUseTag_Prefix_IsX() => _ = PrivateUseTag.Prefix.Should().Be('x'); + + // Additional edge case tests for comprehensive coverage + + [Fact] + public void Parse_NullInput_ReturnsNull() + { + LanguageTag? result = LanguageTag.Parse(null!); + _ = result.Should().BeNull(); + } + + [Theory] + [InlineData("en")] + [InlineData("en-US")] + [InlineData("zh-Hans-CN")] + public void LanguageTag_PropertiesAreReadable(string tag) + { + LanguageTag? languageTag = LanguageTag.Parse(tag); + _ = languageTag.Should().NotBeNull(); + + // Verify all properties are accessible + _ = languageTag!.Language.Should().NotBeNull(); + _ = languageTag.ExtendedLanguage.Should().NotBeNull(); + _ = languageTag.Script.Should().NotBeNull(); + _ = languageTag.Region.Should().NotBeNull(); + _ = languageTag.Variants.Should().NotBeNull(); + _ = languageTag.Extensions.Should().NotBeNull(); + _ = languageTag.PrivateUse.Should().NotBeNull(); + } + + [Fact] + public void ExtensionTag_Tags_ReturnsImmutableArray() + { + LanguageTag tag = LanguageTag + .CreateBuilder() + .Language("en") + .ExtensionAdd('u', ["ca", "buddhist", "nu", "thai"]) + .Build(); + + ExtensionTag extension = tag.Extensions[0]; + _ = extension.Tags.Length.Should().Be(4); + _ = extension.Tags[0].Should().Be("ca"); + _ = extension.Tags[1].Should().Be("buddhist"); + _ = extension.Tags[2].Should().Be("nu"); + _ = extension.Tags[3].Should().Be("thai"); + } + + [Fact] + public void Equals_SameInstance_ReturnsTrue() + { + LanguageTag tag = LanguageTag.Parse("en-US")!; + _ = tag.Equals(tag).Should().BeTrue(); + } + + [Theory] + [InlineData("en-US", "en-us")] + [InlineData("zh-Hans-CN", "zh-hans-cn")] + [InlineData("en-GB-boont", "EN-gb-BOONT")] + public void Equals_CaseInsensitive_ReturnsTrue(string tag1Str, string tag2Str) + { + LanguageTag tag1 = LanguageTag.Parse(tag1Str)!; + LanguageTag tag2 = LanguageTag.Parse(tag2Str)!; + + _ = tag1.Equals(tag2).Should().BeTrue(); + _ = (tag1 == tag2).Should().BeTrue(); + _ = tag1.GetHashCode().Should().Be(tag2.GetHashCode()); + } + + [Fact] + public void ParseOrDefault_NullTag_ReturnsUndetermined() + { + LanguageTag result = LanguageTag.ParseOrDefault(null!); + _ = result.ToString().Should().Be("und"); + } + + [Fact] + public void ParseAndNormalize_NullTag_ReturnsNull() + { + LanguageTag? result = LanguageTag.ParseAndNormalize(null!); + _ = result.Should().BeNull(); + } + + [Fact] + public void TryParse_NullTag_ReturnsFalse() + { + bool result = LanguageTag.TryParse(null!, out LanguageTag? languageTag); + _ = result.Should().BeFalse(); + _ = languageTag.Should().BeNull(); + } + + [Theory] + [InlineData("en", 0)] + [InlineData("en-US", 0)] + [InlineData("zh-Hans", 0)] + public void LanguageTag_EmptyCollections_HaveZeroLength(string tag, int emptyCount) + { + LanguageTag languageTag = LanguageTag.Parse(tag)!; + + if ( + string.IsNullOrEmpty(languageTag.Script) + && string.IsNullOrEmpty(languageTag.ExtendedLanguage) + ) + { + _ = languageTag.Variants.Length.Should().Be(emptyCount); + _ = languageTag.Extensions.Length.Should().Be(emptyCount); + } + } + + [Fact] + public void FromLanguage_EmptyString_CreatesTag() + { + LanguageTag tag = LanguageTag.FromLanguage(string.Empty); + _ = tag.Should().NotBeNull(); + // Note: This creates an invalid tag, but the factory method doesn't validate + } + + [Fact] + public void Validate_ComplexValidTag_ReturnsTrue() + { + LanguageTag tag = LanguageTag + .CreateBuilder() + .Language("en") + .ExtendedLanguage("esl") + .Script("Latn") + .Region("US") + .VariantAdd("variant1") + .VariantAdd("variant2") + .ExtensionAdd('u', ["ca", "buddhist"]) + .ExtensionAdd('t', ["en", "us"]) + .PrivateUseAdd("private1") + .Build(); + + _ = tag.IsValid.Should().BeTrue(); + _ = tag.Validate().Should().BeTrue(); + } } diff --git a/LanguageTagsTests/LanguageTagsTests.csproj b/LanguageTagsTests/LanguageTagsTests.csproj index 46457c8..8e14fb6 100644 --- a/LanguageTagsTests/LanguageTagsTests.csproj +++ b/LanguageTagsTests/LanguageTagsTests.csproj @@ -1,9 +1,11 @@ + latest-all LanguageTagsTests 1.0.0.0 Pieter Viljoen Pieter Viljoen + true Pieter Viljoen LanguageTags unit tests true @@ -11,13 +13,14 @@ false true en + enable ptr727.LanguageTags.Tests MIT https://github.com/ptr727/LanguageTags true ptr727.LanguageTags.Tests snupkg - net9.0 + net10.0 1.0.0.0 diff --git a/LanguageTagsTests/Rfc5646Tests.cs b/LanguageTagsTests/Rfc5646Tests.cs index f9ef8f4..839b9c6 100644 --- a/LanguageTagsTests/Rfc5646Tests.cs +++ b/LanguageTagsTests/Rfc5646Tests.cs @@ -4,10 +4,8 @@ namespace ptr727.LanguageTags.Tests; -public class Rfc5646Tests(Fixture fixture) : IClassFixture +public class Rfc5646Tests { - private readonly Fixture _fixture = fixture; - [Fact] public void Create() { @@ -30,7 +28,7 @@ public void LoadData() [Fact] public void LoadJson() { - Rfc5646Data rfc5646 = Rfc5646Data.LoadJson( + Rfc5646Data? rfc5646 = Rfc5646Data.LoadJson( Fixture.GetDataFilePath(Rfc5646Data.DataFileName + ".json") ); _ = rfc5646.Should().NotBeNull(); @@ -60,7 +58,7 @@ public void Find_Pass(string input, bool description, string output) _ = rfc5646.RecordList.Length.Should().BeGreaterThan(0); // Find matching language - Rfc5646Data.Record record = rfc5646.Find(input, description); + Rfc5646Record? record = rfc5646.Find(input, description); _ = record.Should().NotBeNull(); _ = record .Description.Should() @@ -79,7 +77,7 @@ public void Find_Fail(string input) _ = rfc5646.RecordList.Length.Should().BeGreaterThan(0); // Fail to find matching language - Rfc5646Data.Record record = rfc5646.Find(input, false); + Rfc5646Record? record = rfc5646.Find(input, false); _ = record.Should().BeNull(); } } diff --git a/README.md b/README.md index d45e091..a1479f1 100644 --- a/README.md +++ b/README.md @@ -13,6 +13,14 @@ Code and Pipeline is on [GitHub](https://github.com/ptr727/LanguageTags)\ Packages published on [NuGet](https://www.nuget.org/packages/ptr727.LanguageTags/)\ ![NuGet](https://img.shields.io/nuget/v/ptr727.LanguageTags?logo=nuget) +## Version History + +- v1.1: + - .NET 10 and AOT support. + - Refactored public surfaces to minimize internals exposure. +- v1.0: + - Initial standalone release. + ## Introduction This project serves two primary purposes: @@ -106,36 +114,36 @@ This is mostly a convenience function and specific use cases should use specific ```csharp Iso6392Data iso6392 = Iso6392Data.Create(); -Iso6392Data.Record record = iso6392.Find("afr", false) -// record.Part2B = afr -// record.RefName = Afrikaans -record = iso6392.Find("zulu", true) -// record.Part2B = zul -// record.RefName = Zulu +Iso6392Record? record = iso6392.Find("afr", false); +// record.Part2B = "afr" +// record.RefName = "Afrikaans" +record = iso6392.Find("zulu", true); +// record.Part2B = "zul" +// record.RefName = "Zulu" ``` ```csharp Iso6393Data iso6393 = Iso6393Data.LoadData("iso6393"); -Iso6393Data.Record record = iso6393.Find("zh", false) -// record.Id = zho -// record.Part1 = zh -// record.RefName = Chinese -record = iso6392.Find("yue chinese", true) -// record.Id = yue -// record.RefName = Yue Chinese +Iso6393Record? record = iso6393.Find("zh", false); +// record.Id = "zho" +// record.Part1 = "zh" +// record.RefName = "Chinese" +record = iso6393.Find("yue chinese", true); +// record.Id = "yue" +// record.RefName = "Yue Chinese" ``` ```csharp -Rfc5646 rfc5646 = Rfc5646.LoadJson("rfc5646.json"); -Rfc5646.Record record = rfc5646.Find("de", false) -// record.SubTag = de -// record.Description = German -record = iso6392.Find("zh-cmn-Hant", false) -// record.Tag = zh-cmn-Hant -// record.Description = Mandarin Chinese (Traditional) -record = iso6392.Find("Inuktitut in Canadian", true) -// record.Tag = iu-Cans -// record.Description = Inuktitut in Canadian Aboriginal Syllabic script +Rfc5646Data rfc5646 = Rfc5646Data.LoadJson("rfc5646.json"); +Rfc5646Record? record = rfc5646.Find("de", false); +// record.SubTag = "de" +// record.Description[0] = "German" +record = rfc5646.Find("zh-cmn-Hant", false); +// record.Tag = "zh-cmn-Hant" +// record.Description[0] = "Mandarin Chinese (Traditional)" +record = rfc5646.Find("Inuktitut in Canadian", true); +// record.Tag = "iu-Cans" +// record.Description[0] = "Inuktitut in Canadian Aboriginal Syllabic script" ``` ### Tag Conversion @@ -146,15 +154,15 @@ If a match is not found the undetermined `und` tag will be returned. ```csharp LanguageLookup languageLookup = new(); -languageLookup.GetIetfFromIso("afr"); // af -languageLookup.GetIetfFromIso("zho"); // zh +string ietf = languageLookup.GetIetfFromIso("afr"); // "af" +ietf = languageLookup.GetIetfFromIso("zho"); // "zh" ``` ```csharp LanguageLookup languageLookup = new(); -languageLookup.GetIsoFromIetf("af"); // afr -languageLookup.GetIsoFromIetf("zh-cmn-Hant"); // chi -languageLookup.GetIsoFromIetf("cmn-Hant"); // chi +string iso = languageLookup.GetIsoFromIetf("af"); // "afr" +iso = languageLookup.GetIsoFromIetf("zh-cmn-Hant"); // "chi" +iso = languageLookup.GetIsoFromIetf("cmn-Hant"); // "chi" ``` ### Tag Matching @@ -173,11 +181,11 @@ Examples: ```csharp LanguageLookup languageLookup = new(); -languageLookup.IsMatch("en", "en-US"); // true -languageLookup.IsMatch("zh", "zh-cmn-Hant"); // true -languageLookup.IsMatch("sr-Latn", "sr-Latn-RS"); // true -languageLookup.IsMatch("zha", "zh-Hans"); // false -languageLookup.IsMatch("zh-Hant", "zh-Hans"); // false +bool match = languageLookup.IsMatch("en", "en-US"); // true +match = languageLookup.IsMatch("zh", "zh-cmn-Hant"); // true +match = languageLookup.IsMatch("sr-Latn", "sr-Latn-RS"); // true +match = languageLookup.IsMatch("zha", "zh-Hans"); // false +match = languageLookup.IsMatch("zh-Hant", "zh-Hans"); // false ``` ### Tag Builder @@ -190,39 +198,39 @@ Use the `Validate()` method to test for shape correctness. See [Tag Validation]( The `Normalize()` method will build the tag and perform validation and normalization. See [Tag Normalization](#tag-normalization) for details. ```csharp -LanguageTag languageTag = new LanguageTagBuilder() - .PrimaryLanguage("en") +LanguageTag languageTag = LanguageTag.CreateBuilder() + .Language("en") .Script("latn") .Region("gb") - .Variant("boont") - .ExtensionsPrefix('r') - .ExtensionsAdd("extended") - .ExtensionsAdd("sequence") + .VariantAdd("boont") + .ExtensionAdd('r', ["extended", "sequence"]) .PrivateUseAdd("private") .Build(); -languageTag.ToString(); // en-latn-gb-boont-r-extended-sequence-x-private +string tag = languageTag.ToString(); // "en-latn-gb-boont-r-extended-sequence-x-private" ``` ```csharp -LanguageTag languageTag = new LanguageTagBuilder() +LanguageTag languageTag = LanguageTag.CreateBuilder() .PrivateUseAddRange(["private", "use"]) .Build(); -languageTag.ToString(); // x-private-use +string tag = languageTag.ToString(); // "x-private-use" ``` ```csharp -LanguageTag languageTag = new LanguageTagBuilder() +LanguageTag? languageTag = LanguageTag.CreateBuilder() .Language("ar") - .ExtendedLanguage("latn") + .ExtendedLanguage("arb") + .Script("latn") .Region("de") - .Variant("nedis") + .VariantAdd("nedis") + .VariantAdd("foobar") .Normalize(); -languageTag.ToString(); // arb-Latn-DE-nedis +string tag = languageTag?.ToString(); // "arb-Latn-DE-foobar-nedis" ``` ### Tag Parser -The `LanguageTagParser` class `Parse()` method will parse the text form language tag and return a constructed `LanguageTag` class, or `null` in case of parsing failure. +The `LanguageTag` class static `Parse()` method will parse the text form language tag and return a constructed `LanguageTag` object, or `null` in case of parsing failure. Parsing will validate all subtags for correctness in type, length, and position, but not value, and case will not be modified. @@ -232,29 +240,29 @@ E.g. `en-gb-oed` -> `en-GB-oxendict`, `i-klingon` -> `tlh`. The `Normalize()` method will parse the text tag, and perform validation and normalization. See [Tag Normalization](#tag-normalization) for details. ```csharp -LanguageTag languageTag = new LanguageTagParser() - .Parse("en-latn-gb-boont-r-extended-sequence-x-private"); -// languageTag.Language = en -// languageTag.Script = latn -// languageTag.Region = gb -// languageTag.VariantList = [ boont ] -// languageTag.ExtensionList = [ Prefix: r, TagList: [ extended, sequence ] ] -// languageTag.PrivateUse = [ Prefix: x, TagList: [ private ] ] -languageTag.ToString(); // en-latn-gb-boont-r-extended-sequence-x-private +LanguageTag? languageTag = LanguageTag.Parse("en-latn-gb-boont-r-extended-sequence-x-private"); +// languageTag.Language = "en" +// languageTag.Script = "latn" +// languageTag.Region = "gb" +// languageTag.Variants[0] = "boont" +// languageTag.Extensions[0].Prefix = 'r' +// languageTag.Extensions[0].Tags[0] = "extended" +// languageTag.Extensions[0].Tags[1] = "sequence" +// languageTag.PrivateUse.Tags[0] = "private" +string tag = languageTag?.ToString(); // "en-latn-gb-boont-r-extended-sequence-x-private" ``` ```csharp -LanguageTag languageTag = new LanguageTagParser() - .Parse("en-gb-oed"); // Grandfathered -// languageTag.Language = en -// languageTag.Region = gb -// languageTag.VariantList = [ oxendict ] -languageTag.ToString(); // en-gb-oxendict +LanguageTag? languageTag = LanguageTag.Parse("en-gb-oed"); // Grandfathered +// languageTag.Language = "en" +// languageTag.Region = "GB" +// languageTag.Variants[0] = "oxendict" +string tag = languageTag?.ToString(); // "en-GB-oxendict" ``` ### Tag Normalization -The `LanguageTagParser` class `Normalize()` method will convert tags to their canonical form.\ +The `LanguageTag` instance `Normalize()` method will convert tags to their canonical form.\ See [RFC 5646 Section 4.5 for details](https://www.rfc-editor.org/rfc/rfc5646#section-4.5) Normalization includes the following: @@ -277,35 +285,31 @@ Normalization includes the following: - Sort private use subtags by value. ```csharp -languageTag = new LanguageTagBuilder() +LanguageTag? languageTag = LanguageTag.CreateBuilder() .Language("en") .ExtensionAdd('b', ["ccc"]) // Add b before a to force a sort .ExtensionAdd('a', ["bbb", "aaa"]) // Add bbb before aaa to force a sort .PrivateUseAddRange(["ccc", "a"]) // Add ccc before a to force a sort .Normalize(); -languageTag.ToString(); // en-a-aaa-bbb-b-ccc-x-a-ccc - +string tag = languageTag?.ToString(); // "en-a-aaa-bbb-b-ccc-x-a-ccc" ``` ```csharp -LanguageTag languageTag = new LanguageTagParser() - .Normalize("en-latn-gb-boont-r-sequence-extended-x-private"); -languageTag.ToString(); // en-GB-boont-r-extended-sequence-x-private +LanguageTag? languageTag = LanguageTag.ParseAndNormalize("en-latn-gb-boont-r-sequence-extended-x-private"); +string tag = languageTag?.ToString(); // "en-GB-boont-r-extended-sequence-x-private" ``` ```csharp -LanguageTag languageTag = new LanguageTagParser() - .Parse("ar-arb-latn-de-nedis-foobar"); -languageTag.ToString(); // ar-arb-latn-de-nedis-foobar +LanguageTag? languageTag = LanguageTag.Parse("ar-arb-latn-de-nedis-foobar"); +string tag = languageTag?.ToString(); // "ar-arb-latn-de-nedis-foobar" -LanguageTag normalizeTag = new LanguageTagParser() - .Normalize(languageTag); -normalizeTag.ToString(); // arb-Latn-DE-foobar-nedis +LanguageTag? normalizedTag = languageTag?.Normalize(); +string normalizedString = normalizedTag?.ToString(); // "arb-Latn-DE-foobar-nedis" ``` ### Tag Validation -The `LanguageTagParser` and `LanguageTag` class `Validate()` method will verify subtags for correctness.\ +The `LanguageTag` class `Validate()` method will verify subtags for correctness.\ See [RFC 5646 Section 2.1](https://www.rfc-editor.org/rfc/rfc5646#section-2.1) and [RFC 5646 Section 2.2.9](https://www.rfc-editor.org/rfc/rfc5646#section-2.2.9) for details. Refer to [Tag Format](#tag-format) for a summary. Note that `LanguageTag` objects created by `Parse()` or `Normalize()` are already verified for form correctness during parsing, and `Validate()` is primarily of use when using the `LanguageTagBuilder` `Build()` method directly. @@ -316,6 +320,16 @@ Validation includes the following: - No duplicate variants, extension prefixes, extension tags, or private tags. - No missing subtags. +```csharp +LanguageTag languageTag = LanguageTag.CreateBuilder() + .Language("en") + .Region("US") + .Build(); +bool isValid = languageTag.Validate(); // true +// Or use the IsValid property +isValid = languageTag.IsValid; // true +``` + ## Testing The [BCP47 language subtag lookup](https://r12a.github.io/app-subtags/) site offers convenient tag parsing and validation capabilities. diff --git a/version.json b/version.json index c0c465e..268e6f6 100644 --- a/version.json +++ b/version.json @@ -1,6 +1,6 @@ { "$schema": "https://raw.githubusercontent.com/dotnet/Nerdbank.GitVersioning/master/src/NerdBank.GitVersioning/version.schema.json", - "version": "1.0", + "version": "1.1", "publicReleaseRefSpec": [ "^refs/heads/main$" ],